RE: Listening to Session Creation... Need Access to Session

2003-12-01 Thread Shapira, Yoav
Howdy, 1) Implement SessionListener, put in web.xml file in listener tags. This never seems to run. 2) Implement HttpSessionListener, put in web.xml file in listener tags. This runs, but doesn't seem to have access to the Session (I need the username and pass off the Session to

RE: Listening to Session Creation... Need Access to Session

2003-12-01 Thread Hart, Justin
PROTECTED] Sent: Monday, December 01, 2003 2:39 PM To: Tomcat Users List Subject: RE: Listening to Session Creation... Need Access to Session Howdy, 1) Implement SessionListener, put in web.xml file in listener tags. This never seems to run. 2) Implement HttpSessionListener, put

RE: Listening to Session Creation... Need Access to Session

2003-12-01 Thread Karl Coleman
Why would that be wasting time? Isn't this a tomcat list? Karl -Original Message- From: Shapira, Yoav [mailto:[EMAIL PROTECTED] Sent: Monday, December 01, 2003 2:39 PM To: Tomcat Users List Subject: RE: Listening to Session Creation... Need Access to Session I'm not going to waste time

RE: Listening to Session Creation... Need Access to Session

2003-12-01 Thread Shapira, Yoav
:39 PM To: Tomcat Users List Subject: RE: Listening to Session Creation... Need Access to Session I'm not going to waste time on approaches 1 and 3, as they're tomcat-specific. #2 will work: you will get the event, with access to the session, once the session is created. It has no attributes