sessionDataCursor

sessionDataCursor(cursor:            IOrbSessionCursor; 
                  sessionDataObject:  Any output): Boolean typeMethod;

The sessionDataCursor method of the Orb class retrieves the session data object associated with the session referenced by the cursor parameter.

The typical sessionData method retrieves the session data object of the current user session; that is, it can be called only during an active web request.

The sessionDataCursor method allows retrieving the session data associated with a session at any time, provided the underlying session still exists.

This method returns false if the cursor parameter references an invalid session, or the session data object associated with the session is invalid. Otherwise, the sessionDataObject parameter is set to a reference of the object that was associated with the session by the sessionStart method and this method returns true.