I’m deploying a .war in Webshepere AS 6.1 with this in web.xml:
xsi:schemaLocation="http://java.sun.com/xml/ns/javaee http://java.sun.com/xml/ns/javaee/web-app_2_5.xsd"
But it errors with
This site is experiencing technical difficulty. We are aware of the issue and are working as quick as possible to correct the issue.
How can I avoid this? How can I disable validation against an external XSD in Websphere AS?
WebSphere AS 6.1 is a J2EE 1.4 platform; that means Servlet 2.4. The server does not support the application version being installed.
The correct declaration would be something like:
You need WebSphere AS 7 for Java EE 5 and Servlet 2.5 support.