Re: session ids

2001-08-20 Thread Guus Holshuijsen
PROTECTED] Sent: Sunday, August 19, 2001 12:01 Subject: Re: session ids do u have an example Rakesh Ayilliath [EMAIL PROTECTED] - Original Message - From: Jon Crater [EMAIL PROTECTED] To: [EMAIL PROTECTED] Sent: Thursday, August 16, 2001 10:27 PM Subject: Re: session ids

Re: session ids

2001-08-19 Thread Rakesh
do u have an example Rakesh Ayilliath [EMAIL PROTECTED] - Original Message - From: Jon Crater [EMAIL PROTECTED] To: [EMAIL PROTECTED] Sent: Thursday, August 16, 2001 10:27 PM Subject: Re: session ids rakesh-- you can solve this problem by having the class responsible

RE: session ids

2001-08-16 Thread Greg Maletic
I don't believe you can get all valid sessionIDs from the server. I thinkthe API for doing so was deprecated a while back for security reasons. The way I'vesolvedthis in the past was to have each session register itself into a application-scoped hashmap, and maintain thatmap myself.

Re: session ids

2001-08-16 Thread Rakesh
I remove his name from the Hash ? Kindly help. Rakesh Ayilliath [EMAIL PROTECTED] - Original Message - From: Greg Maletic To: [EMAIL PROTECTED] ; Rakesh Sent: Thursday, August 16, 2001 9:54 PM Subject: RE: session ids I don't believe you can get all

Re: session ids

2001-08-16 Thread Jon Crater
id is added/removed when the hashtable manager is unbound from the session. jon Original Message Follows From: Rakesh [EMAIL PROTECTED] Reply-To: Rakesh [EMAIL PROTECTED] To: [EMAIL PROTECTED], [EMAIL PROTECTED] Subject: Re: session ids Date: Thu, 16 Aug 2001 22:12:50 +0530 Hi Greg

RE: session ids

2001-08-16 Thread Greg Maletic
session it was associated with. -Original Message-From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED]]On Behalf Of RakeshSent: Thursday, August 16, 2001 9:43 AMTo: [EMAIL PROTECTED]; [EMAIL PROTECTED]Subject: Re: session ids Hi Greg, I know that this sessioncontext

Re: session ids cont...

2001-02-01 Thread Maya Muchnik
In [EMAIL PROTECTED] this issue was discussed (why and when IE supports different sessionID, and Netscape - not). The main thing is, Netscape is reading any cookies from one file, IE - from different files. Peter Alfors wrote: I.E. 5.0 and 5.5 generate unique session ids for each simultaneous

Re: session ids cont...

2001-02-01 Thread Steven D. Wilkinson
In [EMAIL PROTECTED] this issue was discussed (why and when IE supports different sessionID, and Netscape - not). The main thing is, Netscape is reading any cookies from one file, IE - from different files. Do you have a reference to said article? If not how about the subject and date?

Re: session ids cont...

2001-02-01 Thread Jannik Nørgaard Steen
I have just tested our web application prototype on Netscape 4.7 and there are no problems with URL-rewriting and jessionid's. The servlet container (Resin 1.1.5) picks the right sessions for the right clients. We use a mix of hardcoded with dynamic jsessionid insertion, Struts html:link and

Re: session ids cont...

2001-02-01 Thread Steven D. Wilkinson
Peter, I.E. 5.0 and 5.5 generate unique session ids for each simultaneous browser session. However, both Netscape 4.7 and Netscape 6 return the same Id. What do you mean by simultaneous browser sessions. If you create a new window CTL+N in IE5.0 you get the same id. (Is this simultaneous?)

Re: session ids cont...

2001-02-01 Thread Maya Muchnik
It was posted as a Subject : "what starts session?", Date: Wed, 24 Jan 2001 16:07:49 -0800 (PST) and responses were followed. "Steven D. Wilkinson" wrote: In [EMAIL PROTECTED] this issue was discussed (why and when IE supports different sessionID, and Netscape - not). The main thing is,

Re: session ids cont...

2001-02-01 Thread Peter Alfors
"Steven D. Wilkinson" wrote: Peter, I.E. 5.0 and 5.5 generate unique session ids for each simultaneous browser session. However, both Netscape 4.7 and Netscape 6 return the same Id. What do you mean by simultaneous browser sessions. If you create a new window CTL+N in IE5.0 you

RE: session ids cont...

2001-02-01 Thread Kramer, Gary
Title: RE: session ids cont... I had similiar problems. You need to turn off the use of Cookies on your server (in Tomcat this setting is in server.xml). When the user opens 2 browsers, they will always have different session ids in both IE and Netscape since the first URL they will use

Re: session ids cont...

2001-02-01 Thread Craig R. McClanahan
Peter Alfors wrote: "Kramer, Gary" wrote: I had similiar problems. You need to turn off the use of Cookies on your server (in Tomcat this setting is in server.xml). When the user opens 2 browsers, they will always have different session ids in both IE and Netscape since the