> 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 variables, not instance or static fields, within the servlet.  
If you need to save some persistent information, the session is frequently the right 
place to put it.

 - Chuck


THIS COMMUNICATION MAY CONTAIN CONFIDENTIAL AND/OR OTHERWISE PROPRIETARY MATERIAL and 
is thus for use only by the intended recipient. If you received this in error, please 
contact the sender and delete the e-mail and its attachments from all computers.

---------------------------------------------------------------------
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]

Reply via email to