I have FORM based login using Custom LoginModule. My custom login module is same as the DatabaseServerLoginModule but with some additions to check for login expiry, no of invalid login attempts, and account lockout. I should also mention that i am using SingleSignOn since my application consists of multiple web apps running different java technologies.

My problem is when the currently logged in user changes his/her password. After successfully changing the password, the value in the database gets changes but the Password Callback that the login module uses is still holding the old password (I cannot access the password callback). This is the excerpt from my login.config.xml file

<application-policy name = "xxxxxxxx">
    <authentication>
        <!-- login-module code = "org.jboss.security.auth.spi.DatabaseServerLoginModule" flag = "required" -->
        <login-module code = "com.xxx.xxx.xxx.MyOwnDatabaseServerLoginModule" flag = "required">
            <module-option name = "dsJndiName">java:/DefaultDataSource</module-option>
            <module-option name = "principalsQuery">xxxxxxxxx = ?</module-option>
            <module-option name = "rolesQuery">xxxxxx = ?</module-option>            
            <module-option name = "unauthenticatedIdentity">everyone</module-option>
        <module-option name="ignorePasswordCase">true</module-option> 
            <module-option name="hashEncoding">hex</module-option> 
        <module-option name="hashAlgorithm">MD5</module-option>
        </login-module>
    </authentication>
</application-policy>

So when the other application tries to use the SSO to login in the login module will use the old password and will in turn fail to login.

Can anyone recommend a good strategy other than changing to Spring security or invalidating the whole session. Any idea towards this is greatly appreciated.

Thanks, Jobby

link|improve this question
feedback

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

Your Answer

 
or
required, but never shown

Browse other questions tagged or ask your own question.