[java-identity-provider COMMIT] /trunk/idp-war/src/main/webapp/WEB-INF/web.xml

noreply at shibboleth.net noreply at shibboleth.net
Fri Jan 8 19:26:37 EST 2016


Author: scantor
Date: Fri Jan  8 19:26:35 2016
New Revision: 8073

URL: http://svn.shibboleth.net/view/java-identity-provider?rev=8073&view=rev
Log:
IDP-889 - Handle 500 errors inside IDP
    
https://issues.shibboleth.net/jira/browse/IDP-889
    
Even better, it can dispatch on the error inside the ServletException.

Modified:
    trunk/idp-war/src/main/webapp/WEB-INF/web.xml

Modified: trunk/idp-war/src/main/webapp/WEB-INF/web.xml
URL: http://svn.shibboleth.net/view/java-identity-provider/trunk/idp-war/src/main/webapp/WEB-INF/web.xml?rev=8073&r1=8072&r2=8073&view=diff
==============================================================================
--- trunk/idp-war/src/main/webapp/WEB-INF/web.xml	(original)
+++ trunk/idp-war/src/main/webapp/WEB-INF/web.xml	Fri Jan  8 19:26:35 2016
@@ -139,7 +139,7 @@
     
     <!-- Send servlet errors through the IdP's MVC error handling. -->
     <error-page>
-        <exception-type>javax.servlet.ServletException</exception-type>
+        <exception-type>net.shibboleth.idp.authn.ExternalAuthenticationException</exception-type>
         <location>/profile/RaiseError</location>
     </error-page>
 



More information about the commits mailing list