JMS vs Webservices - Stack Overflow most recent 30 from stackoverflow.com2010-03-17T04:05:55Zhttp://stackoverflow.com/feeds/question/855210http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/855210/jms-vs-webservices1JMS vs WebservicesMartin K.http://stackoverflow.com/users/772122009-05-12T22:32:48Z2009-05-13T05:01:07Z
<p>What are the big advantages from JMS over Webservices or vice versa?</p>
<p>(Are webservices bloated? Is JMS overall better for providing interfaces?)</p>
http://stackoverflow.com/questions/855210/jms-vs-webservices/855285#8552856Answer by duffymo for JMS vs Webservicesduffymohttp://stackoverflow.com/users/372132009-05-12T22:57:31Z2009-05-12T23:25:00Z<p>EDITED after correction from erickson:</p>
<p>JMS requires that you have a JMS provider, a Java class that implements the MessageListener interface for processing messages, and a client that knows how to connect to the JMS queue. JMS means asynchronous processing - the client sends the message and doesn't necessarily wait for a response. JMS can be used in a point-to-point queue fashion or publish/subscribe.</p>
<p>"Service" is a fluid term. I think of a service as a component that lives out on a network and advertises a contract: "If you send me X I'll perform this task for you and return Y." </p>
<p>Distributed components have been around for a long time. Each one communicated using a different protocol (e.g., COM, Corba, RMI, etc.) and exposed their contract in different ways. </p>
<p>Web services are the latest trend in distributed services. They use HTTP as their protocol and can interoperate with any client that can connect via TCP/IP and make an HTTP request.</p>
<p>You can use SOAP or RPC-XML or REST or "contract first" styles, but the underlying idea of a distributed component using HTTP as its protocol remains.</p>
<p>If you accept all this, web services are usually synchronous calls. They need not be bloated, but you can write bad components in any style or language.</p>
<p>You can start designing any distributed component by designing the request and responses first. Given those, you choose JMS or web services based on what kind of clients you want to have and whether or not the communication is synchronous or asynchronous.</p>
http://stackoverflow.com/questions/855210/jms-vs-webservices/855316#8553160Answer by BZ for JMS vs WebservicesBZhttp://stackoverflow.com/users/837212009-05-12T23:04:36Z2009-05-12T23:04:36Z<p>From the ones I've done here's the differences I've found:
JMS - I'm tied to the JMS provider - however I have choices of implementation type (pub/sub, point to point)
Web Service - easier to handle/architect - however its more of a direct communication between the boxes. Lots of tools to use to do the development - and a clean interface (WSDL's) so implementor and caller can be independent.</p>
<p>Which one to use? Depends on what the problem is.</p>
http://stackoverflow.com/questions/855210/jms-vs-webservices/855342#8553422Answer by erickson for JMS vs Webservicesericksonhttp://stackoverflow.com/users/34742009-05-12T23:10:14Z2009-05-12T23:10:14Z<p>I'd say the biggest distinction is that JMS is message-oriented, rather than RPC-oriented. Out-of-the-box, most JMS providers support high-level protocols that perform retries, prevent duplicates, and support transactions.</p>
<p>There are many applications where these capabilities are unnecessary. But where they are needed, building them yourself on top of an RPC mechanism is complicated, expensive, and error-prone.</p>
http://stackoverflow.com/questions/855210/jms-vs-webservices/855364#8553644Answer by Richard for JMS vs WebservicesRichardhttp://stackoverflow.com/users/673922009-05-12T23:14:40Z2009-05-12T23:14:40Z<p>Message based systems, including JMS, provide the ability to be "chronologically decoupled" from the other end. A message can be sent without the other end being available.</p>
<p>All other common A2A approaches require the partner to be able to respond immediately, requiring them to be able to handle peak loads, with little ability to spread processing.</p>
http://stackoverflow.com/questions/855210/jms-vs-webservices/856141#8561411Answer by sfitts for JMS vs Webservicessfittshttp://stackoverflow.com/users/1010522009-05-13T05:01:07Z2009-05-13T05:01:07Z<p>Would add this as a comment to dyffymo's post, but don't yet have the rep.</p>
<p>Quoting from your answer:</p>
<p>"Web services are the latest trend in distributed services. They use HTTP as their protocol and can interoperate with any client that can connect via TCP/IP and make an HTTP request.</p>
<p>You can use SOAP or RPC-XML or REST or "contract first" styles, but the underlying idea of a distributed component using HTTP as its protocol remains."</p>
<p><hr /></p>
<p>I'm assuming by web services you mean the WS-* set of protocols, WSDL, and SOAP. If so, then none of these require the use of HTTP as the "transport" protocol. The SOA set of protocols was designed to be agnostic as to the tramission protocols used, so you can use HTTP, NamedPipes, raw TCP, and even JMS as the means to transmit messages to and from a web service.</p>
<p>So in the case of direct use of JMS vs. use of "web services" I think it mostly boils down to tooling, comfort level, and whether you really need direct access to some JMS specific feature (which using WS-* would hide from you). At this point I would think that only fairly specilized applications would require raw JMS access.</p>