I'm writing an application where I want to track and display active users (users that are logged in).
My though is to be able to do this by using the HttpSessionListener or any other of the Listener interfaces (if needed)
from the servlet API.
I've written a piece of code that counts number of users online using the HttpSessionListener interface.
This works fine for me, however I've got the problem in how to get the username from my j_username FORM authentication
(using Tomcat 4.x). My intention is to add each user to an array or map, but I want my implementation of the listeners to do
the job.
Many Thanks
Erik
My though is to be able to do this by using the HttpSessionListener or any other of the Listener interfaces (if needed)
from the servlet API.
I've written a piece of code that counts number of users online using the HttpSessionListener interface.
This works fine for me, however I've got the problem in how to get the username from my j_username FORM authentication
(using Tomcat 4.x). My intention is to add each user to an array or map, but I want my implementation of the listeners to do
the job.
Many Thanks
Erik