Re: web app to show session state for all server sessions

2005-11-30 Thread Tim Funk
If I had to do it - I would use MBeans. See the manager application and JMXProxy servlet in the manager application for details on querying jmx. There might be a gotcha. You might run into occasional ClassNotFound exceptions or similar when trying to display the value of the attributes in sess

web app to show session state for all server sessions

2005-11-29 Thread John MccLain
I want to write a webapp that, when a request is made, will display session state ( a display of attributes and values within a session) for all sessions running in a Tomcat server. I wish the display to be similar to the folowing: App session attribute = value My question