java - web.xml invalidates my session -


i'm trying error-code handling page in web.xml. if placed code in webxml:

<error-page>     <error-code>404</error-code>     <location>/errorpage.html</location>  </error-page> 

my session invalidated after logging in. on error 404 codes since tried 403, didn't invalidate session.

can tell me what's wrong webxml or server?


Comments

Popular posts from this blog

html - Difficulties with background-image property -

visual studio code - What does the isShellCommand property actually do and how should you use it? -

ios - Segue not passing data between ViewControllers -