Re: Session Mess

2004-04-14 Thread Matt Woodings
Session crossover is a common problem especially when many people log in from the same machine. The reason for this could be from caching of the browser. What you need to do is to force it to go back to the server and get the user the latest information. One way to do this is to add timestamp

RE: Session Mess

2004-04-14 Thread shyam
Adamshand Inc www.interviewexchange.com -Original Message- From: Matt Woodings [mailto:[EMAIL PROTECTED] Sent: Wednesday, April 14, 2004 9:45 AM To: Tomcat Users List Subject: Re: Session Mess Session crossover is a common problem especially when many people log in from the same machine

Re: Session Mess

2004-04-14 Thread Thomas Chua
I ever encountered this pblm at my login servlet and changing my authentication method to a synchronized method solved that problem. Hope this help shyam [EMAIL PROTECTED] 04/14/2004 09:17 PM Please respond to Tomcat Users List To: 'Tomcat Users List' [EMAIL PROTECTED]

RE: Session Mess

2004-04-14 Thread Ralph Einfeldt
To: Tomcat Users List Subject: Re: Session Mess Session crossover is a common problem especially when many people log in from the same machine. The reason for this could be from caching of the browser. What you need to do is to force it to go back to the server and get the user the latest

Re: Session Mess

2004-04-14 Thread Matt Woodings
and finish with another. Matt - Original Message - From: shyam [EMAIL PROTECTED] To: 'Tomcat Users List' [EMAIL PROTECTED] Sent: Wednesday, April 14, 2004 8:34 AM Subject: RE: Session Mess Hi Matt, Thanks for the reply. I understand that if people from the same machine log in. But I

RE: Session Mess

2004-04-14 Thread shyam
PROTECTED] Sent: Wednesday, April 14, 2004 10:33 AM To: Tomcat Users List Subject: Re: Session Mess Ahhh, I see. This might not be a session problem but a code problem. When you are uploading, do you store this file using a tmp file or something similar ... check for synchronization problems