Hi all,
I have the following lines in my web.xml:
<error-page>
<error-code>500</error-code><location>/html/defaultError.htm</location>
</error-page>
<error-page>
<error-code>404</error-code><location>/html/defaultError.htm</location>
</error-page>The 404 errors get correctly redirected to the specified page but not the 5xx errors. Is there some other way to do it? Thank's Amine
