1234567891011121314151617181920212223242526 |
- <%@ page import="org.springframework.security.core.AuthenticationException" %>
- <%@ page import="org.springframework.security.web.authentication.AbstractAuthenticationProcessingFilter" %>
- <html>
- <head>
- <title>Login to CAS failed!</title>
- </head>
- <body>
- <h2>Login to CAS failed!</h2>
- <font color="red">
- Your CAS credentials were rejected.<br/><br/>
- Reason:
- <%
- Exception error = ((AuthenticationException) session.getAttribute(AbstractAuthenticationProcessingFilter.SPRING_SECURITY_LAST_EXCEPTION_KEY));
- if(error != null) {
- %>
- <%= error.getMessage() %>
- <%
- }
- %>
- </font>
- </body>
- </html>
|