Thanks. Setting the authentication object in the SecurityContext helped me resolve the problem.
SecurityContextHolder.getContext().setAuthentication(authentication);
Type: Posts; User: inthezone; Keyword(s):
Thanks. Setting the authentication object in the SecurityContext helped me resolve the problem.
SecurityContextHolder.getContext().setAuthentication(authentication);
Thanks rwinch but I'm already using an internal library for AD. The user is already authenticated by the time he reaches my login page. All I need to do is bypass Spring Security authentication, i.e....
I've been given an application which uses Spring Security and would like to know how I can bypass the login page. I have a Filter which adds a Kerberos key object after successfull AD authentication....