Hi all,
We have just upgraded our application running 1.4.10 to 1.5.4.
Besides the obvious compile problems all seemed to go smoothly under
jetty/tomcat but now we have a problem under websphere 7.0.11 - for clarity
the 1.4.10 version worked good under WAS7
We were running well using the filter and I've switched back to the servlet
to test if that is working but I get the same problem.
The error I am getting is this, after that the application goes into a loop
giving a 500 error
[1/31/12 1:14:27:029 EST] 0000001e webapp W
com.ibm.ws.webcontainer.webapp.WebApp initializeStaticFileHandler
SRVE0278E: Error while adding servlet mapping --> /*.
The web.xml settings are as follows
<servlet>
<servlet-name>WicketServlet</servlet-name>
<servlet-class>org.apache.wicket.protocol.http.WicketServlet</servlet-class>
<init-param>
<param-name>configuration</param-name>
<param-value>development</param-value>
</init-param>
<init-param>
<param-name>applicationBean</param-name>
<param-value>wicketApplication</param-value>
</init-param>
<init-param>
<param-name>applicationFactoryClassName</param-name>
<param-value>org.apache.wicket.spring.SpringWebApplicationFactory</param-value>
</init-param>
<load-on-startup>1</load-on-startup>
</servlet>
<servlet-mapping>
<servlet-name>WicketServlet</servlet-name>
<url-pattern>/*</url-pattern>
</servlet-mapping>
I also still have *com.ibm.ws.webcontainer.invokefilterscompatibility set
to true
*