Re: Detecting Session Timeout in Tomcat

2005-10-19 Thread Paul Singleton
Brian Blount wrote: I need to be able to distinguish between a session timeout vs the first time someone accesses my web application. Within a single web application, I've been able to use the following logic: (request.isRequestedSessionIdValid() == false && (request.isRequestedSessionIdFromC

Re: Detecting Session Timeout in Tomcat

2005-10-14 Thread Wade Chandler
--- Brian Blount <[EMAIL PROTECTED]> wrote: > Thanks for the quick response. > > I don't think this will help in my scenario. I > don't > need to perform an action when the session timeouts. > > Instead, when a user hits my web application after > their session has timed out, I want to direct t

Re: Detecting Session Timeout in Tomcat

2005-10-14 Thread Brian Blount
Thanks for the quick response. I don't think this will help in my scenario. I don't need to perform an action when the session timeouts. Instead, when a user hits my web application after their session has timed out, I want to direct them to a particular page (different than the login page). --

RE: Detecting Session Timeout in Tomcat

2005-10-14 Thread LORESERVO.COM
PLEASE DONT SEND THIS MAIL TO ME PLEASE. -Mensaje original- De: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] Enviado el: Viernes, 14 de Octubre de 2005 10:10 a.m. Para: Tomcat Users List Asunto: Re: Detecting Session Timeout in Tomcat Why not implement the

Re: Detecting Session Timeout in Tomcat

2005-10-14 Thread rob
Why not implement the HttpSessionListener and handle session timeouts from that perspective? I've had success using this method, but don't know if that will work for your scenario...HTH - Original Message - From: "Brian Blount" To: users@tomcat.apache.org Subject: Detecting Sessio