Answer Posted / maanya shree
Pub/sub messaging has the following characteristics :
a) Each message can have multiple consumers.
b)Publishers and subscribers have a timing dependency. A client that subscribes to a topic can consume only messages published after the client has created a subscription, and the subscriber must continue to be active in order for it to consume messages.
What Point-to-Point Messaging in JMS ? view answer
a) Each message has only one consumer.
b) A sender and a receiver of a message have no timing dependencies. The receiver can fetch the message whether or not it was running when the client sent the message.
c)The receiver acknowledges the successful processing of a message.
| Is This Answer Correct ? | 0 Yes | 0 No |
Post New Answer View All Answers
What is a stream message?
Which are the benefits of mdb (message driven beans) over standard jms consumers?
What is jms endpoint?
Why jms is used in java?
What are jms channels?
What is a topic in messaging?
What is asynchronous messaging?
Why does jmssession.createtopic or jmssession.createqueue fail to create a destination in wls jms 6.1 (it worked in 5.1)?
What is MOM in reference to JMS?
What are the different elements present in JMS?
What is jms and mq?
How jndi is related to jms?
What is spring jms?
Which messaging is generally used in cases where a message is published by a producer and consumed by multiple subscribers?
How does jms queue work?