What is the difference between pub/sub and Point to Point i.e. p2p. ?
Answer Posted / maanya shree
pub/sub ? Publish/Subscriber
Publish/Subscriber can have multiple Publisher who publish message and multiple Subscriber who subscribe the messages. This is like watching TV multiple channel and multiple users .
One message can have more then one subscriber.
All the publish messages have the header and subscriber consume the message based on the header.
In JMS we say Topic.
P2p ? Point to point
One message have only one subscriber. Multiple publisher can send multiple messages to the Queue but each message has only one subscriber.
What is the different between JMS and RPC? view answer
RPC : Remote procedure Call
In RPC the method invoker waits for the method to finish execution and return the control back to the invoker. Thus it is completely synchronous in nature.
JMS : Java Messaging System
While in JMS the message sender just sends the message to the destination and continues it's own processing. The sender does not wait for the receiver to respond. This is asynchronous behavior.
| Is This Answer Correct ? | 1 Yes | 0 No |
Post New Answer View All Answers
How does a sender application transport/send a message through jms?
What is difference between queue and topic in jms?
What is the functionality of a message listener in the context of jms?
Are foreign destinations handled within foreign jms messages?
What is the difference between the P2P (Peer to Peer) model and subscribe model?
What is the use of jms? Can we send message from one server to another server using jms?
List types of Messaging services supported by JMS?
What is the difference between a queue and a topic?
How jndi is related to jms?
What is the functionality of the oracle glassfish server? What added advantage it has on top of apache tomcat server?
What is jms testing?
What is the difference between jms and mq?
What is the use of jms?
What is a remote jms provider?
What are the different elements present in JMS?