Rachid, If your application uses HttpSessions, then you can use the java.servlet.http.HttpSessionListener class to monitor the creation and destruction of HttpSessions. You need to configure the class that implements HttpSessionListener in the deployment descriptor of your web application.
ex. <listener> <listener-class>yourPackage.yourListener</listener-class> </listener> Regards, Richard -----Original Message----- From: Rachid Drissi [mailto:[EMAIL PROTECTED] Sent: Thursday, August 21, 2003 4:21 PM To: [EMAIL PROTECTED] Subject: how many concurent users on the system Hi All, anybody knows by chance a program(s) that would show us (statistics) how many concurent users are on the application at certain point of time.... Thanks, Rachid. --------------------------------------------------------------------- To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PROTECTED]

