The ActivitySession service application programming interfaces
The ActivitySession service consists of an application programming interface available to Web applications, session EJBs, and J2EE client applications for application-managed demarcation of ActivitySession context.
Applications use the UserActivitySession interface, which provides demarcation scope methods.
ActivitySession API
The ActivitySession service provides the UserActivitySession interface for use by EJB Session beans using bean-managed context demarcation, Web application components configured with ActivitySession control=Web Application, and J2EE client applications. This UserActivitySession interface defines the set of ActivitySession operations available to an application component. An implementation of this interface is obtained via a JNDI lookup of the URL "java:comp/websphere/UserActivitySession". It is used to begin and end ActivitySessions and to query various attributes of the active ActivitySession associated with the thread.
For more information about the ActivitySession API, see WebSphere Application Server application programming interface reference information (Javadoc).
The ActivitySession API and the implementation of its interfaces is contained in the com.ibm.websphere.ActivitySession package.
Programming Examples
The following code extract provides a basic example of using the UserActivitySession interface
// Get initial context InitialContext ic = new InitialContext(); // Lookup UserActivitySession UserActivitySession uas = (UserActivitySession)ic.lookup("java:comp/websphere/UserActivitySession"); // Set the ActivitySession timeout to 60 seconds uas.setSessionTimeout(60); // Start a new ActivitySession context uas.beginSession(); // Do some work under this context MyBeanA beanA.doSomething(); ... MyBeanB beanB.doSomethingElse(); // End the context uas.endSession(EndModeCheckpoint);
See Also
The ActivitySession service
See Also
ActivitySessions samples