autologin « Security « Spring Q&A





1. problem with overriding autologin in spring security?    stackoverflow.com

greetings everybody iam using spring security 3 remember me service as follows

<http>
<remember-me/>
....</http>
and i want to perform some logic in the autologin so i tried to override the AbstractRememberMeServices as follows:
package com.foo;

import javax.servlet.http.HttpServletRequest;
import javax.servlet.http.HttpServletResponse;

import ...

2. Spring security cross browser autologin     stackoverflow.com

I have 2 web applications running under 2 tomcats. Both these applications use the same UserDetailsService for authentication and same database. I am kinda of confused on how would I be ...