Home > Articles > Programming > Java

Like this article? We recommend

Sharing Transactions

Transaction inflow serves the purpose of injecting transactions from an EIS into the J2EE world. These transactions are initiated by the EIS. If a message arrived from the EIS in a transaction, the J2EE application should import the transaction context and perform the business process on that message in the same transaction. In MoonTravel's use case, the FRS asks the RMS to act on the booking message before it confirms the parties involved. If the RMS is unable to update its database for some reason, the transaction can be rolled back and retried later. In other words, each transaction is shared between the EIS and the J2EE worlds.

Importing the Transactions

It's easy to understand the procedures involved in importing transactions from an EIS. This is the task list:

  1. The EIS creates a transaction.
  2. The EIS sends a message along with a transactional context to the resource adapter. The transactional context can be specific to the EIS.
  3. The resource adapter extracts the EIS-specific transactional context into a standard javax.transaction.xa.Xid.
  4. The resource adapter creates an ExecutionContext with Xid and probably with an attribute to indicate the transaction timeout.
  5. The resource adapter submits the Work instance, coupled with the newly created ExecutionContext, to the application server.
  6. The application server reads the message and understands that the work is to be performed in a transaction. It enlists the Work instance in this imported transaction.

Upon the return of the Work instance, the EIS can commit the transaction either in a one-phase (1PC) manner or a two-phase (2PC) manner, the fundamental difference being that the 1PC doesn't need to call prepare before committing.

Following are the steps in a 2PC transaction:

  1. The EIS sends a prepare message to the resource adapter for the given transaction.
  2. The resource adapter calls prepare on an XATerminator obtained from BootstrapContext with Xid. It returns the result of the prepare call.
  3. Depending on the result, the EIS sends a commit or a rollback to the resource adapter.
  4. The resource adapter performs the commit or rollback.

The EIS can coordinate transactions with the resource adapter in many ways. For example, the transactional context, along with completion and recovery calls, can be published via a common messaging scheme between the EIS and the resource adapter. In a simple implementation, a business message produced by the EIS may contain Xid transaction-timeout attributes as message headers or properties. The resource adapter understands how to retrieve the transactional context from these properties. When a transaction is prepared for completion, the EIS sends a prepare message and the commit message for committing the transaction.

Now that we've explored the theory, let's delve into implementation details.

The Resource Adapter

The MoonTravel developers built an FRSResourceAdapter that acts a bridge between the RMS and the FRS, as shown in Listing 1. This resource adapter is bound to the J2EE application server's address space and acts on behalf of the FRS. The major requirement is to import the transaction that has been initialized by the EIS.

Listing 1 FRSResourceAdapter.java

public class FRSResourceAdapter implements ResourceAdapter {
    private XATerminator _xaTerminator = null;
    private WorkManager _workManager = null;

    public void start(BootstrapContext ctx){
      // get a reference to XATerminator and WorkManager
      xaTerminator = ctx.getXATerminator();
      _workManager = ctx.getWorkManager();
      ....
    }

    public void endpointActivation(MessageEndpointFactory endpointFactory,
       ActivationSpec spec) throws ResourceException {

    try {
      // Create a worker and submit for execution
      FRSWork worker = new FRSWork(spec, endpointFactory, _workManager, _xaTerminator);

      // Now schedule this worker
      _workManager.scheduleWork(worker);

    } catch (UnavailableException e) { .. }
  }
   ...
}

References to WorkManager and XATerminator are provided by the application server via BootstrapContext during the start method invocation. These objects are used to submit the work instances and complete the imported transactions, respectively. The XATerminator methods are invoked by the resource adapter, depending on the transactional attributes obtained from the EIS messages.

The Work Instance

A Work object is essentially a thread managed by the application server. The FRSWork shown in Listing 2 is instantiated and submitted to the application server for execution during the endpointActivation call.

Listing 2 FRSWork.java

public void FRSWork extends javax.resource.spi.Work {
    ...

    public FRSWork(ActivationSpec spec, MessageEndpointFactory listener,
        WorkManager workManager) throws UnavailableException{
       // Hold these references for the lifetime
       _xaSpec = (FRSActivationSpec) spec;
       _endpointFactory = endpointFactory;
       _workManager = workManager;}
    }
    ...
public void run() {
    while(ok){
      // This recv method consumes the messages incessantly
      msg = connection.recv();
    // Do the processing if a message is received
    try {
    //Check what kind of message it is
    if (msg instanceof PrepareSignal) {
      // EIS making a prepare call
      System.out.println(" PrepareSignal message");
      PrepareSignal psMsg = (PrepareSignal)msg;

      // We should convert EIS call to
      // our XATerminator's call

      int XA_RESULT = _xaTerminator.prepare((Xid)psMsg.getObjectProperty(FRS_XID));

      // Now that we have the result of prepare, we have to notify
      // EIS by sending a message from our RA

      notifyPrepareResultToEIS(psMsg, XA_RESULT);
    } else if (msg instanceof CommitSignal) {
      // EIS making a commit call
      System.out.println(" Commit Signal message");

      // The Boolean argument stands for
      // one-phase or two-phase commit
      CommitSignal commitMsg = (CommitSignal)msg;
      _xaTerminator.commit((Xid) commitMsg.getObjectProperty(FRS_XID), false);
    } else if (msg instanceof FRSMessage){
      // Business message, possibly in a transaction
      FRSMessage frsMsg = (FRSMessage) msg;

      // Create ExecutionContext from EIS Message. We are
      // expecting a transaction Xid and timeout if this
      // work is to be performed under a transaction
      execCtx = createExecutionContext(frsMsg);

      // Schedule for work with this ExecutionContext
      _workManager.scheduleWork(new TxWork(_endpointFactory, frsMsg),
           WorkManager.IMMEDIATE, execCtx, null);
    }
    } catch (Exception e) { .. }
    ...
  }

Pay attention to the FRSWork object's run method. When the application server executes FRSWork, it calls the run method, which checks for a message from the EIS by calling the recv method on FRSConnection. The recv method works incessantly to retrieve any messages via the Connection interface. In our simple implementation, the EIS can produce three kinds of messages, as shown in the following table.

Message

Description

PrepareSignal

Indicates that the transaction(n) with the Xid is ready to prepare. Upon receiving this message, the resource adapter calls the prepare call on XATerminator.

CommitSignal

Indicates that the transaction(n) with the Xid is to be committed. The resource adapter will now commit the transaction using XATerminator.

FRSMessage

Business message with a transaction Xid. The EIS expects to execute the message under the given transaction.

The ExecutionContext Object

The ExecutionContext provides a context in which the Work instance is to be executed. The resource adapter creates the ExecutionContext by extracting the transaction information from the FRSMessage, as shown in Listing 3.

Listing 3 Creating an ExecutionContext

public ExecutionContext createExecutionContext(FRSMessage msg)
    throws JMSException, NotSupportedException {

    // Get Xid and transaction timeout from message
    // FRS_XID and FRS_TX_TIMEOUT are the properties
    // set on this message by EIS
    Xid xid = (Xid) msg.getObjectProperty("FRS_XID");
    long txTimeOut = msg.getLongProperty("FRS_TX_TIMEOUT");

    // Create an ExecutionContext object with these values
    ExecutionContext execCtx = new ExecutionContext();
    execCtx.setXid(xid);
    execCtx.setTransactionTimeout(10000);

    return execCtx;
}

Whenever a Work instance is executed by the application server, an optional ExecutionContext can be provided. By default, a null ExecutionContext is provided, which indicates that the Work is not in a transaction. The transactional work is performed in the TxWork object, as shown in Listing 4.

Listing 4 The TxWork run Method

public void run() {
    try {
      // Create an endpoint listener. You can implement a
      // sophisticated MDBs pool here. For example, before creating
      // an endpoint, check whether one is available. If not available,
      // check the pool to grab one, etc.

      _endpointListener = (FRSListener)_endpointFactory.createEndpoint(null);

      // Now that we have the EIS message,
      // process it under the transaction
      _endpointListener.onMessage(_frsMsg);
    } catch (UnavailableException e) {
    ... 
    }
    ...
}

All the work performed in this run method is executed under the imported EIS transaction. From here on, the usual J2EE transaction concepts apply.

Transaction Completion

The EIS must send prepare/commit messages depending on the one-phase or two-phase commit criteria. The resource adapter calls prepare on the XATerminator instance by passing the transaction's Xid when it receives a prepare call. The result of the prepare call is passed back to the EIS via the notifyPrepareResultToEIS method, as shown in Listing 5.

Listing 5 Notifying the Prepare Result to EIS

private void notifyPrepareResultToEIS(EISMessage psSignal, int xa_result) {
    // Logic to inform the EIS about the prepare call
    // This uses the outbound connectivity for connecting to the EIS

    FRSConnection connection = FRSConnectionFactory.createConnection();
    PrepareSignalResult PREPARE_MESSAGE = new PrepareSignalResult(psSignal, xa_result);
    connection.sendPrepareMessage(PREPARE_MESSAGE);
    }
}

To send the prepare outcome, the resource adapter should get a connection to post a message to the EIS's inbound channel.

Once the outcome of the prepare call is received, the EIS decides whether to commit or roll back the transaction. The procedure is the same as that for prepare:

  1. The EIS sends a commit/rollback message with a transaction Xid.
  2. The resource adapter calls commit/rollback on the XATerminator object.
  3. XATerminator commits/rolls back the transaction marked with the Xid.

InformIT Promotional Mailings & Special Offers

I would like to receive exclusive offers and hear about products from InformIT and its family of brands. I can unsubscribe at any time.

Overview


Pearson Education, Inc., 221 River Street, Hoboken, New Jersey 07030, (Pearson) presents this site to provide information about products and services that can be purchased through this site.

This privacy notice provides an overview of our commitment to privacy and describes how we collect, protect, use and share personal information collected through this site. Please note that other Pearson websites and online products and services have their own separate privacy policies.

Collection and Use of Information


To conduct business and deliver products and services, Pearson collects and uses personal information in several ways in connection with this site, including:

Questions and Inquiries

For inquiries and questions, we collect the inquiry or question, together with name, contact details (email address, phone number and mailing address) and any other additional information voluntarily submitted to us through a Contact Us form or an email. We use this information to address the inquiry and respond to the question.

Online Store

For orders and purchases placed through our online store on this site, we collect order details, name, institution name and address (if applicable), email address, phone number, shipping and billing addresses, credit/debit card information, shipping options and any instructions. We use this information to complete transactions, fulfill orders, communicate with individuals placing orders or visiting the online store, and for related purposes.

Surveys

Pearson may offer opportunities to provide feedback or participate in surveys, including surveys evaluating Pearson products, services or sites. Participation is voluntary. Pearson collects information requested in the survey questions and uses the information to evaluate, support, maintain and improve products, services or sites, develop new products and services, conduct educational research and for other purposes specified in the survey.

Contests and Drawings

Occasionally, we may sponsor a contest or drawing. Participation is optional. Pearson collects name, contact information and other information specified on the entry form for the contest or drawing to conduct the contest or drawing. Pearson may collect additional personal information from the winners of a contest or drawing in order to award the prize and for tax reporting purposes, as required by law.

Newsletters

If you have elected to receive email newsletters or promotional mailings and special offers but want to unsubscribe, simply email information@informit.com.

Service Announcements

On rare occasions it is necessary to send out a strictly service related announcement. For instance, if our service is temporarily suspended for maintenance we might send users an email. Generally, users may not opt-out of these communications, though they can deactivate their account information. However, these communications are not promotional in nature.

Customer Service

We communicate with users on a regular basis to provide requested services and in regard to issues relating to their account we reply via email or phone in accordance with the users' wishes when a user submits their information through our Contact Us form.

Other Collection and Use of Information


Application and System Logs

Pearson automatically collects log data to help ensure the delivery, availability and security of this site. Log data may include technical information about how a user or visitor connected to this site, such as browser type, type of computer/device, operating system, internet service provider and IP address. We use this information for support purposes and to monitor the health of the site, identify problems, improve service, detect unauthorized access and fraudulent activity, prevent and respond to security incidents and appropriately scale computing resources.

Web Analytics

Pearson may use third party web trend analytical services, including Google Analytics, to collect visitor information, such as IP addresses, browser types, referring pages, pages visited and time spent on a particular site. While these analytical services collect and report information on an anonymous basis, they may use cookies to gather web trend information. The information gathered may enable Pearson (but not the third party web trend services) to link information with application and system log data. Pearson uses this information for system administration and to identify problems, improve service, detect unauthorized access and fraudulent activity, prevent and respond to security incidents, appropriately scale computing resources and otherwise support and deliver this site and its services.

Cookies and Related Technologies

This site uses cookies and similar technologies to personalize content, measure traffic patterns, control security, track use and access of information on this site, and provide interest-based messages and advertising. Users can manage and block the use of cookies through their browser. Disabling or blocking certain cookies may limit the functionality of this site.

Do Not Track

This site currently does not respond to Do Not Track signals.

Security


Pearson uses appropriate physical, administrative and technical security measures to protect personal information from unauthorized access, use and disclosure.

Children


This site is not directed to children under the age of 13.

Marketing


Pearson may send or direct marketing communications to users, provided that

  • Pearson will not use personal information collected or processed as a K-12 school service provider for the purpose of directed or targeted advertising.
  • Such marketing is consistent with applicable law and Pearson's legal obligations.
  • Pearson will not knowingly direct or send marketing communications to an individual who has expressed a preference not to receive marketing.
  • Where required by applicable law, express or implied consent to marketing exists and has not been withdrawn.

Pearson may provide personal information to a third party service provider on a restricted basis to provide marketing solely on behalf of Pearson or an affiliate or customer for whom Pearson is a service provider. Marketing preferences may be changed at any time.

Correcting/Updating Personal Information


If a user's personally identifiable information changes (such as your postal address or email address), we provide a way to correct or update that user's personal data provided to us. This can be done on the Account page. If a user no longer desires our service and desires to delete his or her account, please contact us at customer-service@informit.com and we will process the deletion of a user's account.

Choice/Opt-out


Users can always make an informed choice as to whether they should proceed with certain services offered by InformIT. If you choose to remove yourself from our mailing list(s) simply visit the following page and uncheck any communication you no longer want to receive: www.informit.com/u.aspx.

Sale of Personal Information


Pearson does not rent or sell personal information in exchange for any payment of money.

While Pearson does not sell personal information, as defined in Nevada law, Nevada residents may email a request for no sale of their personal information to NevadaDesignatedRequest@pearson.com.

Supplemental Privacy Statement for California Residents


California residents should read our Supplemental privacy statement for California residents in conjunction with this Privacy Notice. The Supplemental privacy statement for California residents explains Pearson's commitment to comply with California law and applies to personal information of California residents collected in connection with this site and the Services.

Sharing and Disclosure


Pearson may disclose personal information, as follows:

  • As required by law.
  • With the consent of the individual (or their parent, if the individual is a minor)
  • In response to a subpoena, court order or legal process, to the extent permitted or required by law
  • To protect the security and safety of individuals, data, assets and systems, consistent with applicable law
  • In connection the sale, joint venture or other transfer of some or all of its company or assets, subject to the provisions of this Privacy Notice
  • To investigate or address actual or suspected fraud or other illegal activities
  • To exercise its legal rights, including enforcement of the Terms of Use for this site or another contract
  • To affiliated Pearson companies and other companies and organizations who perform work for Pearson and are obligated to protect the privacy of personal information consistent with this Privacy Notice
  • To a school, organization, company or government agency, where Pearson collects or processes the personal information in a school setting or on behalf of such organization, company or government agency.

Links


This web site contains links to other sites. Please be aware that we are not responsible for the privacy practices of such other sites. We encourage our users to be aware when they leave our site and to read the privacy statements of each and every web site that collects Personal Information. This privacy statement applies solely to information collected by this web site.

Requests and Contact


Please contact us about this Privacy Notice or if you have any requests or questions relating to the privacy of your personal information.

Changes to this Privacy Notice


We may revise this Privacy Notice through an updated posting. We will identify the effective date of the revision in the posting. Often, updates are made to provide greater clarity or to comply with changes in regulatory requirements. If the updates involve material changes to the collection, protection, use or disclosure of Personal Information, Pearson will provide notice of the change through a conspicuous notice on this site or other appropriate way. Continued use of the site after the effective date of a posted revision evidences acceptance. Please contact us if you have questions or concerns about the Privacy Notice or any objection to any revisions.

Last Update: November 17, 2020