I'm pretty ignorant in this area, but Oracle JDeveloper sets up error
redirection using the following jsp code on each .jspx page. Not sure
if this addresses your question.
<jsp:directive.page contentType="text/html;charset=windows-1252"
errorPage="/pages/ErrorHandlingPage.jspx"/>
On 5/3/05, Srikanth Madarapu <[EMAIL PROTECTED]> wrote:
> I have an exception (LostUpdateException), and configured to go to an error
> page in the web.xml. But when this exception is thrown the error page is not
> being displayed, JSF catches the exception and throws a new exception
> (javax.faces.el.EvaluationException), is there something I am missing ? How
> do I configure this.