Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

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();
        .
        .
        .
share|improve this question
Apache Shiro = Apache question :) Regardless, this blog helped... ironically... balusc.blogspot.com/2013/01/… – Half_Duplex Jan 26 at 20:53

Know someone who can answer? Share a link to this question via email, Google+, Twitter, or Facebook.

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Browse other questions tagged or ask your own question.