Programming WebLogic Enterprise JavaBeans

      

Message-Driven EJBs

The following sections describe the message-driven bean (MDB) life cycle, design considerations, and instructions for key implementation tasks. For a description of the overall EJB development process, see Implementing Enterprise Java Beans.

For an introduction to MDBs and how they are typically used in applications, see Message-Driven Beans Implement Loosely Coupled Business Logic and Message-Driven Bean Features. For information about WebLogic JMS, see Programming WebLogic JMS. For information on tuning MDBs, see “Tuning Message-Driven Beans” in Performance and Tuning.

 


Message-Driven EJB Life Cycle and the Free Pool

This section describes the phases in the life cycle of a message-driven bean instance and how you can configure an MDB to control the life cycle. Figure 7-1 illustrates the key events and states in the MDB life cycle. Figure 7-1 MDB Life Cycle

MDB Life Cycle

 

MDBs and the Free Pool

WebLogic Server maintains a free pool where MDB instances that are not currently servicing requests reside. For best response time and throughput, you can configure WebLogic Server to populate the pool at startup by specifying the desired quantity in the bean's initial-beans-in-free-pool element in weblogic-ejb-jar.xml. By default, initial-beans-in-free-pool is 0.

Administrators can initialize the free pool in demand via the Administration Console. For information, see “Initialize the idle bean cache and pool of an EJB” in Administration Console Online Help.

The number of MDB instances in the free pool is limited by the value of the max-beans-in-free-pool element in weblogic-ejb-jar.xml and available memory. The value of max-beans-in-free-pool is determined by the following rules, in order of precedence:

  1. If a custom ExecuteThreadPool is defined, the number of MDB threads is the same as the value of ExecuteThreadCount.

  2. If a custom WorkManager with max-threads-constraint is defined, then the number of MDB threads is identical to the value of max-threads-constraint.

  3. If the autotune option is disabled, then the number of MDB threads is equal to following:

    (ExecuteThreadCount / 2) + 1

  4. The number of MDB threads is equal to 16 (this is the default value).

For backward compatibility, it is possible to use the execute queue-style thread management available in WebLogic Server, version 8.1. In this context, the effect that thread pool size has on the maximum number of MDB instances in the free pool varies, based on whether the MDB uses the default execute queue, or is configured to use another execute queue.

You can configure WebLogic Server to remove message-driven beans that have remained in the pool unused for a period of time specified in idle-timeout-seconds element in the pool element. When beans have been in the pool unused for the amount of time you specify in idle-timeout-seconds, they are removed from the pool until the number of beans in the pool reaches the number specified in initial-beans-in-free-pool; the number of beans in the pool will never fall below the number specified in initial-beans-in-free-pool.

An MDB processes messages from a JMS destination. When a message is received, the EJB container calls the MDB's onMessage() method, which contains the business logic the EJB performs. When an MDB's onMessage() method is invoked:

After an MDB instance's onMessage() method returns, the request is complete, and the instance it is placed in the free pool for re-use, assuming that doing so does not cause max-beans-in-free-pool to be exceeded.

 

MDBs and Concurrent Processing

MDBs support concurrent processing for both topics and queues. For more information about topics and queues, see MDBs and Messaging Models.

The default setting for the max-beans-in-free-pool element in weblogic-ejb-jar.xml—1,000—provides the most parallelism. The only reason to change this setting would be to limit the number of parallel consumers.

Each MDB that is deployed to a server instance creates a single JMS connection.

In a queue-based JMS application (point-to-point model), each MDB instance has its own session.

In a topic-based JMS application (the publish/subscribe model), all local instances of an MDB share a JMS session. A given message is distributed to multiple MDBs—one copy to each subscribing MDB. If multiple MDBs are deployed to listen on the same topic, then each MDB receives a copy of every message. A message is processed by one instance of each MDB that listens to the topic.

 


MDBs and Messaging Models

WebLogic Server MDBs can be used in either a point-to-point (queue) or publish/subscribe (topic) messaging model. These models are described in detail in “Understanding WebLogic JMS” in Programming WebLogic JMS.

The following sections describe the key differences between point-to-point and publish/subscribe messaging applications.

 

Point-to-Point (Queue) Model: One Message Per Listener

In the point-to-point model, a message from a JMS queue is picked up by one MDB listener and stays in the queue until processed. If the MDB goes down, the message remains in the queue, waiting for the MDB to come up again.

Example: A department must update its back-end inventory system to reflect items sold throughout the day. Each message that decrements inventory must be processed once, and only once. It is not necessary for messages to be processed immediately upon generation or in any particular order, but it is critical that each message be processed.

Figure 7-2 illustrates a point-to-point application. Each message is processed by single instance of MDB_A. Message “M1” is processed by MDB_A(1), “M2” is processed by MDB_A(2), and “M3” is processed by MDB_A(3). Figure 7-2 Point-to-Point Model

Point-to-Point Model

 

Publish/Subscribe (Topic) Model

In the publish/subscribe model, a JMS topic publishes all messages to all subscribed listeners. If an MDB listener goes down, that MDB will miss the message, unless the topic is a durable subscription topic.

For more information on durable subscriptions and for configuration instructions, see “Setting Up Durable Subscriptions” in Programming WebLogic JMS and Configuring Durable Topic Subscriptions.

Example: A financial news service broadcasts stock prices and financial stories to subscribers, such as news wire services. Each message is distributed to each subscriber.

Figure 7-3 illustrates a publish/subscribe application. In contrast to a point-to-point application, in a publish/subscribe model, a message is processed by one instance of each of the subscribing MDBs. Message “M1” is processed by an instance of MDB_A and an instance of MDB_B. Similarly, “M2” is processed by an instance of each of the subscribing MDBs. Figure 7-3 Publish/Subscribe Model

 

Exactly-Once Processing

An MDB pool processes each message at least once. Potentially, a message can be processed more than once:

To ensure that a message is processed exactly once, use container-managed transactions so that failures cause transactional MDB work to rollback and force the message to be redelivered.

 


JCA-Based MDBs

The J2EE 1.4 specification defines interfaces that allow MDBs to receive messages from JCA 1.5 compliant adapters. Additionally, the J2EE 1.4 specification requires that JCA-based MDBs support endpoint development, message delivery, and endpoint undeployment. this release of WebLogic Server meets these requirements as defined in the specification.

To configure an MDB to use JCA, set the resource-adapter-jndi-name deployment descriptor.

For more information, see the J2EE 1.4 specification and resource-adapter-jndi-name.

 


MDB Deployment Options

This section describes various approaches for deploying MDBs and the JMS destination to which the MDBs listen.

 

Destination and MDBs: Collocated vs. Not Collocated

You can deploy an MDB on the same server instance as the JMS destination to which it listens, or on a separate server instance. These alternatives are referred to as collocation or non-collocation, respectively.

Collocated Destination/MDBs

Collocating an MDB with the destination to which it listens keeps message traffic local and avoids network round trips. Collocation is the best choice if you use WebLogic Server JMS and want to minimize message processing latency and network traffic.

You cannot collocate the MDB and the JMS destination if you use a third-party JMS provider that cannot run on WebLogic Server, such as MQ Series.

Figure 7-4 and Figure 7-5 illustrate architectures in which the MDB application is deployed to the server instance that hosts the associated JMS destination. These architectures vary in that the first has a distributed destination and the second does not. In an application that uses distributed destinations, the MDB is deployed to each server instance that hosts a member of the distributed destination set. For more information about distributed destinations, see JMS Distributed Destinations. As illustrated in Figure 7-4 the message “M1” is delivered to an instance of MDB_A on each server instance where a distributed destination and MDB_A are deployed. Figure 7-4 Collocated Destination/MDBs, Distributed Destination

Collocated Destination/MDBs, Distributed Destination

Figure 7-5 Collocated Destination/MDBs, Non-Distributed Destination

Collocated Destination/MDBs, Non-Distributed Destination

Non-Collocated Destination/MDBs

Figure 7-6 illustrates an architecture in which an MDB runs on a separate server instance than the JMS Destination to which the MDB listens. Figure 7-6 Non-Collocated Application, Non-Distributed Destination

Non-Collocated Application, Non-Distributed Destination

Running your MDBs on a separate server instance from the JMS Destination to which the MDB listens is suitable if:

The JMS destination and MDBs could also be deployed on non-clustered servers, servers within the same cluster, or to servers in separate clusters.

 

JMS Distributed Destinations

If your MDB application runs on a WebLogic Server cluster, you can configure multiple physical destinations (queues or topics) as a distributed destination, which appears to message producers and consumers to be a single destination.

If you configure a distributed destination, WebLogic JMS distributes the messaging load across available members of the distributed destination. If a member of the destination becomes unavailable due to a server failure, message traffic is re-directed to the other available physical destinations in the distributed destination set. You control whether an MDB that accesses a WebLogic distributed queue in the same cluster consumes from all distributed destination members or only those memebers local to the current WebLogic Server using the distributed-destination-connection element in the weblogic-ejb-jar.xml file.

If you deploy an MDB and the associated distributed destination to the same cluster, WebLogic Server automatically enumerates the distributed destination members and ensures that there is an MDB listening on each member.

The MDBs are homogeneously deployed to each clustered server instance. Messages are distributed across the physical destinations on the multiple server instances, and are processed in parallel. If one server instance goes down, other nodes in the cluster can continue to process messages. This architecture is a good choice if:

For an example, see Figure 7-4. For additional information about distributed destinations, see “Using Distributed Destinations” in Programming WebLogic JMS.

 


Programming and Configuring MDBs: Main Steps

This section provides step-by-step instructions for implementing an MDB.

For a summary of key deployment elements for MDBs, see Nutshell Summary: Deployment Elements for MDBs.

 

Required JMS Configuration

The steps in the following section assume that you have created the appropriate JMS components:

If your JMS provider is a remote WebLogic Server JMS provider or a foreign JMS provider, and you use the wrapper approach recommended in Whether to Use Wrappers, in addition to configuring the non-local JMS components, also configure a Foreign Connection Factory and Foreign JMS Destination in your local JNDI tree.

 

Create MDB Class and Configure Deployment Elements

Follow these steps to implement a message-driven bean:

  1. Create a source file (message-driven bean class) that implements both the javax.ejb.MessageDrivenBean and javax.jms.MessageListener interfaces.

    The MDB class must define the following methods:

    • One ejbCreate() method that the container uses to create an instance of the message-driven bean in the free pool.

    • One onMessage() method that is called by the EJB container when a message is received. This method contains the business logic that processes the message.

    • One setMessageDrivenContext{} method that provides information to the bean instance about its environment (certain deployment descriptor values); the MDB also uses the context to access container services. See Using the Message-Driven Bean Context.

    • One ejbRemove() method that removes the message-driven bean instance from the free pool.

  2. Declare the MDB in ejb-jar.xml, as illustrated in the excerpt below:

    <ejb-jar>
    <enterprise-beans>
    <message-driven>
    <ejb-name>,,,</ejb-name>
    <ejb-class>...</ejb-class>
    <transaction-type>Container</transaction-type>
    <acknowledge-mode>auto_acknowledge</acknowledge-mode>
    <message-driven-destination>
    <destination-type>javax.jms.Topic</destination-type>
    <subscription-durability>Durable</subscription-durability>
    </message-driven-destination>
    </message-driven>
    </enterprise-beans>
    <assembly-descriptor>
    <container-transaction>
    <method>
    <ejb-name>...</ejb-name>
    <method-name>onMessage()</method-name>
    </method>
    <trans-attribute>Required</trans-attribute>
    </container-transaction>
    </assembly-descriptor>
    </ejb-jar>

    The key behaviors to configure are:

  3. Configure WebLogic-specific behaviors for the MDB in the message-driven-descriptor element of weblogic-ejb-jar.xml. For example:

    <weblogic-ejb-jar>
    <weblogic-enterprise-bean>
    <ejb-name>exampleMessageDrivenA</ejb-name>
    <message-driven-descriptor>
    <pool>...</pool>
    <timer-descriptor>...</timer-descriptor>
    <destination-jndi-name>...</destination-jndi-name>
    <initial-context-factory>...</initial-context-factory>
    <provider-url>...</provider-url>
    <connection-factory-jndi-name>...</connection-factory-jndi-name>
    <jms-polling-interval-seconds>...</jms-polling-interval-seconds>
    <jms-client-id>...</jms-client-id>
    <generate-unique-jms-client-id>...</generate-unique-jms-client-id>
    <durable-subscription-deletion>...</durable-subscription-deletion>
    <max-messages-in-transaction>...</max-messages-in-transaction>
    <init-suspend-seconds>...</init-suspend-seconds>
    <max-suspend-seconds>...</max-suspend-seconds>
    </message-driven-descriptor>
    </weblogic-enterprise-bean>
    </weblogic-ejb-jar>

    The key elements to configure are those that specify how to access the destination. For instructions, see Configuring MDBs for Destinations.

  4. Compile and generate the MDB class using the instructions in Compile Java Source.

  5. Deploy the bean on WebLogic Server using the instructions in the section “Preparing Applications and Modules for Deployment” in Deploying Applications to WebLogic Server.

    If WebLogic Server cannot find an MDB's JMS destination during deployment, deployment succeeds, but WebLogic Server prints a message saying the destination was not found. The MDB bean then periodically tries to connect to its JMS queue until it succeeds. For more information, see Migration and Recovery for Clustered MDBs.

 


Programming and Configuring MDBs: Details

The topics in this section supplement the instructions in Programming and Configuring MDBs: Main Steps.

For a summary of key deployment elements for MDBs, see Nutshell Summary: Deployment Elements for MDBs.

 

Configuring EJBs to Use Logical Message Destinations

In this release of WebLogic Server, you can declare logical message destinations in an EJB's deployment descriptor and map the logical message destinations to actual message destinations (JMS queues or topics, or MDBs). Once you declare logical message destinations, you can then create message destination references that are linked to the logical message destinations. EJBs use the logical message destination name to perform a JNDI lookup and access the actual message destination. Logical JMS message destinations can be defined for individual MDBs or entire applications.

For information on how unresolved and unavailable message destinations are handled, see EJBs and Message Destination References.

Configuring Logical JMS Message Destinations for Individual MDBs

In this release of WebLogic Server, you can configure logical JMS message destinations for individual MDBs.

To configure an MDB to use a logical message destination to link to an actual message destination:

  1. Declare the message destination in the message-destination-descriptor element in weblogic-ejb-jar.xml.

  2. Declare message destination references in the following elements in ejb-jar.xml:

    • message-destination-ref

    • message-destination-ref-name—the environment name used in the enterprise bean code for the message destination, relative to java:comp/env. For example, <message-destination-ref>jms/StockQueue</message-destination-ref>.

    • message-destination-type—the expected type of the referenced destination. For example, <message-destination-type>javax.jms.Queue</message-destination-type>.

    • message-destination-usage—specifies whether messages are consumed from the destination, produced for the destination, or both. For example, <message-destination-usage>Produces<message-destination-usage>.

    • message-destination-link—links the message destination reference to the actual message destination. This value must match the destination defined in message-destination-name in weblogic-ejb-jar.xml.

      For additional information on these elements or ejb-jar.xml, refer to Sun documentation.

Configuring Application-Scoped Logical JMS Message Destinations

In this release of WebLogic Server, you can configure resources for applications. Resources that are configured for entire applications are called application-scoped resources. This section describes application-scoped logical JMS destinations for an EJB application. For additional information on application-scoped resources, such as JMS and JDBC, see Programming WebLogic JMS and Programming WebLogic JDBC.

Application-scoped resources, such as logical JMS message destinations, for EJBs apply to all MDBs in the application. You can override application-scoped JMS for specific MBDs by configuring the MDBs to use logical message destinations to link to actual message destinations, as described in Configuring Logical JMS Message Destinations for Individual MDBs.

To configure application-scoped JMS for EJBs:

  1. Declare the message destination in the message-destination-descriptor element in weblogic-ejb-jar.xml.

  2. Declare message destination references in the following elements in ejb-jar.xml:

 

Configuring Destination Type

Configure the type of destination to which the MDB listens in the destination-type element in the message-driven-destination element of ejb-jar.xml.

To specify a topic, set destination-type to javax.jms.Topic. If the destination is a topic, specify subscription-durability as either Durable or NonDurable.

To specify a queue, set destination-type to javax.jms.Queue.

For more information, see Configuring Durable Topic Subscriptions.

 

Configuring Transaction Management Strategy for an MDB

An MDB can manage its own transactions or defer transaction management to the container.

To configure container-level transaction management:

To configure bean-level transaction management:

For more information, see “Session” in Programming WebLogic JMS.

 

Configuring Suspension of Message Delivery During JMS Resource Outages

In this release of WebLogic Server, you can configure how an MDB behaves when the EJB container detects a JMS resource outage.

You can configure:

When a JMS connection is suspended, message delivery is suspended for all JMS sessions associated with the connection. By default, when it detects a JMS resource outage, the EJB container suspends an MDB's JMS connection for sixty seconds.

 

Configuring the Number of Seconds to Suspend a JMS Connection

To configure the number of seconds an MDB's JMS connection is suspended during a resource outage:

  1. Change the value of the init-suspend-seconds element in weblogic-ejb-jar.xml. The default value is 60, which causes the MDB's JMS connection to be suspended for sixty seconds when the EJB container detects a JMS resource outage. If the JMS resource is not available after the number of seconds specified in init-suspend-seconds, the JMS connection is suspended again for the number of seconds specified in init-suspend-seconds, until the number of seconds specified in max-suspend-seconds (see step 2, next) have elapsed.

  2. Change the value of the max-suspend-seconds element in weblogic-ejb-jar.xml. The default value is 60, which causes the MDB's JMS connection to be suspended only once, for sixty seconds, when the EJB container detects a JMS resource outage. This is because the default value of init-suspend-seconds (see step 1, previous) is equal to the default value of max-suspend-seconds. Once the number of seconds you specify in max-suspend-seconds have elapsed, the MDB's JMS connections are restored.

Turning Off Suspension of a JMS Connection

If you do not want an MDB's JMS connection to be suspended when the EJB container detects a resource outage, set the value of max-suspend-seconds to 0. When the value of max-suspend-seconds is 0, the value of init-suspend-seconds is ignored.

 

Manually Suspending and Resuming Message Delivery

Administrators can use the Administration Console to manually suspend and resume message delivery to deployed MDBs. For information see “Suspend and resume MDB JMS connections” in Administration Console Online Help.

 

Configuring MDBs for Destinations

WebLogic Server MDBs support Weblogic JMS destinations and foreign (non-Oracle) JMS provider destinations.

A local destination is one that runs on the same machine or in the same cluster as the MDB. A remote destination is one that runs on a different machine and is not a member of the same cluster as the MDB. Whether a destination is local or remote depends on whether or not it and the MDB share the same JNDI context.

To be considered local to one another, an MDB and the associated JMS destination must both run either on the same machine or within the same WebLogic Server cluster. An MDB and a JMS destination on server instances in the same WebLogic Server cluster are local to one another even if they are on separate machines, because the server instances in a WebLogic Server cluster each have a copy of the same cluster-wide JNDI tree.

Destinations that run under a non-Oracle JMS provider are referred to as foreign. Foreign JMS providers have their own JNDI provider and foreign JMS objects do not share the same context with a WebLogic Server MDB—unless the foreign JMS objects are configured with wrappers to appear in the MDB's JNDI context. This approach is discussed in Whether to Use Wrappers.

The nature of a destination—local versus remote and WebLogic JMS versus non-Oracle—governs the configuration alternatives available, and dictates to some extent how you configure these key elements in the message-destination-descriptor for the MDB in weblogic-ejb-jar.xml:

For foreign and remote destinations, the simplest configuration strategy is to use WebLogic Server JMS wrappers. Wrappers allow you to create a “symbolic link” between a JMS object in a third-party JNDI provider or in a different WebLogic Server cluster or domain, and an object in the local WebLogic JNDI tree.

For more information on when wrappers are appropriate, and the rules for configuring the message-driven-descriptor in weblogic-ejb-jar.xml, see these sections:

To configure the elements in message-driven-descriptor for specific scenarios, see Common Destination Scenarios: Illustrations and Key Element Settings.

Whether to Use Wrappers

Using wrappers means configuring a Foreign Connection Factory and a Foreign Destination that correspond to remote JMS objects (either non-Oracle or WebLogic JMS) as entries in your local JNDI tree.

Whether or not you use the wrapper classes determines how you configure the initial-context-factory and destination-jndi-name, as described below.

How to Set provider-url

provider-url specifies the URL of the JNDI service used by the JMS provider for the destination to which the MDB listens.

How to Set initial-context-factory

initial-context-factory identifies the class that implements the initial context factory used by the JMS provider.

How to Set destination-jndi-name

destination-jndi-name identifies the JNDI name of destination to which the MDB listens.

How to Set connection-factory-jndi-name

connection-factory-jndi-name identifies the JNDI name of the connection factory used by the JMS provider.

Common Destination Scenarios: Illustrations and Key Element Settings

The figures in this section illustrate common destination configurations. For remote and foreign destinations, scenarios with and without wrappers are included.

Table 7-1 summarizes how to configure the elements in the message-driven-descriptor element of weblogic-ejb-jar.xml for each scenario. Figure 7-7 A. Destination on a Local WebLogic JMS Server

A. Destination on a Local WebLogic JMS Server

Figure 7-8 B. Destination On a Remote WebLogic JMS Server—No Wrappers

B. Destination On a Remote WebLogic JMS Server—No Wrappers

Figure 7-9 C. Destination on Foreign JMS Server—No Wrappers

C. Destination on Foreign JMS Server—No Wrappers

Figure 7-10 D. Destination on a Remote WebLogic Server or Foreign JMS Server—With Wrappers

D. Destination on a Remote WebLogic Server or Foreign JMS Server—With Wrappers

Table 7-1 Common Configuration Scenarios

If destination is on... Wrappers Configured? destination-jndi-name initial-
context-
factory
provider-
url
connection-
factory-jndi-
name
A Local WebLogic JMS server Not applicable for local WebLogic JMS server Name of the local destination, as bound in local JNDI tree Do not specify Do not specify Specify only if using a custom connection factory
B Remote WebLogic JMS Server No wrappers configured Name of the remote destination, as bound in the remote JNDI tree Do not specify URL or cluster address for the remote WebLogic JMS Server Specify only if using a custom connection factory on the remote provider
C Foreign JMS Provider No wrappers configured Name of the remote destination, as bound in the remote JNDI tree Name of remote initial context factory, as bound in remote JNDI tree URL to access the foreign JMS provider JNDI name of foreign connection factory
D Remote Weblogic JMS Server or Foreign JMS server Wrappers configured The name of the Foreign Destination—as bound in your local JNDI tree —that maps to the remote or foreign destination Do not specify Do not specify The name of the Foreign Connection Factory—as bound in your local JNDI tree —that maps to the remote or foreign connection factory

 

Configuring Durable Topic Subscriptions

Durable subscriptions allow an MDB to receive messages that were delivered to a topic while the MDB was not connected.

Configuring a Durable Topic Subscription for a Non-Clustered Server

Follow these instructions to configure a durable topic subscription for an MDB that is deployed to non-clustered server instances.

  1. Configure the destination-type in ejb-jar.xml to javax.jms.Topic.

  2. In the message-driven-destination element of ejb-jar.xml, set:

    • destination-type to javax.jms.Topic

    • subscription-durability to Durable.

  3. Configure the ClientId for the MDB, as desired:

    If you configure your own connection factory to suit specific application requirements, as described in “Configure connection factories” in Administration Console Online Help, you can define the ClientID for the MDB when you configure the connection factory.

    If you set up your connection factory and do not assign it a ClientID, or if you use a default connection factory, the MDB uses the value of jms-client-id in weblogic-ejb-jar.xml as its client ID. If jms-client-id is not specified, the default value is the ejb-name for the MDB.

Configuring a Durable Topic Subscription for a Cluster

In a cluster, a JMS durable subscription is uniquely identified by the combination of an MDB's:

To allow a durable subscriber MDB to run on multiple server instances in a cluster, where each MDB instance receives a copy of each topic message, each MDB instance should be deployed with a unique jms-client-ID or, if jms-client-ID is not specified, ejb-name.

Durable subscribers cannot subscribe directly to a WebLogic Server distributed destination topic, but must instead subscribe to the JNDI name of the destination topic physical members. There are two ways to accomplish this:

Configuring Automatic Deletion of Durable Topic Subscriptions

In this release of WebLogic Server, you can configure an MDB to automatically delete a durable topic subscription when the MDB is undeployed or deleted from a server. To configure an MDB to automatically delete durable topic subscriptions, set durable-subscription-deletion to True; by default, durable-subscription-deletion is set to False.

 

Configuring Message Handling Behaviors

These topics provide guidelines for behaviors related to message delivery:

Ensuring Message Receipt Order

Make sure that the MDB's business logic allows for asynchronous message processing. Do not assume that MDBs receive messages in the order the client issues them. To ensure that receipt order matches the order in which the client sent the message, do the following:

To ensure message ordering in the event of transaction rollback and recovery, configure a custom connection factory with MessagesMaximum set to 1, and ensure that no redelivery delay is configured. For more information see “Ordered Redelivery of Messages” in Programming WebLogic JMS.

See Sun's documentation on the Interface MessageListener—javax.jms.MessageListener.onMessage()—for more information, at http://java.sun.com/j2ee/sdk_1.2.1/techdocs/api/javax/jms/MessageListener.html.

Preventing and Handling Duplicate Messages

A JMS producer expects an MDB to acknowledge received messages. If the MDB receives the message, but fails to send an acknowledgement, the JMS producer re-sends the same message.

Your MDB design should allow for the likelihood of duplicate messages. Duplicate messages can be undesirable in certain cases. For example, if an MDB's onMessage() method includes code to debit a bank account, receiving and processing that message twice would result in the account being debited twice. In addition, re-sending messages consumes more processing resources.

The best way to prevent delivery of duplicate messages is to use container-managed transactions. In a container-managed transaction, message receipt and acknowledgement occur within the transaction; either both happen or neither happens. However, while this provides more reliability than using bean-managed transactions, performance can be compromised because container-managed transactions use more CPU and disk resources.

If the MDB manages its own transactions, your onMessage() code must handle duplicate messages, as receipt and acknowledgement occur outside of a transaction. In some applications, receipt and processing of duplicate messages is acceptable. In other cases, such as the bank account scenario described above, if a transaction is bean-managed, the bean code must prevent processing of duplicate messages. For example, the MDB could track messages that have been consumed in a database.

Even if an MDB's onMessage() method completes successfully, the MDB can still receive duplicate messages if the server crashes between the time onMessage() completes and the time the container acknowledges message delivery. Figure 7-11 illustrates this scenario. Figure 7-11 Server Crash Between Completion of onMessage() and Container Delivery Acknowledgement

Server Crash Between Completion of onMessage() and Container Delivery Acknowledgement

Redelivery and Exception Handling

If an MDB is consuming a message when an unexpected error occurs, the MDB can throw a system exception that causes JMS to resend, delay, and then resend or give up, depending on how JMS is configured.

To force message redelivery for a transactional MDB, use the bean context to call setRollbackOnly().

To force message redelivery for any MDB—transactional or non-transactional—you can throw an exception derived from the RuntimeException or Error thrown by the MDB. This causes the MDB instance to be destroyed and re-created, which incurs a performance penalty.

Configure the redelivery delay based on what type of task the MDB's onMessage() method is performing. In some cases, redelivery should be instantaneous, for example, in an application that posts breaking news to a newswire service. In other cases, for example, if the MDB throws an exception because the database is down, redelivery should not occur immediately, but after the database is back up.

For fully ordered MDBs, do not set a redelivery delay.

For instructions on configuring a redelivery delay, and other JMS exception handling features that can be used with MDB see “Managing Rolled Back, Recovered, Redelivered, or Expired Messages” in Programming WebLogic JMS.

 

Using the Message-Driven Bean Context

WebLogic Server calls setMessageDrivenContext() to associate the MDB instance with a container context. This is not a client context; the client context is not passed along with the JMS message.

To access the container context's properties from within the MDB instance, use the following methods from the MessageDrivenContext interface:

Although getEJBHome() is also inherited as part of the MessageDrivenContext interface, message-driven beans do not have a home interface. Calling getEJBHome() from within an MDB instance causes an IllegalStateException.

 

Configuring a Security Identity for a Message-Driven Bean

When a message-driven bean (MDB) receives messages from a JMS queue or topic, the EJB container uses a credential mapping provider and a credential map to obtain the security identity—username and password—to use when establishing the JMS connection. This credential mapping occurs only once, when the MDB is started.

Once the EJB container is connected, the JMS provider uses the established security identity to retrieve all messages.

To configure a security identity for an MDB:

  1. Create a WebLogic user for the MDB. See “Users, Groups, and Security Roles” in Securing WebLogic Resources Using Roles and Policies. Assign the user the username and password that the non-Oracle JMS provider requires to establish a JMS connection.

  2. In the ejb-jar.xml deployment descriptor, define a run-as identity for the MDB:
    <security-identity> 
    
    <run-as>
    <role-name>admin</role-name>
    </run-as>
    </security-identity>

  3. To create the security-identity, also define the security-role inside the assembly-descriptor element in ejb-jar.xml, as shown below.
    <assembly-descriptor>
    
    <security-role>
    <role-name>jmsrole</role-name>
    </security-role>
    ....
    </assembly-descriptor>

  4. In the weblogic-ejb-jar.xml deployment descriptor, map the run-as identity to the user defined in Step 2, as shown below:
    <security-role-assignment>
    
    <role-name>admin</role-name>
    <principal-name>username</principal-name>
    </security-role-assignment>

    where username is the username for the user created in step 1.

  5. If the JMS provider is not WebLogic JMS, configure the credential mapper as described in “Create EJB component credential mappings” in Administration Console Online Help.

    If the JMS provider is WebLogic JMS, it is not necessary to configure a credential mapper.

 

Using MDBs With Cross Domain Security

MBDs do not require you to configure Cross Domain Security. However, you should consider the following guidelines when implementing MDBs:

 


Migration and Recovery for Clustered MDBs

WebLogic Server supports migration and recovery for clustered MDB applications. In the event of failure, you can bring a JMS destination and MDBs back online. Design your application so that when a server instance fails, your application automatically migrates the JMS destination and its associated MDBs from the failed server in the cluster to an available server instance.

An MDB can use the migratable service with clustered servers only. The migratable service cannot span multiple clusters.

After an MDB application migrates to another server, it reconnects to the migrated JMS destination and begins to receive messages from the JMS destination again.

MDBs do not have migratable targets. Instead, an MDB automatically detects the JMS Server migration target during deployment, and uses that as its migratable target. You must ensure that MDB are deployed everywhere that a JMS Server is deployed. You can do this in two ways:

In Figure 7-12, Managed Servers 1, 2 and 3 are in the same cluster. Managed Server 2 and Managed Server 3 are configured as Managed Server 1's migratable targets. In the event that Managed Server 1 fails, the JMS destination and MDB migrate to the next available Managed Server. If a Managed Server on the target list is unavailable, the destination and MDBs migrate to the next available Managed Server on the target list. For instance if Managed Server 2 is unavailable with Managed Server 1 fails, the JMS destination and MDB application migrate to Managed Server 3. Figure 7-12 Migration of JMS Destination

Migration of JMS Destination

For instructions on implementing the migratable service and for background information on WebLogic JMS migration and recovery services for clustered architectures, see “JMS as a Migratable Service within a Cluster” in Configure WebLogic JMS.

 


Transaction Batching of MDBs

Within an MDB, business logic, including database transactions, is performed within the onMessage() method. Within an EJB application, multiple MDBs can perfom multiple onMessage() calls. If each onMessage() call performs a database transaction, this can create a lot of overhead where each call requires its own database connection.

WebLogic Server provides a mechanism for grouping onMessage() calls together as a single transaction. This mechanism can help increase database performance of an EJB application by grouping all of the transactions into a single I/O request. Grouping transactions allows requires fewer transaction logs.

For information on transaction management within MDBs, see Configuring Transaction Management Strategy for an MDB.

Transaction batching is not effective for all MDB applications. For example, database deadlocks can occur in an application where an MDB makes multiple calls to a database. Using the transaction batching feature will cause the MDB to lock more rows per transaction which can lead to database deadlocks.

 

Configuring MDB Transaction Batching

You can enable MDB transaction batching by defining the max-messages-in-transaction element. This element is part of the message-driven-descriptor element of the weblogic-ejb-jar.xml deployment descriptor.

max-messages-in-transaction defines the batch size WebLogic Server uses to process onMessage() transactions. However, increasing the batch size can increase latency. You should start with a small value, 5 for example. You can increase this value as your application performance allows.

When using MDB batching, more messages are processed per transaction. This may cause more transactions to time out since more work is being performed in each transaction. You can increase the transaction timeout be increasing the value of trans-timeout-seconds attribute of weblogic-ejb-jar.xml.

 

How MDB Transaction Batching Works

MDB transaction batching does not require any changes to application code. As far as the application is concerned, individual messages are still processed one by one. There is no application level message list.

Internally, WebLogic Server creates a queue to manage the transactions. Each message is queued until the number of messages in the queue is equal to the batch size defined by max-messages-in-transaction. However, if there is no next message to be queued, the current messages in the queue are submitted for processing.

If an individual onMessage() call fails, then the entire batch is rolled back. If the failure was due to a transaction timeout, as defined in the trans-timeout-seconds attribute of weblogic-ejb-jar.xml, the MDB container temporarily reduces the batch size and attempts to process the transactions with smaller batches.

If failure occurs for another reason, the MDB reprocesses each message within the failed batch as an individual transaction. This avoids the scenario where an individual onMessage() call can permanently hang an entire batch.

 


Nutshell Summary: Deployment Elements for MDBs

This section lists key deployment elements that affect the behavior of MDBs:

Table 7-2 summarizes the deployment elements in the message-destination-descriptor element of weblogic-ejb-jar.xml.

Table 7-3 lists key deployment elements for MDBs in the ejb element of weblogic-application.xml.

Table 7-4 lists key J2EE deployment elements for MDBs that you configure in the message-driven element of ejb-jar.xml.

Table 7-2 weblogic-ejb-jar.xml Deployment Elements for MDBs
Element Description Default
connection-factory-jndi-name The JNDI name of the JMS ConnectionFactory that the message-driven EJB should look up to create its queues and topics. See How to Set connection-factory-jndi-name. weblogic.jms.
MessageDriven
BeanConnection
Factory
connection-factory-resource-link Maps to a resource within a JMS module defined in ejb-jar.xml to an actual JMS Module Reference in WebLogic Server.
destination-jndi-name The JNDI name used to associate a MDB with an actual JMS Queue or Topic deployed in the WebLogic Server JNDI tree. See How to Set destination-jndi-name.
destination-resource-link Maps to a resource within a JMS module defined in ejb-jar.xml to an actual JMS Module Reference in WebLogic Server.
dispatch-policy This optional element allows you to specify a particular WorkManager for the bean. See MDBs and the Free Pool.
distributed-destination-connection Whether an MDB that accesses a WebLogic JMS distributed queue in the same cluster consumes from all distributed destination members or only those members local to the current Weblogic Server. LocalOnly (only consumes from members local to the current WebLogic Server)
durable-subscription-deletion Indicates whether you want durable topic subscriptions to be automatically deleted when an MDB is undeployed or removed. False
generate-unique-jms-client-id Indicates whether or not you want the EJB container to generate a unique client-id for every instance of an MDB. Enabling this flag makes it easier to deploy durable MDBs to multiple server instances in a WebLogic Server cluster. False
init-suspend-seconds The initial number of seconds to suspend an MDB's JMS connection when the EJB container detects a JMS resource outage. See Configuring Suspension of Message Delivery During JMS Resource Outages. 60
initial-beans-in-free-pool The number of inactive instances of an MDB that exist in WebLogic Server when it is started. For more information, see MDBs and the Free Pool. 0
initial-context-factory The initial contextFactory that the EJB container uses to create its connection factories. See How to Set initial-context-factory. weblogic.jndi.
WLInitialContext
Factory
jms-client-id The client id for the a message-driven bean associated with a durable subscriber topic. See “Defining the Client ID” in Programming WebLogic JMS. ejb-name of the EJB
jms-polling-interval-seconds The number of seconds between attempts by the EJB container to reconnect to a JMS destination that has become unavailable. See Migration and Recovery for Clustered MDBs. 10 seconds
max-beans-in-free-pool The maximum size of the free pool of inactive MDBs. See MDBs and the Free Pool. 1000
max-messages-in-transaction Specifies the maximum number of messages that can be in a transaction for this MDB.
max-suspend-seconds The maximum number of seconds to suspend an MDB's JMS connection when the EJB container detects a JMS resource outage. See Configuring Suspension of Message Delivery During JMS Resource Outages. 60
pool Configures the behavior of the WebLogic Server free pool for message-driven EJBs.
provider-url The URL provider to be used by the InitialContext. Typically, this is the host:port. See How to Set provider-url. t3://localhost:7001
resource-adapter-jndi-name Identifies the resource adapter that this MDB receives messages from.
security-role-assignment Maps application roles in the ejb-jar.xml file to the names of security principals available in WebLogic Server.
timer-descriptor An EJB timer object. For more information, see Programming the EJB Timer Service.
trans-timeout-seconds The maximum duration for an EJB's container-initiated transactions, in seconds, after which the transaction is rolled back. See Configuring Transaction Management Strategy for an MDB. 30
use81-style-polling Enables backwards compatibility for WLS Version 8.1-style polling. False

Table 7-3 weblogic-application.xml Elements for MDBs
Element Description Default
start-mdbs-with-application Controls when MDBs start processing messages. With default setting of true, an MDB starts processing messages as soon as it is deployed, even if WebLogic Server has not completed booting. This can cause an MDB application to access uninitialized services or applications during boot up and, therefore, to fail. Set to false to defer message processing until after WebLogic Server opens its listen port. false

Table 7-4 Key J2EE Deployment Elements for MDBs
Element Description Allowable Values
acknowledge-mode Specifies JMS message acknowledgment semantics for the onMessage method of a message-driven bean that uses bean managed transaction demarcation.

  • AUTO_ACKNOWLEDGE

  • DUPS_OK_ACKNOWLEDGE
destination-type Specifies the type of the JMS destination—the Java interface expected to be implemented by the destination.

  • javax.jms.Queue

  • javax.jms.Topic
subscription-durability Whether a JMS topic subscription is intended to be durable or nondurable.

  • Durable

  • NonDurable
transaction-type Specifies an enterprise bean's transaction management type.

If transaction-type is set to Container, trans-attribute must be set to Required.

trans-attribute Specifies how the container must manage the transaction boundaries when delegating a method invocation to an enterprise bean's business method. Set to Required for container-managed transactions. For more information, see Configuring Transaction Management Strategy for an MDB.