This content has been marked as final. 
    
Show                 3 replies
    
- 
        1. Re: Problems in JBOSS 3.2.5 + Tomcat 5.0(Please HELP!)lazybonezz Jul 7, 2004 1:47 PM (in response to phantom)I have the same problem on moving from 3.2.3 to 3.2.5 with Tomcat. The principal does not seem to be being set in SecurityAssociations by the ClientLoginModule. 
- 
        2. Re: Problems in JBOSS 3.2.5 + Tomcat 5.0(Please HELP!)starksm64 Jul 7, 2004 4:23 PM (in response to phantom)The SecurityAssociation state is controlled by the ejb/web containers. Create an example of how your trying to use it and post a bug report to sourceforge: 
 http://sourceforge.net/tracker/?group_id=22866&atid=376685
- 
        3. Re: Problems in JBOSS 3.2.5 + Tomcat 5.0(Please HELP!)phantom Jul 8, 2004 3:08 AM (in response to phantom)It seems that problem was resolved: 
 login-config.xml for 3.2.3 was:<application-policy name = "%my-security-domain%"> <authentication> <login-module code="%MySecurityLoginModule%" flag = "required"> </login-module> <login-module code = "org.jboss.security.ClientLoginModule" flag = "required"> </login-module> </authentication> </application-policy> 
 login-config.xml for 3.2.5 is:<application-policy name = "%my-security-domain%"> <authentication> <login-module code = "%MySecurityLoginModule%" flag="required"/> <login-module code = "org.jboss.security.ClientLoginModule" flag="required"> <module-option name = "password-stacking">useFirstPass</module-option> <module-option name = "restore-login-identity">true</module-option> </login-module> </authentication> </application-policy> 
 After this manipulation all is OK.
 Can you explain in detailes changes in 3.2.5?
 Thank you!
 
     
    