vote up 0 vote down star

I've got a WAR that i need to deploy with TomCat, but i'm not sure which version of the servlet spec the WAR file uses.

According to apache's site (http://tomcat.apache.org/whichversion.html) i need to download a different version according to which spec the WAR file uses.

Is there any way to tell by unzipping the WAR file and looking at some config file?

flag

1 Answer

vote up 2 vote down check

Try looking at the DTD/Schema of the web.xml file in the WEB-INF dir.
Note, servlet containers are backward compatible, so 2.3 servlet application should run just fine under a 2.4 servlet engine.

link|flag
It says: <!DOCTYPE web-app PUBLIC "-//Sun Microsystems, Inc.//DTD Web Application 2.3//EN" "java.sun.com/dtd/web-app_2_3.dtd">; Does this mean it uses the servlet spec 2.3 and will only work with 3 versions old of tomcat? – Chris Aug 19 at 6:15
I means that it uses the 2.3 spec and will work with tomcat 4.x and above!! – Shimi Bandiel Aug 19 at 6:18
Thanks. And your 'and above' is great news too, i'd much prefer the latest tomcat. – Chris Aug 19 at 6:30

Your Answer

Get an OpenID
or

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