RE: Handling Session Timeout

2003-11-05 Thread Caroline Jen
(session != null) > session.invalidate(); > > return super.processPath(request, response); > // process login page request > > } > > } > > > > -Original Message- &

Re: Handling Session Timeout

2003-11-05 Thread Rick Reumann
Samanth Athrey wrote: I am trying to handle session timeout by extending RequestProcessor. Since the processPreprocess(...) method is called before the Action.execute(..) method, am trying to add that piece of code to check if the session is valid. The problem am facing is, if i return false from

RE: Handling Session Timeout

2003-11-05 Thread Seyhan BASMACI (Internet Yazilimlari Yetkilisi)
manth Athrey [mailto:[EMAIL PROTECTED] Sent: Wednesday, November 05, 2003 5:26 PM To: [EMAIL PROTECTED] Subject: Handling Session Timeout Hello Gurus I am trying to handle session timeout by extending RequestProcessor. Since the processPreprocess(...) method is called before the Action.execute(..)

Handling Session Timeout

2003-11-05 Thread Samanth Athrey
Hello Gurus I am trying to handle session timeout by extending RequestProcessor. Since the processPreprocess(...) method is called before the Action.execute(..) method, am trying to add that piece of code to check if the session is valid. The problem am facing is, if i return false from this metho

RE: Handling session Timeout

2002-10-08 Thread Ashish Kulkarni
> -Original Message- > From: [EMAIL PROTECTED] > [mailto:[EMAIL PROTECTED]] > Sent: Tuesday, October 08, 2002 11:50 AM > To: [EMAIL PROTECTED] > Subject: Handling session Timeout > > > I'm trying to implement something from an earlier > posting on

RE: Handling session Timeout

2002-10-08 Thread Gaurav . Goyal
]] Sent: Tuesday, October 08, 2002 11:50 AM To: [EMAIL PROTECTED] Subject: Handling session Timeout I'm trying to implement something from an earlier posting on the list. I've extended ActionServlet and overridden the processPreprocess method. I've put in the following line : if (req

Handling session Timeout

2002-10-08 Thread Gaurav . Goyal
I'm trying to implement something from an earlier posting on the list. I've extended ActionServlet and overridden the processPreprocess method. I've put in the following line : if (request.getSession(false) == null), however i find that this line always returns false, even after the session has ti