Correction.  Sorry If I missed this.  If a users has to reboot their
computer, their browser won't (typically) reuse an old session anyway.  It
will force a new cookie which looks, on the server-side, like a new session.

Although, this doesn't help you to know that the old one should invalidated.
It will still live on until the session timeout has been hit.

Are you trying to force killing of the session for some reason like
performance or memory?



James Mitchell
Software Engineer\Struts Evangelist
Struts-Atlanta, the "Open Minded Developer Network"
http://www.open-tools.org/struts-atlanta




> -----Original Message-----
> From: Tony Baity [mailto:[EMAIL PROTECTED]]
> Sent: Thursday, August 01, 2002 11:45 AM
> To: Struts Users Mailing List
> Subject: RE: Ending a Session After Browser Has Gone Away
>
>
>
> Look in the javadocs for HttpSession and how to use
> HttpSessionBindingListener .
> I recommend allowing each browser instance to be allowed to
> login. Try to be stateless. If you want to do anything at all in
> the case of session timeout, use the  HttpSessionBindingListener
>
>
>  Becky Moyer wrote:Just set a short session timeout. 3 minutes of
> inactivity, session expires.
> So by the time they reboot, they have to log in again.
> Yeah, if someone stares at the page for 3 minutes and does something, they
> have to log in again, but if you're that concerned with sessions getting
> cleared, then it's not such a big deal.
>
> Anything wrong with this?
> Becky
>
> > -----Original Message-----
> > From: Cohan, Sean [mailto:[EMAIL PROTECTED]]
> > Sent: Thursday, August 01, 2002 11:33 AM
> > To: 'Struts Users Mailing List'
> > Subject: RE: Ending a Session After Browser Has Gone Away
> >
> >
> > Any suggestions?
> >
> > -----Original Message-----
> > From: James Mitchell [mailto:[EMAIL PROTECTED]]
> > Sent: Thursday, August 01, 2002 11:34 AM
> > To: Struts Users Mailing List
> > Subject: RE: Ending a Session After Browser Has Gone Away
> >
> >
> > The web being the stateless environment that it is, you have no way know
> > (without using javascript) that a user has closed a browser.
> >
> > I wouldn't advise to doing this anyway, because the user may have
> > more than
> > one window open, so if they close one of them and try to continue
> > using your
> > site, they will be met (rather rudely) with your login screens.
> >
> > I can't speak for other people, but whenever I'm navigating a
> > site that does
> > a shit job of navigation hierarchy, I always use shift+click if
> I want to
> > keep the current page and not be sent off deep in the site with
> no hope of
> > finding the original spot that sent me. If the site did as you propose,
> > this would result in a very pissed off user. And you could bet
> that you'd
> > hear about it (from me at least).
> >
> > Oh well, that's my 2 cents.
> >
> >
> >
> > James Mitchell
> > Software Engineer\Struts Evangelist
> > Struts-Atlanta, the "Open Minded Developer Network"
> > http://www.open-tools.org/struts-atlanta
> >
> >
> >
> >
> > > -----Original Message-----
> > > From: Cohan, Sean [mailto:[EMAIL PROTECTED]]
> > > Sent: Thursday, August 01, 2002 11:06 AM
> > > To: [EMAIL PROTECTED]
> > > Subject: Ending a Session After Browser Has Gone Away
> > >
> > >
> > > Is there a way to end a user session if the browser has closed either
> > > through user action or non-user actions such as power outages?
> > > If not, what
> > > are typical ways to get around this? We are talking about
> > > allowing the user
> > > to login again, checking for a current user session, and if
> > they have one,
> > > killing it and starting a new one. Is this a sound approach? Thanks.
> > >
> > >
> > > Sean Cohan
> > > Software Performance Systems
> > >
> > >
> > >
> > > --
> > > To unsubscribe, e-mail:
> > >
> > > For additional commands, e-mail:
> > >
> > >
> > >
> >
> >
> > --
> > To unsubscribe, e-mail:
> >
> > For additional commands, e-mail:
> >
> >
> > --
> > To unsubscribe, e-mail:
> >
> > For additional commands, e-mail:
> >
> >
>
>
> --
> To unsubscribe, e-mail:
> For additional commands, e-mail:
>
>
>
> ---------------------------------
> Do You Yahoo!?
> Yahoo! Health - Feel better, live better


--
To unsubscribe, e-mail:   <mailto:[EMAIL PROTECTED]>
For additional commands, e-mail: <mailto:[EMAIL PROTECTED]>

Reply via email to