- 
        1. Re: Roles Update Problemgorano Jun 9, 2004 3:28 PM (in response to rkarn)If you leave your application and have a coffe, you will be able to use the new role when you come back. 
 There is a cache and a time to live setting you can play with. Default is 30 minutes.
 Make your changes in jboss-service.xml
 org.jboss.security.plugins.JaasSecurityManagerService
 /G
- 
        2. Re: Roles Update Problemclcantrell Jun 14, 2004 10:16 PM (in response to rkarn)I had the same problem. All you have to do is upon role update, Flush the JAASSecurityManger's cache. This will force the the principal to go through the login module again, populating all the new roles. 
- 
        3. Re: Roles Update Problemrkarn Jun 15, 2004 10:09 AM (in response to rkarn)Thank you for the hints. Flushing the JAASSecurityManger's cache does it. 
- 
        4. Re: Roles Update Problemauckyboy Jun 29, 2004 9:04 PM (in response to rkarn)Hi Nod/clcantrell, gorano, 
 Can you please elaborate on how to clear the cache and change the time to live.
 Tthx
- 
        5. Re: Roles Update Problemgorano Jun 30, 2004 7:21 AM (in response to rkarn)In jboss-service.xml you will find: <!-- JAAS security manager and realm mapping --> <mbean code="org.jboss.security.plugins.JaasSecurityManagerService" name="jboss.security:service=JaasSecurityManager"> <attribute name="SecurityManagerClassName"> org.jboss.security.plugins.JaasSecurityManager </attribute> </mbean 
 Add parameters:<attribute name="DefaultCacheTimeout">TimeoutInSeconds</attribute> <attribute name="DefaultCacheResolution">TimeoutInSeconds</attribute> 
 If not specified, JBoss use the following values:
 DefaultCacheTimeout=1800
 DefaultCacheResolution=60 (interval to check the cache)
 /G
- 
        6. Re: Roles Update Problemgorano Jun 30, 2004 7:30 AM (in response to rkarn)To be able to flush the entire cache, you can invoke the flushAuthenticationCache method. 
 /G
 
     
     
    