Re: Invalidating a session using JAVASCRIPT

2006-03-21 Thread vijay venkataraman
Craig, Thanks for clarifying. Vijay Craig McClanahan wrote: On 3/21/06, vijay venkataraman <[EMAIL PROTECTED]> wrote: Think the best way is call a sumit and do the clean up at the server. You'll likely want to do this in an "onunload" handler for the element. What if cookies are

Re: Invalidating a session using JAVASCRIPT

2006-03-21 Thread Craig McClanahan
On 3/21/06, vijay venkataraman <[EMAIL PROTECTED]> wrote: > > Think the best way is call a sumit and do the clean up at the server. You'll likely want to do this in an "onunload" handler for the element. What if cookies are used for maintaining session? - Then i belive we can > destory session

Re: Invalidating a session using JAVASCRIPT

2006-03-21 Thread vijay venkataraman
2006 4:08 PM To: Struts Users Mailing List Subject: Re: Invalidating a session using JAVASCRIPT Hi Sahil, I believe this can be done by implementing the HttpSessionBindingListenerInterface.The HttpSessionBindingListener interface is implemented by the classes whose objects need to re

RE: Invalidating a session using JAVASCRIPT

2006-03-21 Thread Sahil Gupta
PM To: Struts Users Mailing List Subject: RE: Invalidating a session using JAVASCRIPT I think he doesn't want to catch those events. He wants to invalidate session on clicking window's close button. /Ashwani -Original Message- From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED]

RE: Invalidating a session using JAVASCRIPT

2006-03-21 Thread Chandra.Ravinithala
Sent: Tuesday, March 21, 2006 4:08 PM To: Struts Users Mailing List Subject: Re: Invalidating a session using JAVASCRIPT Hi Sahil, I believe this can be done by implementing the HttpSessionBindingListenerInterface.The HttpSessionBindingListener interface is implemented by the classes whose ob

RE: Invalidating a session using JAVASCRIPT

2006-03-21 Thread Kalra, Ashwani
I think he doesn't want to catch those events. He wants to invalidate session on clicking window's close button. /Ashwani -Original Message- From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] Sent: Tuesday, March 21, 2006 4:08 PM To: Struts Users Mailing List Subject: Re: Inva

Re: Invalidating a session using JAVASCRIPT

2006-03-21 Thread rajasekhar . cherukuri
Hi Sahil, I believe this can be done by implementing the HttpSessionBindingListenerInterface.The HttpSessionBindingListener interface is implemented by the classes whose objects need to receive notifications whenever they are added to or removed from a session. We do not have to inform