----------------------------------------------------------------
BEFORE YOU POST, search the faq at <http://java.apache.org/faq/>
WHEN YOU POST, include all relevant version numbers, log files,
and configuration files.  Don't make us guess your problem!!!
----------------------------------------------------------------

Sorry if I'm saying stuff you already know but...

>> -- OK, my code is included. I don't use any threads in my code.

JServ is, itself, multi-threaded.  JServ loads a *single* instance of your
servlet.  Each request to your servlet it run on a new thread through that
single instance.  So although your app is not multi-threaded, it is running
in a m-t environment.  A good rule of thumb is: do not put member variables
in your servlet class.

Dan


--
--------------------------------------------------------------
Please read the FAQ! <http://java.apache.org/faq/>
To subscribe:        [EMAIL PROTECTED]
To unsubscribe:      [EMAIL PROTECTED]
Archives and Other:  <http://java.apache.org/main/mail.html>
Problems?:           [EMAIL PROTECTED]

Reply via email to