BEA Logo BEA WebLogic Enterprise Release 5.1

  Corporate Info  |  News  |  Solutions  |  Products  |  Partners  |  Services  |  Events  |  Download  |  How To Buy

 

   WebLogic Enterprise Doc Home   |   Creating CORBA Java Server Applications   |   Previous Topic   |   Next Topic   |   Contents   |   Index

Integrating Transactions into a Java Server Application

 

This chapter describes how to integrate transactions into a WebLogic Enterprise server application.

This topic includes the following sections:

 


Overview of Transactions in the WebLogic Enterprise System

The WebLogic Enterprise system provides transactions as a means to guarantee that database transactions are completed accurately and that they take on all the ACID properties (atomicity, consistency, isolation, and durability) of a high-performance transaction. That is, you have a requirement to perform multiple write operations on durable storage, and you must be guaranteed that the operations succeed; if any one of the operations fails, the entire set of operations is rolled back.

Transactions typically are appropriate in the situations described in the following list. Each situation encapsulates a transactional model supported by the WebLogic Enterprise system.

 


Integrating Transactions in a WebLogic Enterprise Client and Server Application

The WebLogic Enterprise system supports two transaction API models:

In this document, we refer generically to these mappings as the TransactionCurrent object. For specifics about org.omg.CosTransactions.Current and javax.transaction.UserTransaction, see the API Javadoc and the CORBA Java Programming Reference.

The WebLogic Enterprise system supports transactions in the following ways:

The following sections explain how you can use object activation policies and transaction policies to get the transactional behavior you want in your objects. Note that these policies apply to an interface and, therefore, to all operations on all objects implementing that interface.

Note: If a server application manages an object that you want to be able to participate in a transaction, the Server object for that application must invoke the com.beasys.Tobj.TP.open_xa_rm and com.beasys.Tobj.TP.close_xa_rm methods. For more information about database connections, see the section Opening an XA Resource Manager.

Making an Object Automatically Transactional

The WebLogic Enterprise system provides the always transactional policy, which you can define on an object's interface to have the WebLogic Enterprise system start a transaction automatically when that object is invoked and a transaction has not already been scoped. When an invocation on that object is completed, the WebLogic Enterprise system commits or rolls back the transaction automatically. Neither the server application, nor the object implementation, needs to invoke the TransactionCurrent object in this situation; the WebLogic Enterprise system automatically invokes the TransactionCurrent object on behalf of the server application.

Assigning the always transactional policy to an object's interface is appropriate when:

If you want an object to be automatically transactional, assign the following policies to that object's interface in the XML-based Server Description File:

Activation Policy

Transaction Policy

process, method, or transaction

always

Note: Database cursors cannot span transactions. For an example, see Creating C++ Server Applications.

Enabling an Object to Participate in a Transaction

If you want an object to be able to be invoked within the scope of a transaction, you can assign the optional transaction policies to that object's interface. The optional transaction policy may be appropriate for an object that does not perform any database write operations, but that you want to have the ability to be invoked during a transaction.

You can use the following policies, when they are specified in the XML-based Server Description File for that object's interface, to make an object optionally transactional:

Activation Policy

Transaction Policy

process, method, or transaction

optional

When the transaction policy is optional, if the AUTOTRAN parameter is enabled in the application's UBBCONFIG file, the implementation is transactional. Servers containing transactional objects must be configured within a group associated with an XA-compliant resource manager.

If the object does perform database write operations, and you want the object to be able to participate in a transaction, assigning the always transactional policy is generally a better choice. However, if you prefer, you can use the optional policy and encapsulate any write operations within invocations on the TransactionCurrent object. That is, within your operations that write data, scope a transaction around the write statements by invoking the TransactionCurrent object to, respectively, begin and commit or roll back the transaction, if the object is not already scoped within a transaction. This ensures that any database write operations are handled transactionally. This also introduces a performance efficiency: if the object is not invoked within the scope of a transaction, all the database read operations are nontransactional, and, therefore, more streamlined.

Note: Some XA resource managers used in the WebLogic Enterprise system require that any object participating in a transaction scope their database read operations, in addition to write operations, within a transaction. (However, you can still scope your own transactions.) For example, using the Oracle7 TMS with the WebLogic Enterprise system has this requirement. When choosing the transaction policies to assign to your objects, make sure you are familiar with the requirements of the XA resource manager you are using.

Preventing an Object from Being Invoked While a Transaction Is Scoped

In many cases, it may be critical to exclude an object from a transaction. If such an object is invoked during a transaction, the object returns an exception, which may cause the transaction to be rolled back. The WebLogic Enterprise system provides the never transaction policy, which you can assign to an object's interface to specifically prevent that object from being invoked within the course of a transaction.

This transaction policy is appropriate for objects that write durable state to disk that cannot be rolled back; for example, for an object that writes data to a disk that is not managed by an XA resource manager. Having this capability in your client/server application is crucial if the client application does not or cannot know if some of its invocations are causing a transaction to be scoped. Therefore, if a transaction is scoped, and an object with this policy is invoked, the transaction can be rolled back.

To prevent an object from being invoked while a transaction is scoped, assign the following policies to that object's interface in the XML-based Server Description File:

Activation Policy

Transaction Policy

process or method

never

Excluding an Object from an Ongoing Transaction

In some cases, it may be appropriate to permit an object to be invoked during the course of a transaction but also keep that object from being a part of the transaction. If such an object is invoked during a transaction, the transaction is automatically suspended. After the invocation on the object is completed, the transaction is automatically resumed. The WebLogic Enterprise system provides the ignore transaction policy for this purpose.

The ignore transaction policy may be appropriate for an object such as a factory that typically does not write data to disk. By excluding the factory from the transaction, the factory can be available to other client invocations during the course of a transaction. In addition, using this policy can introduce an efficiency into your server application because it minimizes the overhead of invoking objects transactionally.

To prevent any transaction from being propagated to an object, assign the following policies to that object's interface in the Server Description File:

Activation Policy

Transaction Policy

process or method

ignore

Assigning Policies

For information about how to create a Server Description File and specify policies on objects, see the section Step 5: Define the Object Activation and Transaction Policies.

Using an XA Resource Manager

The XA Bankapp sample application in the drive:\M3dir\samples\corba\bankapp_java\XA directory uses the Oracle7 Transaction Manager Server (TMS) as an example of a relational database management service (RDBMS). TMS handles object state data automatically. Using any XA resource manager imposes specific requirements on how different objects managed by the server application may read and write data to that database, including the following:

Opening an XA Resource Manager

If an object's interface has the always or optional transaction policy, you must invoke the com.beasys.Tobj.TP.open_xa_rm method in the com.beasys.Tobj.Server.initialize method in the Server object that supports this object. You must build a special version of the JavaServer by using the buildXAJS command, if your object performs database operations.

In the SERVERS section of the application's UBBCONFIG file, you must use the JavaServerXA element in place of JavaServer to associate the XA resource manager with a specified server group. (JavaServer uses the null RM.)

The resource manager is opened using the information provided in the OPENINFO parameter, which is in the GROUPS section of the UBBCONFIG file. Note that the default version of the com.beasys.Tobj.Server.initialize method automatically opens the resource manager.

If you have an object that participates in a transaction but does not actually perform database operations (the object typically has the optional transaction policy), you still need to include an invocation to the com.beasys.Tobj.TP.open_xa_rm method.

Closing an XA Resource Manager

If your Server object's com.beasys.Tobj.Server.initialize method opens an XA resource manager, you must include the following invocation in the com.beasys.Tobj.Server.release method:

com.beasys.Tobj.TP.close_xa_rm();

 


Transactions and Object State Management

If you need transactions in your WebLogic Enterprise client and server application, you can integrate transactions with object state management in a few different ways. In general, the WebLogic Enterprise system can automatically scope the transaction for the duration of an operation invocation without requiring you to make any changes to your application's logic or the way in which the object writes durable state to disk.

The following sections address some key points regarding transactions and object state management.

Delegating Object State Management to an XA Resource Manager

Using an XA resource manager, such as Oracle7, generally simplifies the design problems associated with handling object state data in the event of a rollback. Transactional objects can always delegate the commit and rollback responsibilities to the XA resource manager, which greatly eases the task of implementing a server application. This means that process- or method-bound objects involved in a transaction can write to a database during transactions, and can depend on the resource manager to undo any data written to the database in the event of a transaction rollback.

Waiting Until Transaction Work Is Complete Before Writing to the Database

The transaction activation policy is a good choice for objects that maintain state in memory that you do not want written, or that cannot be written, to disk until the transaction work is complete. When you assign the transaction activation policy to an object, the object:

When the transaction work is complete, the WebLogic Enterprise system invokes each transaction-bound object's com.beasys.Tobj_Servant.deactivate_object method, passing a reason code that can be either DR_TRANS_COMMITTING or DR_TRANS_ABORTED. If the variable is DR_TRANS_COMMITTING, the object can invoke its database write operations. If the variable is DR_TRANS_ABORTED, the object skips its write operations.

Assigning the transaction activation policy to an object may be appropriate in the following situations:

To give an object the ability to wait until the transaction is committing before writing to a database, assign the following policies to that object's interface in the XML-based Server Description File:

Activation Policy

Transaction Policy

transaction

always or optional

Note: Transaction-bound objects cannot start a transaction or invoke other objects from inside the com.beasys.Tobj_Servant.deactivate_object method. The only valid invocations transaction-bound objects can make inside the deactivate_object method are write operations to the database.

Also, if you have an object that is involved in a transaction, the Server object that manages that object must include invocations to open and close the XA resource manager, even if the object does not write any data to disk. For more information about opening and closing an XA resource manager, see the sections Opening an XA Resource Manager and Closing an XA Resource Manager.

 


Notes on Using Transactions in the WebLogic Enterprise System

Note the following about integrating transactions into your WebLogic Enterprise client/server applications: