Hi, 

Finally I came over my problems. Now my 6.20.0 works fine together with
Spring 4.1.5 and Spring Security 4.0.2. 
My login page is mounted under /login. So the key was to define login-page
and more important the login-process-url.

Hope this might help to others who struggling with upgrade to Spring
Security 4.

 <sec:http create-session="never" auto-config="true"
use-expressions="false">
        <sec:remember-me user-service-ref="CustomUserDetailsService"/>
        <sec:intercept-url pattern="/**"  />        
        <sec:form-login login-page="/login"  
                        login-processing-url="/"/>
                                
        <sec:csrf disabled="true"/>
</sec:http>

--
View this message in context: 
http://apache-wicket.1842946.n4.nabble.com/Wicket-Spring-4-integration-tp4672031p4672048.html
Sent from the Users forum mailing list archive at Nabble.com.

---------------------------------------------------------------------
To unsubscribe, e-mail: users-unsubscr...@wicket.apache.org
For additional commands, e-mail: users-h...@wicket.apache.org

Reply via email to