> From: Bob Riaz [mailto:[EMAIL PROTECTED] 
> Subject: Request parameters incorrect
> 
> The parameters we find in this string come from 3 
> different pages! We're baffled!!

This is pretty much always a problem with incorrect scoping or
synchronization in the webapp.  For example, code processing a Request
stores request-specific data into the Session or Servlet object, then
comes back later to find that a different concurrent request has
overwritten it.  Or, two request processing threads are accessing a
Session field via some method that isn't synchronized appropriately.

 - 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 start a new topic, e-mail: users@tomcat.apache.org
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]

Reply via email to