|  | @@ -1,5 +1,5 @@
 | 
	
		
			
				|  |  |  <%@ taglib prefix='c' uri='http://java.sun.com/jstl/core' %>
 | 
	
		
			
				|  |  | -<%@ page import="org.springframework.security.ui.AbstractProcessingFilter" %>
 | 
	
		
			
				|  |  | +<%@ page import="org.springframework.security.web.authentication.AbstractAuthenticationProcessingFilter" %>
 | 
	
		
			
				|  |  |  <%@ page import="org.springframework.security.core.AuthenticationException" %>
 | 
	
		
			
				|  |  |  
 | 
	
		
			
				|  |  |  <html>
 | 
	
	
		
			
				|  | @@ -10,24 +10,24 @@
 | 
	
		
			
				|  |  |    <body>
 | 
	
		
			
				|  |  |      <h1>Switch to User</h1>
 | 
	
		
			
				|  |  |  
 | 
	
		
			
				|  |  | -	<P>Valid users:
 | 
	
		
			
				|  |  | -	<P>
 | 
	
		
			
				|  |  | -	<P>username <b>rod</b>, password <b>koala</b>
 | 
	
		
			
				|  |  | -	<P>username <b>dianne</b>, password <b>emu</b>
 | 
	
		
			
				|  |  | -	<p>username <b>scott</b>, password <b>wombat</b>
 | 
	
		
			
				|  |  | -	<p>username <b>bill</b>, password <b>wombat</b>
 | 
	
		
			
				|  |  | -	<p>username <b>bob</b>, password <b>wombat</b>
 | 
	
		
			
				|  |  | -	<p>username <b>jane</b>, password <b>wombat</b>
 | 
	
		
			
				|  |  | -	<p>
 | 
	
		
			
				|  |  | +	<h3>Valid users:</h3>
 | 
	
		
			
				|  |  |  
 | 
	
		
			
				|  |  | +	<p>username <b>rod</b>, password <b>koala</b></p>
 | 
	
		
			
				|  |  | +	<p>username <b>dianne</b>, password <b>emu</b></p>
 | 
	
		
			
				|  |  | +	<p>username <b>scott</b>, password <b>wombat</b></p>
 | 
	
		
			
				|  |  | +	<p>username <b>bill</b>, password <b>wombat</b></p>
 | 
	
		
			
				|  |  | +	<p>username <b>bob</b>, password <b>wombat</b></p>
 | 
	
		
			
				|  |  | +	<p>username <b>jane</b>, password <b>wombat</b></p>
 | 
	
		
			
				|  |  |      <%-- this form-login-page form is also used as the
 | 
	
		
			
				|  |  |           form-error-page to ask for a login again.
 | 
	
		
			
				|  |  |           --%>
 | 
	
		
			
				|  |  |      <c:if test="${not empty param.login_error}">
 | 
	
		
			
				|  |  | +    <p>
 | 
	
		
			
				|  |  |        <font color="red">
 | 
	
		
			
				|  |  | -        Your 'su' attempt was not successful, try again.<BR><BR>
 | 
	
		
			
				|  |  | -        Reason: <%= ((AuthenticationException) session.getAttribute(AbstractProcessingFilter.SPRING_SECURITY_LAST_EXCEPTION_KEY)).getMessage() %>
 | 
	
		
			
				|  |  | +        Your 'su' attempt was not successful, try again.<br/><br/>
 | 
	
		
			
				|  |  | +        Reason: <%= ((AuthenticationException) session.getAttribute(AbstractAuthenticationProcessingFilter.SPRING_SECURITY_LAST_EXCEPTION_KEY)).getMessage() %>
 | 
	
		
			
				|  |  |        </font>
 | 
	
		
			
				|  |  | +          </p>
 | 
	
		
			
				|  |  |      </c:if>
 | 
	
		
			
				|  |  |  
 | 
	
		
			
				|  |  |      <form action="<c:url value='j_spring_security_switch_user'/>" method="POST">
 |