> From: Michael Pasko [mailto:[EMAIL PROTECTED] 
> Subject: Servlet Concurrency Issues
> 
> I started allowing other users on it, I stumbled on some problems.
> Basically what happens, when user A submits the form, and then 2 
> seconds later user B submits the same form.  User A stops getting 
> results, and User B receives the output for his request as well as
> the end of User A's request.

Probably not a configuration problem but rather implementation errors in
your servlet or some related object (such as the DB connection).
There's normally only one copy of the servlet object, and it will be
used concurrently by multiple threads.  Make sure you're not storing
request-specific information in there.

 - 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