RE: [JBoss-user] List of active users logged in thru JAAS

2003-01-13 Thread Luttrell, Peter
Scott, could you point us at the documentation for this new feature? thanks. .peter -Original Message- From: Scott M Stark [mailto:[EMAIL PROTECTED]] Sent: Friday, January 10, 2003 5:17 PM To: [EMAIL PROTECTED] Subject: Re: [JBoss-user] List of active users logged in thru JAAS Its been

Re: [JBoss-user] List of active users logged in thru JAAS

2003-01-10 Thread Scott M Stark
mailto:[EMAIL PROTECTED]] Sent: Thursday, January 09, 2003 9:12 AM To: [EMAIL PROTECTED] Subject: RE: [JBoss-user] List of active users logged in thru JAAS We use a combination of a filter and a HttpSessionListener to achieve something like this (we do not store the list of currently stored users

Re: [JBoss-user] List of active users logged in thru JAAS

2003-01-09 Thread Meyer-Willner, Bernhard
eff: RE: [JBoss-user] List of active users logged in thru JAAS Meyer-Willner, Bernhard wrote: > Are there any other ways to get a list of active > users from the JAAS LoginContext? Why not create the list yourself as users log in? Benjamin --

RE: [JBoss-user] List of active users logged in thru JAAS

2003-01-09 Thread Geer, Benjamin
Meyer-Willner, Bernhard wrote: > Are there any other ways to get a list of active > users from the JAAS LoginContext? Why not create the list yourself as users log in? Benjamin --- This SF.NET email is sponsored by: SourceForge Enterprise Ed

Re: [JBoss-user] List of active users logged in thru JAAS

2003-01-09 Thread Scott M Stark
AIL PROTECTED]> To: <[EMAIL PROTECTED]> Sent: Thursday, January 09, 2003 9:02 AM Subject: Re: [JBoss-user] List of active users logged in thru JAAS Thanks for your two solutions, you guys. Unfortunately I don't have a web layer, but instead a Swing GUI based app talking directly to

Re: [JBoss-user] List of active users logged in thru JAAS

2003-01-09 Thread Meyer-Willner, Bernhard
users from the JAAS LoginContext? Cheers, Bernhard -Ursprüngliche Nachricht- Von: Luttrell, Peter [mailto:[EMAIL PROTECTED]] Gesendet: Donnerstag, 9. Januar 2003 17:45 An: '[EMAIL PROTECTED]' Betreff: RE: [JBoss-user] List of active users logged in thru JAAS I've done a ver

RE: [JBoss-user] List of active users logged in thru JAAS

2003-01-09 Thread Luttrell, Peter
PROTECTED]] Sent: Thursday, January 09, 2003 9:12 AM To: [EMAIL PROTECTED] Subject: RE: [JBoss-user] List of active users logged in thru JAAS We use a combination of a filter and a HttpSessionListener to achieve something like this (we do not store the list of currently stored users in a db). Th

RE: [JBoss-user] List of active users logged in thru JAAS

2003-01-09 Thread Krishnakumar N
We use a combination of a filter and a HttpSessionListener to achieve something like this (we do not store the list of currently stored users in a db). The filter checks whether the current user is logged in and if yes, adds the user id to a application context hashtable. The same hashtable is used