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
What is the best message queue?
Give an example of using the publish/subscribe model.
How many types of messaging model do JMS provide for and what are they?
In which situations we are using jms? Can we send message from one server to another server using jms?
How do I configure jdbc so that the jms jdbc store recovers automatically?
What is jms connection?
How to check jms messages in weblogic?
How do I use a third-party jdbc driver with jms?
Why is my jms work not part of a user transaction (i.e., Called within a transaction but not rolled back appropriately)? How do I track down transaction problems?
What is a topic string?
What is the use of EventMessage.java?
What is a topic in messaging?
What is jms mean?
How can an application do a jms operation and have it succeed, independent of the result of the transaction?
Explain the process of Configuring Queues in Jms?