I have a simple Spring security example using MySQL as the credential store. The application is working correctly in terms of authentication and authorization. I am running on the VmWare vFabric tc server inside Eclipse. When a user tries to access a page for which he does not have authorization I would like to direct him to a custom
jsp, authfail.jsp. I tried to do this via the <error-page> tag in my web.xml file. When I try to access a page without proper authorization I get what appears to be a default error page titled "HTTP 403 Forbidden". This page has an i in a circle with the message: "The website declined to show this webpage", with some options that follow. I do not get my custom authfail.jsp page. However, if I run up the VmWare vFabric server from inside Eclipse, then access the URL from a web browser, I do get my custom page. Is there a way to get this page when accessing URLs from inside Eclipse? Thanks in advance
My web.xml is