RE: One user seeing another user's data

2004-02-24 Thread Mike Curwen
, February 24, 2004 5:39 AM > To: Tomcat Users List > Subject: Re: One user seeing another user's data > > > Hello Anotonio, > > Thanks for your reply. > > We are using JSPs and invoke java beans from them. We have > the scope parameter set to 'applicat

Re: One user seeing another user's data

2004-02-24 Thread Anbu
Hello Anotonio, Thanks for your reply. We are using JSPs and invoke java beans from them. We have the scope parameter set to 'application' in JSPs. I will look into the bean source code and check for non-final static variables. Regards, Anbu Antonio_Fiol_Bonnín <[EMAIL PROTECTED]> wrote: H

Re: One user seeing another user's data

2004-02-23 Thread Antonio Fiol Bonnín
Hi, - Try to turn all your servlet's non-final STATIC or INSTANCE variables into LOCAL scope variables. This is definitely the first step, and will likely remove 90% of problems. For singletons or static variables outside your servlet: - Concentrate all your accesses to each of them in a short

RE: One user seeing another user's data

2004-02-23 Thread Anbu
ns from and move them to . Kal -Original Message- From: Antonio Fiol Bonnin [mailto:[EMAIL PROTECTED] Sent: Tuesday, February 17, 2004 2:17 AM To: Tomcat Users List Subject: Re: One user seeing another user's data Hi Kuloth, Seatch Tomcat-user for "concurrency problems&

RE: One user seeing another user's data

2004-02-18 Thread Anbu
%> and > move them to <%...%>. > > Kal > > -Original Message- > From: Antonio Fiol Bonnin > [mailto:[EMAIL PROTECTED] > Sent: Tuesday, February 17, 2004 2:17 AM > To: Tomcat Users List > Subject: Re: One user seeing another user's data > &

RE: One user seeing another user's data

2004-02-17 Thread Kal Govindu
4 2:17 AM To: Tomcat Users List Subject: Re: One user seeing another user's data Hi Kuloth, Seatch Tomcat-user for "concurrency problems" or "threading issues". There has been recent discussion on the topic. Concurrency problems are the main source of session mix-up. Also

Re: One user seeing another user's data

2004-02-16 Thread Antonio Fiol Bonnín
Hi Kuloth, Seatch Tomcat-user for "concurrency problems" or "threading issues". There has been recent discussion on the topic. Concurrency problems are the main source of session mix-up. Also look for "instance variables" (hint: avoid them in Servlets) Antonio Fiol Anbu wrote: Hello Bill a