views:

49

answers:

1

Contrary to the documentation, is it possible to use the servlet 3 spec with tomcat 6?

+2  A: 

Is it possible to use the servlet 3 spec with tomcat 6?

I doubt this is a practical option. You'd need to backport the Tomcat 7 servlet v3 stack to Tomcat 6. In the process, there is a good chance you'd run into various Tomcat internal infrastructure issues that require significant work to address.

IMO, if you want to experiment with web applications that depend on the Servlet V3 specs on Tomcat your best bet is to try a Tomcat 7 beta. Alternatively, Glassfish v3 is now in production release and this implements the Servlet version 3.0 specification.

Stephen C
That page is outdated. Servlet 3.0 and Java EE 6 are already final since 10 december 2009 and Glassfish 3 is already production ready for that long. http://glassfish.dev.java.net.
BalusC
@BalusC - updated; thanks.
Stephen C