Hi, is there a way to see all active sessions to get informations about who is currently logged in and what the user is doing? Thanks, Marcus
In Zope, sessions are not related to authentication information in any way whatsoever, but if you really do want to get information about all sessions, you can do this by doing something like (in a Python script): tdc = context.temp_folder.session_data for item in tdc.items(): # item is now a session data object, get the information from it you need - C ----- Original Message ----- From: "Marcus Bergmann" <marcus.bergmann@isst.fhg.de> To: <zope@zope.org> Sent: Tuesday, March 05, 2002 1:30 PM Subject: [Zope] view active sessions
Hi,
is there a way to see all active sessions to get informations about who is currently logged in and what the user is doing?
Thanks, Marcus
_______________________________________________ Zope maillist - Zope@zope.org http://lists.zope.org/mailman/listinfo/zope ** No cross posts or HTML encoding! ** (Related lists - http://lists.zope.org/mailman/listinfo/zope-announce http://lists.zope.org/mailman/listinfo/zope-dev )
participants (2)
-
Chris McDonough -
Marcus Bergmann