> From: babji [mailto:[EMAIL PROTECTED] 
> Subject: info required about no of connections..
> 
> No my question is how many user can login and open session in 
> tomcat at a given point of time.

No limit, other than the max number of threads configured for the
connector.  See:
http://tomcat.apache.org/tomcat-5.5-doc/config/index.html
for details.

> second one is at a given point of time how many sessions can 
> access one servlet.

Sessions don't access servlets, threads do.  Multiple threads may be
processing requests under the same session simultaneously, so
synchronization is required where appropriate.

 - 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