Retrieve List of logged in users

0
Hey I am wondering if there is a way to retrieve a list of accounts that are currently logged in?
asked
1 answers
1

If you use the option to use Persistent Sessions (see here), you should be able to view the users on the ActiveSessions form which you can find in the Administration module. I'm uncertain if this works correctly, if it doesn't you should file a bug report.

Alternatively, you can create such a list in Java, using the Core.getActiveSessions(), session.getUser() and user.getName() methods.

answered