Well, if anyone is interested or cares I have a re-implementation example that accepts username + multiple "passwords" using the following:
ui.webapp.AuthenticationProcessingFilter...
Type: Posts; User: kellewic; Keyword(s):
Well, if anyone is interested or cares I have a re-implementation example that accepts username + multiple "passwords" using the following:
ui.webapp.AuthenticationProcessingFilter...
So if I have my site set up to automatically redirect to the login form (if there's no valid session) and this is placed before the RememberMe services, it will still work?
This redirection does...
Pretty sure you would have to place RememberMeProcessingFilter before your form authentication filter for this to work. I assume this since you say you want the cookie to override any form...
Well, what I am looking at is making the current implementation more generic so it accepts a principal to authenticate along with a list of tokens to use for authentication. A password could be a...
OK, then it's basically what I figured then. I just wanted to make sure before I went through all that :)
I just don't like the idea of concat'ing the password and PIN together. I thought about...
Hello,
I was wondering if anyone has a "good" solution for form authentication using a username, password and PIN?
I have the form authentication working for accepting just a username and...