| Author |
to know the no of client requesting
|
sanjeev mohanty
Greenhorn
Joined: Aug 29, 2006
Posts: 3
|
|
|
how to know how many clients are requesting to the server?
|
 |
Bear Bibeault
Author and ninkuma
Marshal
Joined: Jan 10, 2002
Posts: 56540
|
|
That's pretty vague. Care to elaborate? [ November 06, 2006: Message edited by: Bear Bibeault ]
|
[Smart Questions] [JSP FAQ] [Books by Bear] [Bear's FrontMan] [About Bear]
|
 |
lin yic
Greenhorn
Joined: Nov 06, 2006
Posts: 11
|
|
|
maybe you can use the listener of the servlet to calculate the no of request.
|
 |
Cameron Wallace McKenzie
author and cow tipper
Saloon Keeper
Joined: Aug 26, 2006
Posts: 4967
|
|
You can always add one of these to your website: Java Ranch Statistics Cheers! -Cameron McKenzie
|
Author of Hibernate Made Easy, What is WebSphere???, JSF 2.0 Made Easy and the SCJA Certification Guides
|
 |
Rahul Bhattacharjee
Ranch Hand
Joined: Nov 29, 2005
Posts: 2300
|
|
The HTTP requests from the clients at server are intercepted by the HTTP listners and then sent for further request processing.You can write your own HTTP listner and install at tomcat (defualt is coyote listner). Note this answer is specific to tomcat and if you can change the tomcat settings.
|
Rahul Bhattacharjee
LinkedIn - Blog
|
 |
 |
|
|
subject: to know the no of client requesting
|
|
|