What are the core JMS-related objects required for each JMS-enabled application?
Answer Posted / munnu
Each JMS-enabled client must establish the following:
* A connection object provided by the JMS server (the message broker)
* Within a connection, one or more sessions, which provide a context for message sending and receiving
* Within a session, either a queue or topic object representing the destination (the message staging area) within the message broker
* Within a session, the appropriate sender or publisher or receiver or subscriber object (depending on whether the client is a message producer or consumer and uses a point-to-point or publish/subscribe strategy, respectively). Within a session, a message object (to send or to receive)
| Is This Answer Correct ? | 1 Yes | 0 No |
Post New Answer View All Answers
Are there c/c++ interfaces to wls jms?
What is the difference between jms and kafka?
Can jms be used to send an email?
Can we use jms for sending automated e-mails?
What is jms module in weblogic?
How to Set message priority levels?
What happens when jms queue is full?
What are jms topics and queues?
What is the difference between jms and mq?
How the jms is different from rpc?
Explain how Application server handles the JMS Connection?
What is the jms client?
How to create an ejb session in order to start a jms connection?
Can we have more than one consumer for a jms queue?
What is the difference between a queue and a topic?