The web.xml has an element where you can specify which page to display on specific errors.
Look at the web.xml dtd
http://java.sun.com/dtd/web-app_2_3.dtd for details. Here's an
example (which i haven't tested):
<error-page>
| <error-code>403</error-code>
| <location>MyCustomPage.jsp</location>
| </error-page>
|
View the original post :
http://www.jboss.com/index.html?module=bb&op=viewtopic&p=4187965#...
Reply to the post :
http://www.jboss.com/index.html?module=bb&op=posting&mode=reply&a...