Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

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.

share|improve this question

7 Answers

up vote 6 down vote accepted

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 ....

share|improve this answer

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/

share|improve this answer
I have seen your posts on c.l.ada and find it good to hear of an entrepreneur "putting his money where his mouth is" WRT the "choose better tools" argument. Sadly, I've been unable to get a good build of AWS as of now: MinGW and all that. – Shark8 May 10 '11 at 21:05

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.

share|improve this answer

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.

share|improve this answer

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

share|improve this answer
I suppose that depends on what you mean by "serious". In that directing missles is a more serious affair than directing HTTP requests to LOLcat pictures, I suppose I'd have to agree. However, there are in fact lots of folks doing web development in Ada. If your co-workers never heard of AWS, perhaps they need to get out more? Its a pretty heavily used project. – T.E.D. May 6 '11 at 13:14
1  
Meaning projects with the most money behind them. Big company, big projects, outside of Acadème. Massive code-bases. Actual delivered products. Life/Flight/Space-critical software. Would you argue that the heaviest users are DOD/Defense Related (considering the DOD required Ada for a long time, and it's only been a few years since they have started trying to prevent it in defense circles.)? Use the right tool for the right job would be my recommendation. – Caladain May 6 '11 at 13:20
...nothing like Apache of course. – T.E.D. May 6 '11 at 13:20
Gonna have to be more specific. Apache the webserver is a C project. Apache the foundation does a lot of Computational research in a lot of different languages, so perhaps you could name the source of the above comment (project name)? – Caladain May 6 '11 at 13:22
@Caladain - That was the case way back in the mandate days. Now, I'm not so sure. I'll agree with you that Ada's best niche has definitely been in markets where it is very, very important that the software be robust and reliable (eg: Tens of millions of dollars and/or lives at stake). However, I'd argue Sony's recent experience shows that there are many web-based applications where that applies today. – T.E.D. May 6 '11 at 13:24
show 6 more comments

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.

share|improve this answer
1  
-1: I don't see how this answers the question – John Saunders May 9 '11 at 19:26
@John, I think the toaster was a joke. EWS is written in Ada, so it is very well related to the question. – oenone May 10 '11 at 9:58

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".

share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.