Network Deployment (Distributed operating systems), v8.0 > Develop and deploying applications > Develop Transactions > Develop components to use transactions


Configure transactional deployment attributes

We can configure the transactional deployment descriptor attributes associated with an EJB or web module, to enable an enterprise application to use transactions. We must have an EAR file for an application component that can be deployed in the application server.

We can configure the deployment attributes of an application by using an assembly tool.

We can use Rational Application Developer, or an equivalent tool, to configure the deployment attributes of an application.

To use Rational Application Developer to set transactional attributes in the deployment descriptor for an application component (enterprise bean or servlet), complete the following steps.


Procedure

  1. Start the assembly tool. For more information, refer to the Rational Application Developer information.

  2. Create or edit the application EAR file. For example, to change attributes of an existing application, use the Import wizard to import the EAR file into the assembly tool.

    To start the Import wizard:

    1. Click File > Import > EAR file.

    2. Click Next, then select the EAR file.

    3. Click Finish.

  3. In the Project Explorer view of the Java EE perspective, right-click the component instance, then click Open With > Deployment Descriptor Editor .

    To locate the component instance, use the appropriate step:

    • For a session bean, expand EJB Modules > ejb_module_instance > Deployment Descriptor > Session Beans, then select the bean instance.

    • For a servlet, expand Web Modules > web_application > Deployment Descriptor > web component , then select the servlet instance.

    A property dialog notebook for the deployment descriptor of the component is displayed in the property pane.

  4. Optional: For session beans only, set the "Transaction type" attribute, which defines the transactional manner in which the container invokes a method. We can set this attribute to Container or Bean, as follows:

    • To use container-managed transactions, set the attribute to Container.

    • To use bean-managed transactions, set the attribute to Bean.

  5. In the deployment descriptor notebook, select the Bean tab. Optionally, in the WebSphere Extensions section, configure the Local Transaction attributes.

    To enable management of local transaction containments, configure the following component extensions attributes. These attributes configure, for the component, the behavior of the local transaction containment (LTC) environment that the container establishes whenever a global transaction is not present.

    Boundary

    This setting specifies the containment boundary at which all contained resource manager local transactions (RMLTs) must be completed. Possible values are BeanMethod or ActivitySession.

    • BeanMethod: This is the default value. If you select this option, RMLTs must be resolved within the same bean method in which they were started.
    • [For EJB components only] ActivitySession: RMLTs must be resolved within the scope of any ActivitySession in which they were started or, if no ActivitySession context is present, within the same bean method in which they were started.

      The ActivitySession option is not supported in the web container.

    Resolver

    This setting specifies the component responsible for initiating and ending RMLTs. Possible values are Application or ContainerAtBoundary.

    • Application: This is the default value. The application is responsible for starting RMLTs and for completing them within the local transaction containment (LTC) boundary. Any RMLTs that are not completed by the end of the LTC boundary are cleaned up by the container according to the value of the Unresolved action attribute.
    • ContainerAtBoundary: The container is responsible for starting RMLTs and for completing them within the LTC boundary. The container begins an RMLT when a connection is first used within the LTC scope, and completes it automatically at the end of the LTC scope. If Boundary is set to ActivitySession, the RMLTs are enlisted as ActivitySession resources and directed to complete by the ActivitySession. If Boundary is set to BeanMethod, the RMLTs are committed at the end of the method by the container.

    Unresolved action

    Direction that the container requests RMLTs to take, if those transactions are unresolved at the end of the LTC boundary scope and the Resolver is set to Application. Possible values are Rollback or Commit.

    • Rollback: This is the default value. At end of the LTC boundary scope, the container instructs all unresolved RMLTs to roll back.
    • Commit: At the end of the LTC boundary scope, the container instructs all unresolved RMLTs to commit. The container instructs the RMLTs to commit only in the absence of an un-handled exception. If the application method that is running in the local transaction context ends with an exception, any unresolved RMLTs are rolled back by the container. This is the same behavior as for global transactions.

    Shareable

    Whether the component can share an LTC. A new LTC is started only if a shareable LTC does not already exist. Applications that use shareable LTCs cannot explicitly commit or roll back resource manager connections that are used in a shareable LTC (although they can use connections that have an autoCommit capability).

    If an application starts any non-autocommit work in an LTC for which the Resolver attribute is set to Application, and the Shareable attribute is set to true, an exception is thrown at run time. For example, on a JDBC Connection, non-autocommit work is work that the application performs after using the setAutoCommit(false) method to switch off the autocommit option on the connection. Enterprise beans that use bean managed transactions (BMT) cannot be assembled with the Shareable attribute set on the LTC configuration.

    We must specify the Shareable attribute for all components that share the LTC. The component that creates the shareable LTC determines the other properties of the shared LTC, for example the value of the Resolver attribute.

  6. In the WebSphere Extensions section, configure the Global Transaction attributes. These attributes configure, for the component, behavior in the presence of a global transaction.

    Component Transaction Timeout

    For enterprise beans that use container-managed transactions only, specifies the transaction timeout, in seconds, for any new global transaction that the container starts on behalf of the enterprise bean. For transactions started on behalf of the component, the Component Transaction Timeout setting overrides the default total transaction lifetime timeout that is configured in the transaction service settings for the application server.

    The following attributes enable WS-AtomicTransaction and WS-BusinessActivity support for JAX-RPC applications only:

    Use Web Services Atomic Transaction

    For enterprise beans only, when this attribute is selected, if the application component makes any web service requests, any transaction context is propagated with the web service requests in accordance with the WebSphere WS-AtomicTransaction support described in Web Services Atomic Transaction support in the application server. When this attribute is not selected, web service requests do not carry transaction context.

    Send Web Services Atomic Transaction on requests

    For web components only, when this attribute is selected, if the application component makes any web service requests, any transaction context is propagated with the web service requests in accordance with the WebSphere WS-AtomicTransaction support described in Web Services Atomic Transaction support in the application server. When this attribute is not selected, web service requests do not carry transaction context.

    Execute using Web Services Atomic Transaction on incoming requests

    For web components only, when this attribute is selected, Web application components are prepared to run under a received WS-AtomicTransaction context. A web application component can run under a received WS-AtomicTransaction context in a similar way to an enterprise bean deployed with a container transaction type of Supports. When this attribute is not selected, the container of the web application component suspends any received transaction context, in a similar way to the behavior of an EJB container for an enterprise bean deployed with a container transaction type of NotSupported.

    If the application uses JAX-WS, enable support for WS-AtomicTransaction or WS-BusinessActivity by creating a policy set, adding the WS-Transaction policy type to the policy set, and attaching the policy set to the service or client.

    If a policy set that is attached to a client includes the WS-Transaction policy type, any active global transaction context is propagated with a Web service request, in a similar way to the deployment descriptors Use Web Services Atomic Transaction and Send Web Services Atomic Transaction on requests, described earlier in this topic. Also, when the WS-Transaction policy type is included, the service runs under any received WS-AtomicTransaction context, in a similar way to the deployment descriptor Execute using Web Services Atomic Transaction on incoming requests, described earlier in this topic.

  7. For EJB components only, for container-managed transactions, configure how the container manages the transaction boundaries when delegating a method invocation to the business method of an enterprise bean:

    1. In the deployment descriptor notebook, select the Assembly tab. The Container Transactions section displays a table of the methods for enterprise beans.

    2. For each method of the enterprise bean, set the container transaction type to an appropriate value. The default value for the container transaction type is Required, meaning that the method invocation occurs in the context of a transaction. This transaction is either the (local or remote) client component transaction or, if the client component does not run in a transaction, a new transaction started by the component container.

    If the application uses ActivitySessions, how the container manages transaction boundaries when delegating a method invocation depends on both the container transaction type that you set in this task, and the ActivitySession kind attribute, which is described in Set EJB module ActivitySession deployment attributes. For more detail about the relationship between these two properties, see ActivitySession and transaction container policies in combination.

  8. For web services applications that use a SOAP/JMS binding and participates in WS-AtomicTransactions, set the container transaction type of the message-driven bean named "JMS router MDB" to a value of NotSupported, as described in the previous step. Web service applications that use a SOAP/JMS binding include a router message-driven bean named "JMS router MDB" in the assembled EAR. If a web service uses a SOAP/JMS binding and participates in WS-AtomicTransactions, as described in Web Services Atomic Transaction support in the application server, set the container transaction type of the "JMS router MDB" to a value of NotSupported.

    For web services applications that use a SOAP/HTTP binding and participate in WS-AtomicTransactions, you do not have to do this.

  9. For client application components only, if required, enable support for transaction demarcation by the client. In the deployment descriptor notebook, select the Allow JTA demarcation check box. This option directs the client container to bind the Java Transaction API (JTA) UserTransaction interface into JNDI at java:comp/UserTransaction for the client component. There are constraints on transaction support in the client container, which are described in Client support for transactions.

  10. Save your changes to the deployment descriptor.

    1. Close the deployment descriptor editor.

    2. When prompted, click Yes to save changes to the deployment descriptor.

  11. Verify the archive files. For more information about verifying files by using Rational Application Developer, refer to the Rational Application Developer information.

  12. From the menu of the project, click Deploy to generate EJB deployment code.

  13. Optional: Test your completed module on an application server installation. Right-click a module, click Run on Server, and follow the instructions in the resulting wizard.

    Use the Run On Server option for unit testing only. The assembly tool controls the application server installation, and when an application is published remotely, the assembly tool overwrites the server configuration file for that server. Do not use the Run On Server option on production servers.


What to do next

After assembling the application, use a systems management tool, for example the administrative console, to deploy the EAR file onto the application server that is to run the application.
Assembly tools
Web Services Atomic Transaction support in the application server
Client support for transactions
Configure transaction properties for an application server
Deploy and administering enterprise applications
Create policy sets
Attach a policy set to a service artifact
Set EJB module ActivitySession deployment attributes
Develop components to use transactions
Assembling applications


Related


ActivitySession and transaction container policies in combination
Local transaction containment
Transaction service settings
Enterprise JavaBeans specification
WAS Development Best Practices for Performance and Scalability
Rational Application Developer documentation

+

Search Tips   |   Advanced Search