Does the ERRORPAGE directive actually work in the reference implementation
-or- is there some trick I'm missing?

If I (intentionally) don't have a compiled bean, I watch the reference
implementation spew compilation errors to standard out.  Shouldn't I be
redirected to my error page?

[my simple code]

Error.jsp
<HTML>
<HEAD>
<TITLE>
Search Error
</TITLE>
</HEAD>
<BODY>
<p>
An error has occured on your Service Request Search.
</BODY>
</HTML>

Search.jsp
<HTML>
<HEAD>
<TITLE>
Search
</TITLE>
</HEAD>
<BODY>
<%@ ERRORPAGE="Error.jsp" %>
<USEBEAN NAME="srchReq" TYPE="SearchBean" LIFESPAN=page>
<SETFROMREQUEST BEANPROPERTY="*">
</USEBEAN>
<p>
Should't get here....  :(
</BODY>
</HTML>

SearchBean.java
There is no code.


-Fred

===========================================================================
To unsubscribe, send email to [EMAIL PROTECTED] and include in the body
of the message "signoff JSP-INTEREST".  For general help, send email to
[EMAIL PROTECTED] and include in the body of the message "help".

Reply via email to