I have create a simple Apache Shiro authentication mechanism, however it is not working. The Subject is not using myAuthorizingRealm extension, and is just returning an AuthenticationException. Below is the code...
login bean:
public String login() {
SecurityRealm realm = new SecurityRealm();
SecurityManager securityManager = new DefaultSecurityManager(realm);
SecurityUtils.setSecurityManager(securityManager);
Subject user = SecurityUtils.getSubject();
.
.
.
UsernamePasswordToken token = new UsernamePasswordToken(username, password);
token.setRememberMe(true);
try{
user.login(token);
}
.
.
Realm:
protected AuthenticationInfo doGetAuthenticationInfo(AuthenticationToken token) throws AuthenticationException
{
AuthenticationInfo authInfo = null;
UsernamePasswordToken credentials = (UsernamePasswordToken)token;
String username = credentials.getUsername();
String password = credentials.getPassword().toString();
User authUser = new User(username, password, null, null, null);
boolean authenticated = false;
boolean validTime = false;
try {
authenticated = authUser.login();
.
.
.