How to handle error 408
Hi,
m facing some problem while handling errors in my application.
I want whenever that 408-session timeout error occured in my application , than my custom message(or say JSP )will be shown to user instead of its own message.
We are using j_security_check for authentication.
I have tried doing so using ...
<error-page>
<error-code>408</error-code>
<location>/examples/408.jsp</location>
</error-page>
in web.xml
This is working for 404-Page not found error but not for 408 error.
If anybody have the solution,plz help.
Thanks.