Reputation: 19011
In many books and blog posts people give JMS as an example for inter-applications connections and communications. Can you give a brief explanation of when and where to use it and why not using other protocols like HTTP (Rest and SOAP ) ? Please provide some JMS use cases ?
Upvotes: 0
Views: 140
Reputation: 6950
JMS is described as API for sending messages between two or more clients, but actually is more Server-to-Server oriented. So about JMS use cases
- in my experience I saw that JMS is used mostly in inner networks (behind firewalls etc.) so the modules can not only swap info, but also be orchestrated.
Upvotes: 1