Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.

...

The createConnection() method

This method instantiates a ConnectionFactory object with an ActiveMQConnectionFactory object and creates a Connection object through the factory method createConnection().

The ActiveMQConnectionFactory object has to be instantiated with the URL of the MQ server.

Code Block
languagejava
titlecreateConnection(String url)
linenumberstrue
collapsetrue
public Connection createConnection(String uri){
    factory = new ActiveMQConnectionFactory(uri);
    Connection jmsConnection = null;
        try {
            jmsConnection = factory.createConnection();
        } catch (JMSException e) {
            spooler_log.error("JMSException occurred while trying to connect: ");
            throw e;
        }
        return jmsConnection;
}

  Excerpt IncludeExample - How to Send an XML Command Over a Messaging QueueExample - How to Send an XML Command Over a Messaging Queuenopaneltrue

Implementation of the Producer Job

...