I'm using the following method in a Spring Controller to allow authentication via Ajax. It works, but it doesn't seem to create a cookie or anything that makes the authentication persistent.

@RequestMapping(method = RequestMethod.POST)
@ResponseBody
public LoginStatus login(@RequestParam("j_username") String username,
                         @RequestParam("j_password") String password) {

    UsernamePasswordAuthenticationToken token = new UsernamePasswordAuthenticationToken(username, password);

    try {
        Authentication auth = authenticationManager.authenticate(token);
        SecurityContextHolder.getContext().setAuthentication(auth);
        return new LoginStatus(auth.isAuthenticated(), auth.getName());
    } catch (BadCredentialsException e) {
        return new LoginStatus(false, null);
    }
}

What do I need to do to make the authentication persistent?

link|improve this question

43% accept rate
Matt - did you ever figure this one out? I'm trying to do the exact same thing now. Going to try this code from the Spring Security forums: forum.springsource.org/… – les2 Jul 19 '11 at 14:35
Yes, see the following comment and post for the solution: raibledesigns.com/rd/entry/… – Matt Raible Oct 6 '11 at 15:56
feedback

1 Answer

Make sure

  • you have SecurityContextPersistenceFilter configured
  • you are not setting create-session attribute of <security:http> tag to none.
link|improve this answer
I tried looking at the logic in SecurityContextPersistenceFilter and replicating it. I added a reference to SecurityContextRepository and tried calling its saveContext() method after authenticating the user. Still no dice. – Matt Raible Feb 23 '11 at 15:38
Wouldn't it be easier to you to configure Spring Security filter chain in a standard manner rather than mimicing it? Btw, note the SecurityContextPersistenceFilter javadoc: This filter MUST be executed BEFORE any authentication processing mechanisms. Authentication processing mechanisms (e.g. BASIC, CAS processing filters etc) expect the SecurityContextHolder to contain a valid SecurityContext by the time they execute. This means the context creating and storage should occur prior to performing authentication. – Boris Kirzner Feb 24 '11 at 7:13
I've successfully used this technique to talk to j_security_check and get it working as good as the LoginService implementation. However, I'm still facing the same issues with getting the HTTPS login to persist to HTTP. I've created a j_security_check branch in the GitHub project to try and get this alternative implementation working. github.com/mraible/ajax-login/tree/j_security_check – Matt Raible Feb 25 '11 at 4:29
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.