Re: Getting detailed list of active sessions for a Context

2010-12-22 Thread Jean-Noël Colin
Many thanks Konstantin. I'll look into the Valve idea Cheers Jean-Noël On 22 Dec 2010, at 12:23, Konstantin Kolinko wrote: > 2010/12/22 Jean-Noël Colin : >> >> I also tried casting the HttpSession retrieved in the HttpSessionListener, >> without success. > > That would be StandardSessionFaca

Re: Getting detailed list of active sessions for a Context

2010-12-22 Thread Konstantin Kolinko
2010/12/22 Jean-Noël Colin : > > I also tried casting the HttpSession retrieved in the HttpSessionListener, > without success. That would be StandardSessionFacade, not a StandardSession. > Would you have any further suggestion? The manager webapp (aka HTMLManagerServlet) uses JMX. You may try u

Re: Getting detailed list of active sessions for a Context

2010-12-22 Thread Jean-Noël Colin
Hi Thanks for the feedback; actually, jsp or servlet is not really the point, since I'm using icefaces anyway. So it seems that I can't get access to the list of sessions connected to my webapp, except the limited information provided by HttpSession? Cheers Jean-Noël On 22 Dec 2010, at 10:19

Re: Getting detailed list of active sessions for a Context

2010-12-22 Thread Pid *
On 22 Dec 2010, at 08:49, "Jean-Noël Colin" wrote: > Hi, > > I'm developing a webapp and I would like to be able to display the list of > active sessions for that specific webapp, in a specific page, and I'd like to > get a detailed view: Session Id, Creation time, last activity, IP address, >

Getting detailed list of active sessions for a Context

2010-12-22 Thread Jean-Noël Colin
Hi, I'm developing a webapp and I would like to be able to display the list of active sessions for that specific webapp, in a specific page, and I'd like to get a detailed view: Session Id, Creation time, last activity, IP address, username (in case he's authenticated) I searched forums and th