vote up 0 vote down star

I've noticed several websites carrying a '.do' extension in filenames referenced in the URLs. As you navigate the web of Iberia Airlines, for example, the Spanish state-run airline, you see URLs like http://www.iberia.com/OneToOne/v3/obsmenu.do?prgOid=536886780&tabId=0&menuId=28000000000000&menuRP=1&language=en&country=ES&market=ES&IS%5FANONYMOUS=true - I've seen this extension at other websites of very high quality and was wondering what's the software. I wrote CMS in the title but I'm at a loss for what it could be, maybe a framework, maybe something that only runs in an IBM mainframe... don't really know. Looking at the bottom of the pages for any identification yields nothing, no copyright, no company name.

flag
2  
The .do extension is popular among struts community – jpartogi Oct 20 at 21:50
Perhaps you could change the title of the question, so that others who wonder about the same thing can find it? – gnud Oct 21 at 7:25
Totally OT, but Iberia is not state-run since two decades... grupo.iberia.es/portal/site/… – antispam Oct 22 at 9:20

3 Answers

vote up 2 vote down check

This extension is commonly used by server-side Java platforms like IBM WebSphere.

link|flag
Not just Websphere - Anything that uses Servlets. – Thomas Owens Oct 20 at 23:17
vote up 1 vote down

I don't know if this is going to help, but the .do part of obsmenu.do leads me to believe this is a Java based application - you see .do in Java Servlets.

link|flag
Thanks a lot, I could have never found out by myself... extension is too meaningless to throw at google. – Lucia Oct 20 at 22:32
vote up 0 vote down

I guess it was first introduced by Struts controller mapping. It states for "do" something.

In the web.xml file, you configure the framework ActionServlet as the servlet that will handle all requests for a given mapping (usually the extension .do is used). The ActionServlet is the "switchboard" mentioned in the opening paragraph. (Source)

Nowadays it's commonly used outside of Struts, so there's no way to be sure of which technology is behind the scenes.

link|flag

Your Answer

Get an OpenID
or

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