Using JMS Queue for message exchange in SOA 11G Oracle JMS Adapter Types: There are two ways of exchanging messages using JMS adapter. 1. Using a Queue which is a point to point interaction for exchanging messages 2. Using a Topic which is a publish – subscribe model for exchanging messages In this blog we are going to see how to create and use JMS Queue. JMS Queue Description: Queue is a staging area that contains messages that have been sent and are waiting to be read. As the name queue suggests, the messages are delivered in the order sent. A message is removed from the queue once it has been read. It is point-to-point way of delivering messages. Only one consumer will get the message . The producer does not have to be running at the time the consumer consumes the message, nor does the consumer need to be running at the time the message is sent . Every message successfully processed is acknowledged by the consumer Creating a J
Posts
Showing posts from July, 2013