Hi!
My application's web.xml contains the following:
 <error-page>
 <error-code>403</error-code>
 <location>/not_authorized.jsp</location>
 </error-page>
I use form based auth and if I try to login with a user which has not enough rights to access the secured area, the standard error page ist displayed instead of my not_authorized.jsp. 
What am I doing wrong? 
Thanks!