Re: tomcat output gets mixed up for different requests

2004-08-03 Thread André Weidemann
QM wrote: Two clients' content getting mixed up with one another: sounds like misuse of a shared variable, such as an instance variable inside the servlet class, use of the servlet context for client data, etc. I checked all variables and declarations and I'm sure that there are no variables being

RE: tomcat output gets mixed up for different requests

2004-08-03 Thread Ralph Einfeldt
. -Original Message- From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] Sent: Tuesday, August 03, 2004 11:01 AM To: Tomcat Users List Subject: Re: tomcat output gets mixed up for different requests So it seems that Tomcat does not spawn a new servlet for a new request, althought my web.xml

AW: tomcat output gets mixed up for different requests

2004-08-03 Thread SH Solutions
Hi So it seems that Tomcat does not spawn a new servlet for a new request, althought my web.xml file contains: servlet servlet-nameNavigation/servlet-name servlet-classNavigation/servlet-class load-on-startup5/load-on-startup /servlet Load-on-startup lets you set

RE: tomcat output gets mixed up for different requests

2004-08-03 Thread Caldarale, Charles R
From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] Subject: Re: tomcat output gets mixed up for different requests So it seems that Tomcat does not spawn a new servlet for a new request As per the spec - using a single instance of the servlet is correct behavior. You should be using local

Re: tomcat output gets mixed up for different requests

2004-08-03 Thread André Weidemann
Caldarale, Charles R wrote: From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] Subject: Re: tomcat output gets mixed up for different requests So it seems that Tomcat does not spawn a new servlet for a new request As per the spec - using a single instance of the servlet is correct behavior. You

tomcat output gets mixed up for different requests

2004-07-09 Thread André Weidemann
Hi, I searched the net and also the tomcat-list archives but couldn't find any help. That is what lead me here... I'm quite new to Tomcat and Java. I'm using Tomcat 3.3.2 and Java 1.4.2 under Linux. I have the following problem: I have an application that reads from a mysql database and an

Re: tomcat output gets mixed up for different requests

2004-07-09 Thread QM
On Fri, Jul 09, 2004 at 01:26:45PM +0200, Andr? Weidemann wrote: : My problem is that as soon as two clients are accessing the tomcat : server simultaniously, the output is sometimes split up between the : clients. In that case, one client lacks page content, which the other : one will receive

Re: tomcat output gets mixed up for different requests

2004-07-09 Thread Bill Barker
Are you using Tomcat standalone or mod_jk(2)? Which Connector are you using? There was a bug a long while back where mod_jk (and possibly mod_jk2) would cause something like this if you were accessing the site through a proxy server. André Weidemann [EMAIL PROTECTED] wrote in message news:[EMAIL