Webaction : how to access to all ongoing web sessions ?

"RATTIER Jacques RD-MAPS-ISS" <[email protected]> Fri, 29 Apr 2005 17:20:50 +0200
Newsgroups gmane.lisp.open-source.franz
Message-ID <429B23056C84A54BBE91FE41452E17D2026B5A72@FTRDMEL2.rd.francetelecom.fr>
Hello,
Is it possible with Webaction to get access to all ongoing web sessions
?

Example :
 
I store the name of a connected user with 
(setf (websession-variable session "name") "Brown")

I want to print print the name of all connected users
(dolist (session *???*)
  (format t "~A" (websession-variable session "name"))
  )

Thank you for possible advise


Jacques