Sergio Arrighi wrote:
> Hello to everyone,
> 
> I've developed a webApp on tomcat 5.5.
> This webapp consists of a bunch of webservices that i've created using
> axis.
> Is there someone who could help me to understand how tomcat or axis
> handle the request queue??

Tomcat will assign a new requests to a free processing thread as the requests
are received. Those threads are then scheduled by the JVM. When the request
completes the thread is returned to the pool. If no thread is free the request
is queued until a free thread is available. If the queue is full the request is
dropped.

Mark

> Thank you very much
> 
> Sergio Arrighi
> 



---------------------------------------------------------------------
To unsubscribe, e-mail: users-unsubscr...@tomcat.apache.org
For additional commands, e-mail: users-h...@tomcat.apache.org

Reply via email to