Re: Forced session expiry after certain period

2019-06-25 Thread Christopher Schultz
-BEGIN PGP SIGNED MESSAGE- Hash: SHA256 M, On 6/24/19 18:07, M. Manna wrote: > Hello, > > Is it possible to evict all sessions after certain period of time ? > This is not the same as idle session-timeout (web.xml). > > We are trying to research into whether there’s an absolute maximum

Forced session expiry after certain period

2019-06-24 Thread M. Manna
Hello, Is it possible to evict all sessions after certain period of time ? This is not the same as idle session-timeout (web.xml). We are trying to research into whether there’s an absolute maximum limit for a session in tomcat. After which _any_ session should be expired. We are currently using

Re: Session Expiry Issue on Tomcat 5.5.27

2011-05-24 Thread Harsimranjit singh Kler
facilement être sujets à la manipulation, nous ne pouvons accepter > aucune responsabilité pour le contenu fourni. > > > > > > Date: Tue, 24 May 2011 11:38:35 +0530 > > Subject: Session Expiry Issue on Tomcat 5.5.27 > > From: simran...@gmail.com > > To: users@tomc

RE: Session Expiry Issue on Tomcat 5.5.27

2011-05-24 Thread Caldarale, Charles R
> From: Harsimranjit singh Kler [mailto:simran...@gmail.com] > Subject: Session Expiry Issue on Tomcat 5.5.27 > we see that some session are expired even if there is some > activity going on and the user gets logged out. Are you sure the session is expiring, or is it perhaps bein

RE: Session Expiry Issue on Tomcat 5.5.27

2011-05-24 Thread Martin Gainty
ous ne pouvons accepter aucune responsabilité pour le contenu fourni. > Date: Tue, 24 May 2011 11:38:35 +0530 > Subject: Session Expiry Issue on Tomcat 5.5.27 > From: simran...@gmail.com > To: users@tomcat.apache.org > > Hi All > > In our application we are trying to ma

Session Expiry Issue on Tomcat 5.5.27

2011-05-23 Thread Harsimranjit singh Kler
Hi All In our application we are trying to manage session per user login and have set the session inactivity to 15 minutes [user details are set to the session], when we are running the application for longer duration [over 2 days] with continuous activity per user login we see that some session

Re: Tomcat stops invalidating sessions after session expiry

2008-05-13 Thread Mikolaj Rydzewski
pg1691 wrote: We have implemented HttpSessionListener in our application. In that listener we are doing some special code on sessionDestroyed(mainly closing connection with oracle database). Why do you want to store db connections within a session? If you use single db user for every request

Tomcat stops invalidating sessions after session expiry

2008-05-13 Thread pg1691
context: http://www.nabble.com/Tomcat-stops-invalidating-sessions-after-session-expiry-tp17221846p17221846.html Sent from the Tomcat - User mailing list archive at Nabble.com. - To start a new topic, e-mail: users@tomcat.apache.org To

Re: Session expiry

2007-03-20 Thread Christopher Schultz
-BEGIN PGP SIGNED MESSAGE- Hash: SHA1 Mike, Mike Quilleash wrote: > Does anyone know if there's a method for determining if the Session for > a user has expired since the last request? When a request comes in from a user who /did/ have a session, it should include a session identifier. I

Re: Session expiry

2007-03-20 Thread Mikolaj Rydzewski
Mike Quilleash wrote: I can tell from this when the session expires but then I want to notify the user that was using that session next time they make a request. Maybe HttpSession.isNew()? -- Mikolaj Rydzewski <[EMAIL PROTECTED]> smime.p7s Description: S/MIME Cryptographic Signature

RE: Session expiry

2007-03-20 Thread Mike Quilleash
user is not logged in. This works fine but in the case of > Session expiry I would like to redirect the user to the login page > (works fine as the login object is stored in HttpSession) AND display > a message informing them that their session expired due to inactivity. > Is ther

Re: Session expiry

2007-03-20 Thread Mikolaj Rydzewski
in the case of Session expiry I would like to redirect the user to the login page (works fine as the login object is stored in HttpSession) AND display a message informing them that their session expired due to inactivity. Is there any way of telling the difference between the "not logged in yet

Session expiry

2007-03-19 Thread Mike Quilleash
Hi there, Does anyone know if there's a method for determining if the Session for a user has expired since the last request? Basically I have a Filter that does an "is logged in" check and redirects to a login page if the user is not logged in. This works fine but in the case of