java web application connected users

  • Thread starter Henry Cabot Enaus III
  • Start date
H

Henry Cabot Enaus III

Hi all,
how can I list all users logged in a web application?

I have a web app running under tomcat,
user log in with a basic authentication.

I would like to write a servlet that show
all the active connection and relative usernames.

It's possible?

thank you
 
E

Enrique

Hi all,
how can I list all users logged in a web application?

I have a web app running under tomcat,
user log in with a basic authentication.

I would like to write a servlet that show
all the active connection and relative usernames.

It's possible?

thank you

Just a guess, but I think basic authentication is partially
implemented by the operating system. So perhaps you could write
software that will invoke system calls that return the number of
active users.

The challenge that I can see is that http session are basically
anonymous, so I can't think of a way to associate a username with a
particuar http session.

I am curious to see if anyone elese can respond to your questions.
 
H

Henry Cabot Enaus III

I guess you right,
now I'm trying to implements somenthing with HttpSessionListner,
unfortunly this listener cannot be associated with "request" object ... :-(
So I could count them but not get usernames.

Another way is to implements HttpSessionBindingListener,
I read something about it in java.sun forums,
All I got is an error from tomcat 5 :-(
a strange error, the manager deploy the web application
but it could not start it the reason is "context previous error",
or something like this...

All I could wonder now is to redirect all the new session
to a servlet that update a DB table... a great classic :)
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Members online

No members online now.

Forum statistics

Threads
473,769
Messages
2,569,580
Members
45,055
Latest member
SlimSparkKetoACVReview

Latest Threads

Top