This is the first time I heard of the <error-page> tag. Is this a struts tag ?
So far I know that struts provide a neat exception handling, I seldom use this but perhaps youcan try it out Frank :
<global-exception>
<exception key="Key" types="exception type" handler="exception handler">
</global-exception>
Cheer's, e-null
Craig McClanahan wrote:
You might want to experiment with the standard exception mapping facilities that web.xml supports, for use whenever an exception ripples all the way up to the servlet container. For example, you can deal with any NPE that gets thrown with an entry like this:
<error-page> <exception-type>java.lang.NullPointerException</exception-type> <location>/error-page.jsp</location> </error-page>
Thanks,Craig
Frank
--------------------------------------------------------------------- To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PROTECTED]