Does anyone do serious web development in Ada? Are there libraries or frameworks available for such tasks? I'm particularly interested in those that are free and open source.
Any relevant pointers are appreciated.
|
Does anyone do serious web development in Ada? Are there libraries or frameworks available for such tasks? I'm particularly interested in those that are free and open source. Any relevant pointers are appreciated. |
|||
|
|
|
Try AWS, Only proper solution I could find... http://libre.adacore.com/libre/tools/aws/ BUT - I would still recommend you to learn a language that is more designed to web development Such as: PHP, asp.net, JSP .... |
|||
|
|
|
I've been very pleased with AWS/Templates_Parser, XML/Ada and GNATColl. Those are three solid packages that will enable you do to exciting things with Ada. I'm in the process of moving away from PHP (got a lot of internal tools build in PHP in my business) and so far Ada has proven a very reliable companion. It has come to a point where I truly dislike having to go back to PHP. I really look forward to the day where all my tools are powered by Ada. Just be prepared to do some more legwork than with a "normal" web language. The reward is a much less buggy and a much better performing end-product (compared to PHP). At least that is my experience. Someone already posted a link to AWS. Here are links for GNATColl and XML/Ada: http://libre.adacore.com/libre/tools/gnat-component-collection/ http://libre.adacore.com/libre/tools/xmlada/ |
|||
|
|
AWS is probably what you are looking for, if you want to write Ada programs that include a web server or client in them. It is probably one of the most actively maintained Open Source Ada projects around, so I'm pretty sure there are a lot of folks out there using it too. I've used it myself to provide a web-based configuration and monitoring interface for a Windows-based service. It works very well, and is quite easy to use. If you just want to write cgi scripts, the other folks are right that there are other languages out there designed for that. However, I've done it in Ada before, and it works just great. A lot of scripting languages encourage writing programs that don't scale well as the program expands. Ada programs tend not to have that problem. On the flip side, languages like C and C++ don't do any automatic detection on array bounds and are very pointer-based. This makes cgi written with them an active menace when exposed to the world on the internet. Some scripting languages have that problem too. Often you can't easily see or fix it, because it is hidden in the language runtime itself. Particularly when they themselves were written in C or C++. So I actually encourage the use of Ada for web-server scripting in all but the most trivial of cases. If you are doing scripting in Ada, but miss the more powerful string-handling facilities that scripting languages tend to provide, consider looking at Gnat's Spitbol package. That implements most of the SNOBOL string handling facilies in Ada. If you want to do much more complicated string parsing, another option is OpenToken, which allows you to build your own full-blown lexical analyzers and parsers in Ada. However, if you are looking to develop a slick full-blown complex website, you are probably best off using some kind of Content Management System (eg: Drupal). I don't know of any CMS built on Ada, but most CMS users don't bother to drop into the implementation language much anyway. Ideally you just plug the components together. |
||||
|
|
|
You could have a look at http://blog.vacs.fr/index.php?tag/JSF to see examples of how you can use Ada Server Faces. |
|||
|
|
|
In general, the most serious uses of Ada occur within the Defense Contractor circles, not the web 2.0 crowd. There are much better languages to do web development in, but i found no pre-built libraries or frameworks for web-dev with ada on google and my coworkers gave me a blank look. That said, you could probably build something to compile HTML code and move it to the proper folders in your server in ada if you wanted to use the ada-hammer to solve the problem. Or maybe do some fancy Just-in-time compiling of the HTML to return through apache..painful, but i suppose doable |
|||||||||||||
|
|
If you wanted to web-enable your toaster you could try an embedded web server like EWS. Doesn't even need a filesystem on the server. |
|||||||
|
|
AWS was already introduced to you, now you just need a framework. I can recommend the ada-awa project. Here's a video on how to get started: youtube.com You may also have a look at yolk, "web-toolbox that sits on top of AWS, GNATcoll, Florist and XML/Ada". |
||||
|
|