Session object

6
How can I retrieve the current session?
asked
1 answers
6

You can use XPath:

//System.Session[Session_User = '[%CurrentUser%]

Or Java:

this.getContext().getSession()
answered