I have a servlet mapping of /* that allows my jsps to be served in Websphere, but in JBoss
with the same mapping it is always force a forward to the servlet.
| WEB.XML...
| <servlet>
| <servlet-name>AAServiceHandlerServlet</servlet-name>
| <display-name>AAServiceHandlerServlet</display-name>
|
<servlet-class>aa.service.servlet.AAServiceHandlerServlet</servlet-class>
| </servlet>
| <servlet-mapping>
| <servlet-name>AAServiceHandlerServlet</servlet-name>
| <url-pattern>/*</url-pattern>
| </servlet-mapping>
I removed the * in JBoss, but I then get an error on deployment.
View the original post :
http://www.jboss.com/index.html?module=bb&op=viewtopic&p=4114800#...
Reply to the post :
http://www.jboss.com/index.html?module=bb&op=posting&mode=reply&a...