RE: is session id unique across webapps ?

2003-06-05 Thread Angus Mezick
: Wednesday, June 04, 2003 6:56 AM To: Tomcat Users List Subject: Re: is session id unique across webapps ? Tomcat creates its sessionids from a random number generator. The breadth of random numbers is very wide allowing for virtually no overlaps. But since they are random, dups may

RE: is session id unique across webapps ?

2003-06-05 Thread Schwartz, David (CHR)
I thought it was based on the browser ID + number - therefore always unique. -Original Message- From: Angus Mezick [mailto:[EMAIL PROTECTED] Sent: Wednesday, June 04, 2003 9:28 AM To: Tomcat Users List Subject: RE: is session id unique across webapps ? Hmm, I just read those two thread

RE: is session id unique across webapps ?

2003-06-05 Thread Angus Mezick
if the session id isn't unique across a cluster! YAH! -Original Message- From: Schwartz, David (CHR) [mailto:[EMAIL PROTECTED] Sent: Wednesday, June 04, 2003 9:30 AM To: 'Tomcat Users List' Subject: RE: is session id unique across webapps ? I thought it was based on the browser

Re: is session id unique across webapps ?

2003-06-04 Thread Tim Funk
Tomcat creates its sessionids from a random number generator. The breadth of random numbers is very wide allowing for virtually no overlaps. But since they are random, dups may appear. Tomcat does have checks to make sure it doesn't give out an existing session id in a particular webapp. That