Hi,
I'm trying to set an error page in one of my web applications. To do this i
have put this tag in the web.xml file:
<error-page>
        <error-code>500</error-code>
        <location>/error.html</location>
    </error-page>
to catch all the 500 errors and redirect the user to an error page. It works
when i put a plain html page but it doesn't when i put a jsp.
is it possible to get a jsp instead of an html file?
thanks.


Reply via email to