hi, see Kesav Kumar's answer 7:49pm to learn
somerthing.
- Original Message -
From:
Lachezar
Dobrev
To: Orion-Interest
Sent: Thursday, November 22, 2001 6:15
PM
Subject: Re: HttpSession creation
Hello.
Trying to stop a session from
being cr
Hello.
Trying to stop a session from being
created is not valid.
Sessions are not user-dependant.
Sessions are a handshake between a server and a client. You should have thought
another way to do that. Maybe check if the user HAS authenticated.
.getSession() and
.getSession(boo
write the session="false" on all
JSP pages before your login process.
<%@ page session="false"%>
Kesav Kumar
- Original Message -
From: Greg
Matthews
To: Orion-Interest
Sent: Wednesday, November 21, 2001 4:34 PM
Subject: HttpSession creation
hi,
i
hi,
i'm trying to ensure that the only time a session
is created is after a successful user login.
is there any other way apart from
HttpServletRequest.getSession( ), or HttpServletRequest.getSession( boolean
create) that a HttpSession can be created?
i've trawled through the J2EE API b