HttpSession ses = request.getSession(true);
ses.invalidate();
Al
-Original Message-
From: [EMAIL PROTECTED]
[mailto:[EMAIL PROTECTED]]On Behalf Of Huibert
Aalbers
Sent: Wednesday, February 21, 2001 1:51 PM
To: Orion-Interest
Subject: Re: How can I use Application session?
Hi everyone
,
Huibert
Angus Mark wrote:
> you can call getSession(boolean create) where create is false instead
>
> > -Original Message-
> > From: Yves Bossel [SMTP:[EMAIL PROTECTED]]
> > Sent: 21 February 2001 11:40
> > To: Orion-Interest
> > Subject: R
you can call getSession(boolean create) where create is false instead
> -Original Message-
> From: Yves Bossel [SMTP:[EMAIL PROTECTED]]
> Sent: 21 February 2001 11:40
> To: Orion-Interest
> Subject: RE: How can I use Application session?
>
> > I wo
> I would add:
> * how can I retrieve the session ID while I am inside an EJB
> method so I
(from the docs)
use from HttpServletRequest the method getSession(), then session.getId()
Be careful because the spec says that getSession() creates a session if it
does not exists.
Yves Bossel - Progr
I would add:
* how can I retrieve the session ID while I am inside an EJB method so I
can figure out on each server in the cluster what client is served?
* how can I get rid of the session ID that appears in the URL?
Thank you!
Danut
At 01:48 PM 2/20/2001 +0330, Hamid Abbasi wrote:
>Hi ,
>I wan