Point-to-Point Messaging Example

You are now in a position to start coding. For all the following code examples, you will need to import the javax.jms package. This contains all the classes for creating connections, sessions, and destinations.

Connecting to a Queue

To send a JMS message, a number of steps must first be performed. You must

1.
Obtain a ConnectionFactory
2.
Establish a Session
3.
Create a MessageProducer object

Although this example is in the point-to-point message domain, the same steps are required for publish/subscribe topics.

The following steps show how to create a queue used later to send a simple text message.

1.
Obtain the JNDI initial context.
Context context = new InitialContext();
2.
Contact the JMS provider, obtain ...

Get Sams Teach Yourself J2EE™ in 21 Days, Second Edition now with the O’Reilly learning platform.

O’Reilly members experience books, live events, courses curated by job role, and more from O’Reilly and nearly 200 top publishers.