error-page tag not working
Hi
I want to forward my all responses to erros.jsp when 404 error occurs.
The following lines are i have included in my applications web.xml
<error-page>
<error-code>404</error-code>
<location>/errors.jsp</location>
</error-page>
But its not working for me;Always it displaying HTTP 404 error instead of errors.jsp.
Can any one know solution for this type of problem.?
Thanks for your help in advance.

