All Examples  This Package  JMS Examples

Class examples.jms.queue.QueueSend

examples.jms.queue.QueueSend

public class QueueSend
This example shows how to establish a connection to a JMS queue, and send messages to the queue. The classes in this package operate on the same JMS queue. Run the classes together to witness messages being sent and received and to browse the queue for messages. The class is used to send messages to the queue.

Author:
Copyright (c) 1999-2000 by BEA Systems, Inc. All Rights Reserved.

Variable Index

 o JMS_FACTORY
 o JNDI_FACTORY
 o QUEUE

Constructor Index

 o QueueSend()

Method Index

 o close()
Close JMS objects.
 o init(Context, String)
Create all the necessary objects for sending messages to a JMS queue.
 o main(String[])
 o send(String)
Send a message to a JMS queue.

Variables

 o JNDI_FACTORY
 public static final String JNDI_FACTORY
 o JMS_FACTORY
 public static final String JMS_FACTORY
 o QUEUE
 public static final String QUEUE

Constructors

 o QueueSend
 public QueueSend()

Methods

 o init
 public void init(Context ctx,
                  String queueName) throws NamingException, JMSException
Create all the necessary objects for sending messages to a JMS queue.

 o send
 public void send(String message) throws JMSException
Send a message to a JMS queue.

 o close
 public void close() throws JMSException
Close JMS objects.

 o main
 public static void main(String args[]) throws Exception

All Examples  This Package  JMS Examples