RE: [JBoss-user] User Monitoring

2002-11-08 Thread Luttrell, Peter
[mailto:[EMAIL PROTECTED]]Sent: Tuesday, November 05, 2002 12:14 AMTo: [EMAIL PROTECTED]Subject: RE: [JBoss-user] User Monitoring You make the custom solution sound way too hard! It is quite easy. You need 2 classes. 1 Class implementing HttpBindingListener called

RE: [JBoss-user] User Monitoring

2002-11-08 Thread Jason Westra
PROTECTED]'Subject: RE: [JBoss-user] User Monitoring This sounds interesting. Presumably I can get the UserPrincipal somehow right? Where do i get more info on HttpBindingListener? It doesn't appear to be a Jboss class, nor a j2ee class. Did you mean HttpSessionListener

RE: [JBoss-user] User Monitoring

2002-11-08 Thread Luttrell, Peter
;id=" + session.getId()); System.out.println( "AttributeNames:" ); Enumeration attributes = session.getAttributeNames(); while (attributes.hasMoreElements()){ System.out.println( "\t" + attributes.nextElement().toString() ); } } else { System.out.println( "get

RE: [JBoss-user] User Monitoring

2002-11-08 Thread Luttrell, Peter
Friday, November 08, 2002 6:18 PMTo: '[EMAIL PROTECTED]'Subject: RE: [JBoss-user] User Monitoring Ah, a part of the servlet api i haven't yet explored. I tried it and it didn't quite work. I wonder if i have it correct. Based on my sample code, when I first go to a page i see thi

Re: [JBoss-user] User Monitoring

2002-11-05 Thread Emerson Cargnin - SICREDI Serviços
or take a look at http://www.opensymphony.com/clickstream/ there's others framework's worth of using too... Greg Turner wrote: One option is to check out the for pay software, AppSure, from JBoss partner www.alignmentsoftware.com. I've seen a demo and its well worth consideration. Luttrell,

Re: [JBoss-user] User Monitoring

2002-11-04 Thread Greg Turner
One option is to check out the for pay software, AppSure, from JBoss partner www.alignmentsoftware.com. I've seen a demo and its well worth consideration. Luttrell, Peter wrote: My sysadmin has one large grip with JBoss: There is no way to tell who is using a webapp at a

RE: [JBoss-user] User Monitoring

2002-11-04 Thread Jason Westra
You make the custom solution sound way too hard! It is quite easy. You need 2 classes. 1 Class implementing HttpBindingListener called MonitoredUser.java 1 MBean called CurrentUsersMBean.java, which holds a list of MonitoredUser objects representing currently logged in users. When