JMS Resources

The Java Message Service (JMS) API uses two kinds of administered objects:

These objects must be created administratively, and how they are created is specific to each implementation of JMS. In the Application Server, perform the following tasks:

A JMS application normally uses at least one connection factory and at least one destination. It is best to understand the application or consult with the application developer to learn what resources to create.

There are three types of connection factories:

There are two kinds of destinations:

The chapters on JMS in the J2EE 1.4 Tutorial provide details on these two types of communication and other aspects of JMS (see http://java.sun.com/j2ee/1.4/docs/tutorial/doc/index.html).

The order in which the resources are created does not matter.

For a J2EE application, specify connection factory and destination resources in the Application Server deployment descriptors as follows:

See Also:


Legal Notices