Programming WebLogic JMS

 Previous Next Contents Index View as PDF  

Introduction to WebLogic JMS

The following sections provide an overview of the Java Message Service (JMS) for BEA WebLogic Server:

 


What Is JMS?

An enterprise messaging system, also referred to as Message-Oriented Middleware (MOM), enables applications to communicate with one another through the exchange of messages. A message is a request, report, and/or event that contains information needed to coordinate communication between different applications. A message provides a level of abstraction, allowing you to separate the details about the destination system from the application code.

The Java Message Service (JMS) is a standard API for accessing enterprise messaging systems. Specifically, JMS:

The following figure illustrates WebLogic JMS messaging.

Figure 1-1 WebLogic JMS Messaging


 

As illustrated in the figure, WebLogic JMS accepts messages from producer applications and delivers them to consumer applications.

 


Implementation of Java Specifications

WebLogic Server is compliant with the following Java specifications.

J2EE Specification

WebLogic Server 7.0 is compliant with Sun Microsystems' J2EE 1.3 specification.

JMS Specification

WebLogic Server 7.0 is fully compliant with the JMS Specification - version 1.0.2b and can be used in production.

 


WebLogic JMS Features

WebLogic JMS provides a full implementation of the JMS API. Specifically, WebLogic JMS:

 


WebLogic JMS Architecture

The following figure illustrates the WebLogic JMS architecture.

Figure 1-2 WebLogic JMS Architecture


 

Major Components

The major components of the WebLogic JMS Server architecture, as illustrated in the figure WebLogic JMS Architecture, include:

Clustering Features

The WebLogic JMS architecture implements clustering of multiple JMS servers by supporting cluster-wide, transparent access to destinations from any server in the cluster. Although WebLogic Server supports distributing JMS destinations and connection factories throughout a cluster, JMS topics and queues are still managed by individual WebLogic Server instances in the cluster.

For more information about configuring clustering for WebLogic JMS, see Configuring WebLogic JMS Clustering. For detailed information about WebLogic Server clustering, see Using WebLogic Server Clusters.

The advantages of clustering include the following:

Note: Automatic failover is not supported by WebLogic JMS for this release. For information about performing a manual failover, refer to Recovering from a WebLogic Server Failure.

 


WebLogic JMS Extensions

In addition to the API specified by Sun Microsystems' JMS Specification, WebLogic JMS provides a public API, weblogic.jms.extensions, which includes classes and methods for the extensions described in the following table.

Extension

For more information. . .

Create XML messages

Refer to Step 6a: Create the Message Object (Message Producers)

Define a session exception listener

Refer to Defining a Session Exception Listener

Set or display the maximum number of pre-fetched asynchronous messages allowed on the session

Refer to Dynamically Configuring Multicasting Configuration Attributes

Set or display the multicast session overrun policy that is applied when the message maximum is reached

Refer to Dynamically Configuring Multicasting Configuration Attributes

Dynamically create permanent queues or topics

Refer to Using the JMSHelper Class Methods

Convert between WebLogic JMS 7.0 and pre-6.0 JMSMessageID formats

Refer to Setting Message Header Fields

Set a redelivery delay for messages

Refer to Setting a Redelivery Delay for Messages

Set a message delivery time for producers

Refer to Setting a Delivery Time on Producers

Set a delivery time for messages

Refer to Setting a Delivery Time on Messages

Set a scheduled delivery time for messages

Refer to Setting a Scheduled Time-to-Deliver Override

This API also supports NO_ACKNOWLEDGE and MULTICAST_NO_ACKNOWLEDGE acknowledge modes, and extended exceptions, including throwing an exception:

 


JMS Enhancements in WebLogic Server 7.0

The following JMS enhancements are new to this release of WebLogic Server.

High Availability Enhancement

WebLogic JMS takes advantage of the migration framework implemented in the WebLogic Server core for clustered environments. This allows WebLogic JMS to properly respond to migration requests and bring a JMS server online and offline in an orderly fashion. This includes both scheduled migrations as well as migrations in response to a WebLogic Server failure.

For more information, see "Managing JMS" in Programming WebLogic JMS.

Distributed Destinations within a WebLogic Cluster

The highly available implementation of WebLogic JMS offers a level of service continuity in the event of a single server failure by enabling you to configure multiple physical destinations as members of a single distributed destination set. Specifically, an administrator can configure multiple instances of a given destination within a cluster. If one instance within the cluster fails, then other instances of the same destination will be able to provide service to JMS producers and consumers.

For more information, see "Developing a WebLogic JMS Application" in Programming WebLogic JMS and "Managing JMS" in the Administration Guide.

Flow Control

Using the Flow Control feature, you can enable a JMS server or destination to slow down message producers when it determines that it is becoming overloaded. Specifically, when a JMS server/destination exceeds its specified bytes or messages thresholds, it instructs producers to limit their message flow.

For more information, see "Managing JMS" in the Administration Guide.

WebLogic Messaging Bridge

A messaging bridge (also known as a JMS bridge) is responsible for transferring messages between two JMS providers. The WebLogic Server Messaging Bridge feature allows you to configure a store and forward mechanism between any two messaging providers—including separate implementations of WebLogic JMS.

For more information, see "Using a WebLogic Messaging Bridge" in the Administration Guide.

Message Paging

The Message Paging feature can free up virtual memory during peak message load periods by swapping out messages from virtual memory to persistent storage when message loads reach a specified threshold. From a performance perspective, this feature can greatly benefit WebLogic Server implementations with the large message spaces that are required by today's enterprise applications.

For more information, see "Managing JMS" in the Administration Guide.

 

Back to Top Previous Next