- 
        1. Re: Use of EJBs within LoginModuledeanouk Feb 1, 2008 12:31 PM (in response to deanouk)After stepping through a bit more carefully... 
 The EJB is successfully accessed in:
 getUsersPassword()
 Then LoginModule calls commit().
 Which calls super.commit() - which calls getRoleSets() - which on an EJB call inside the getRoleSets() goes back to getUsersPassword() which then loops on itself, over and over, and then finally fails.
- 
        2. Re: Use of EJBs within LoginModuleragavgomatam Feb 1, 2008 9:29 PM (in response to deanouk)Its always a little tricky. Ejb's if they are secured, then to call them you should first be jaas logged in...But if you call the ejb from a Login Module, without being logged in, you go into an indefinite loop...Its like a re-entrant call with ejb's...Situation is different if you have @PermitAll...technically it should let you through 
- 
        3. Re: Use of EJBs within LoginModuledeanouk Feb 2, 2008 5:13 AM (in response to deanouk)The EJB I'm calling is set to @PermitAll 
 It appears to be on the second call to the EJB, it's very odd, but I'm desperate for a solution.
- 
        4. Re: Use of EJBs within LoginModuleanil.saldhana Feb 5, 2008 10:55 AM (in response to deanouk)First ensure that your EJBs are working with the default JAAS configuration of "other". Then bring in your login modules. 
 
     
    