What is the role of the JMS server? Why is it necessary?
Location: http://www.jguru.com/faq/view.jsp?EID=779 Created: Nov 10, 1999 Modified: 1999-11-10 16:24:08.772 Author: Jerry Smith (http://www.jguru.com/guru/viewbio.jsp?EID=9) The server, message broker, or whatever it is called, functions as an intermediary. Suppose a distributed component wants to send (financial) stock information to one or more remotely located distributed components. Rather than having to know the exact clients to which it sends messages containing stock information, it can establish either a message queue or a message topic area (depending on the message-passing scheme, point-to-point or publish/subscribe) with the JMS server and “post” the stock information with the server, which then distributes the messages to the appropriately registered receiving clients. Also, without this intermediary, the sending client would have the burden of monitoring whether or not the receiving client is currently connected, whether or not a network failure occurred during the send op
Related Questions
- Is it possible to develop distributed applications with JMS alone? Is it necessary to have a Java application server, EJB server, and so on?
- Is it necessary to go through a host computer or server for Neowares Thin Clients to access the Internet?
- What is the role of the JMS server? Why is it necessary?