Hi all
 I've added the following to my web.xml (thanks for the help)
  
<error-page>
<error-code>500</error-code>
<location>/error.jsp</location>
</error-page>
<error-page>
<error-code>404</error-code>
<location>/error.jsp</location>
</error-page>
<error-page>
<error-code>java.lang.Exception</error-code>
<location>/error.jsp</location>
</error-page>

and I've added a global forward I invoke from "error.jsp" which points to my 
tiles def as follows

<forward name="error" path="/page.error" />

the problem is when I cause an error (like stopping the database then trying 
to hit it or reloading a page that should cause an error 500), I'm not 
seeing my error page.

am I forgetting something?


-- 
-Dave
[EMAIL PROTECTED]

Reply via email to