Operating Systems: i5/OS
             Personalize the table of contents and search results

 

Use the ActivitySession service

 

This topic is an overview of the tasks involved in implementing WebSphere enterprise applications that use ActivitySessions.

 

Overview

The ActivitySession service provides an alternative unit-of-work scope to the scope that is provided by global transaction contexts. ActivitySessions provide a scoping mechanism for units of work, and both an ActivitySession and a transaction have the same following characteristics:

An ActivitySession differs significantly from a transaction in the manner of its interaction with resource managers. An ActivitySession is used to scope or coordinate local transactions. That is, an ActivitySession can be used to request multiple one-phase resource managers to come to an application- or container-determined outcome. Unlike a transaction, an ActivitySession has no notion of a prepare phase or any notion of recovery at a service level.

The WebSphere EJB container and deployment tools support ActivitySessions as an extension to the J2EE programming model. Enterprise beans can be deployed with lifecycles that are influenced by ActivitySession context, as an alternative to transaction context. An enterprise bean with an ActivitySession-scoped lifecycle can participate in a resource manager local transaction (RMLT) that has a duration of the ActivitySession rather than an individual method on the bean (which is all that is possible under the standard J2EE model). Applications can then be composed of several enterprise beans with ActivitySession-based activation, with each bean participating in extended local transactions with one or more resource managers. At the end of the ActivitySession each of the local transactions can be directed to a common outcome by the ActivitySession manager.

You can configure the WebSphere containers and deployable applications to support enterprise beans that operate under application- or container-initiated ActivitySessions rather than, or in addition to, transactions.

Use these tasks to implement WebSphere enterprise applications that use ActivitySessions:

 

Procedure




}
Developing a J2EE application to use ActivitySessions

Developing an enterprise bean or J2EE client to manage ActivitySessions

Setting EJB module ActivitySession deployment attributes

Disabling or enabling the ActivitySession service

Configuring the default ActivitySession timeout for an application server

The ActivitySession service

Setting Web module ActivitySession deployment attributes

Troubleshooting ActivitySessions

ActivitySession service application programming interfaces

Samples: ActivitySessions

ActivitySession service: Resources for learning