1 Reply Latest reply on Oct 28, 2005 12:06 PM by starksm64

    Caching of Authenticated data

    ralluri

      I've implemented authentication using DatabaseServerLoginModule.
      here is my principals query
      SELECT PWD FROM USERS WHERE upper(USERID)=upper(?) AND ACTIVE='1'

      Wondering if JBoss caches authentication information for each user who
      logged into the system.

      First, When I login as 'employee' with Active flag 1 it is successful
      However, when I change the Active flag to '0' by some other means in DB
      the user is still be able to login. However, when I recycle the JBoss
      it is working as expected(will not log in the user).

      Can someone help if there is amy way to configure not to cache the data ?