I don't want to redirect the page. I want to forward.
-----Original Message-----
From: Mike Kienenberger [mailto:[EMAIL PROTECTED]
Sent: Tuesday, May 03, 2005 11:50 AM
To: MyFaces Discussion
Subject: Re: <error-page>
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.