1
vote
1answer
284 views

How to “automatically login” user after remember me cookie is checked?

I need to implement "Remember me" functionallity on my JSF site, i´ve been researching about this topic trying to find what the best practices are. Ive found many answers, but i still have a question ...
1
vote
2answers
856 views

Spring security: remember-me doesn't work with custom AuthenticationProvider

I am using a custom AuthenticationProvider: public class CustomAuthenticationProviderImpl extends AbstractUserDetailsAuthenticationProvider { @Resource(name="userDetailsService") private ...
1
vote
2answers
908 views

“remember me” functionality with jsf 2.0

I am trying to implement "remember me"/"autologin" functionality. I have stored a cookie at the client but when should I read it? If I try to do that in a filter, for example, I won't have access to ...
1
vote
1answer
846 views

j_security_check vs Programmatic Security

I'm building a Web application using jsf, ejbs and jpa. I currently use form based j_security_check to handle authentication. I need to implement support for cookies ie "Remember me" option. Also I ...