SOAP - What's the point? - Stack Overflow most recent 30 from stackoverflow.com 2009-12-02T16:35:00Z http://stackoverflow.com/feeds/question/686634 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/686634/soap-whats-the-point 16 SOAP - What's the point? DanSingerman 2009-03-26T16:50:42Z 2009-08-13T18:32:04Z <p>I mean, really, what is the point of SOAP?</p> <p>Web services have been around for a while, and for a while it seemed that the terms 'SOAP' and 'Web service' were largely interchangeable. However SOAP always seemed unwieldy and massively overcomplicated to me.</p> <p>Then REST came along, and suddenly web services made sense.</p> <p>As Joel Spolsky says, give a programmer a REST URL, and they can start playing with the service right away, figuring it out.</p> <p>SOAP is obfuscated behind WSDLs and massively verbose XML, and despite being web based, you can't do anything as simple as access a SOAP service with a web browser.</p> <p>So the essence of my question is:</p> <ul> <li>Are there any good reasons to ever choose SOAP over REST?</li> <li>Are you working with SOAP now? Would it be better if the interface was REST?</li> <li>Am I wrong?</li> </ul> http://stackoverflow.com/questions/686634/soap-whats-the-point/686658#686658 6 Answer by le dorfier for SOAP - What's the point? le dorfier 2009-03-26T16:56:07Z 2009-03-26T16:59:42Z <p>The topic is well-discussed in <a href="http://stackoverflow.com/questions/676123/why-is-http-soap-considered-to-be-thick">Why is soap considered to be thick</a>.</p> http://stackoverflow.com/questions/686634/soap-whats-the-point/686661#686661 2 Answer by vartec for SOAP - What's the point? vartec 2009-03-26T16:56:32Z 2009-03-26T17:11:58Z <p>The point of WSDL was auto-discovery. The idea was that you wouldn't have to write client code, it would be auto-generated.</p> <p>BTW. next step beyond WSDL are <a href="http://en.wikipedia.org/wiki/Semantic%5FWeb%5FServices" rel="nofollow">Semantic Web Services</a>.</p> http://stackoverflow.com/questions/686634/soap-whats-the-point/686662#686662 3 Answer by Jon Smock for SOAP - What's the point? Jon Smock 2009-03-26T16:56:34Z 2009-03-26T16:56:34Z <p>The way I see it, SOAP might be more "flexible", but as a result it's just way too complicated (you mentioned the WSDL, which is always a stumbling block to me personally). </p> <p>I <strong>get</strong> REST. It's <strong>simple</strong>. The only downside I might see is that you are limiting yourself to those 4 basic actions against a single resource, which might not exactly fit the way you view your data.</p> http://stackoverflow.com/questions/686634/soap-whats-the-point/686677#686677 0 Answer by Alan for SOAP - What's the point? Alan 2009-03-26T16:59:16Z 2009-03-26T16:59:16Z <blockquote> <p>Am I wrong?</p> </blockquote> <p>"You're not wrong, Walter, you're just... :)"</p> <blockquote> <p>Are there any good reasons to ever choose SOAP over REST?</p> </blockquote> <p>SOAP, to my understanding adheres to a contract, thus can be type checked.</p> http://stackoverflow.com/questions/686634/soap-whats-the-point/686751#686751 4 Answer by Pete Kirkham for SOAP - What's the point? Pete Kirkham 2009-03-26T17:20:00Z 2009-03-26T17:20:00Z <blockquote> <p>As Joel Spolsky says, give a programmer a REST URL, and they can start playing with the service right away, figuring it out.</p> </blockquote> <p>Whereas if the service had a well specified, machine readable contract, then the programmer wouldn't have to waste any time figuring it out.</p> <p>(not that WSDL/SOAP is necessarily an example of good implementation of a well specified contract, but that was the point of WSDL)</p> <p>Originally, SOAP was a simple protocol which allowed you to add a header to a message, and had a standardized mapping of object instances to XML structures. Putting the handling metadata in the message simplified the client code, and meant you could very simply persist and queue messages.</p> <p>I never needed the header processing details when I built SOAP services back in 2001. This was pre-WSDL, and it was then normal to use GET for getting information and queries (no different to most applications which claim to be REST; REST has more in terms of using hyperlinks for service discovery) and POST with a SOAP payload to perform actions. Those actions which created resources would return the URL of the created resource to the client, and the client could then GET the resource. I think it's the fact that WSDL made it easy to think only in terms of RPC rather than actions which create resources which made SOAP lose the plot.</p> http://stackoverflow.com/questions/686634/soap-whats-the-point/686864#686864 1 Answer by John Saunders for SOAP - What's the point? John Saunders 2009-03-26T17:52:00Z 2009-03-26T23:29:42Z <p>If you don't need the features of the WS-* series of protocols; if you don't need self-describing services; if your service cannot be completely described as resources, as defined by the HTTP protocol; if you don't like having to author XML for every interaction with the service, and parse it afterwards; then you need SOAP.</p> <p>Otherwise, sure, use REST.</p> <p><hr /></p> <p>There's been some question about the value of a self-describing service. My imagination fails me when it comes to imagining how anyone could fail to understand this. That's on me. Still, I have to think that anyone who has ever used a service much more complicated than "Hello, world" would know why it is valuable to have someone else write the code that accepts parameters, creates the XML to send to the service, sends it, receives the response, then turns that back into objects. </p> <p>Now, I suppose this might not be necessary when using a RESTful service; at least not with a RESTful service that does not process complex objects. Even with a relatively simple service like <a href="http://www.earthtools.org/webservices.htm" rel="nofollow">http://www.earthtools.org/webservices.htm</a> (which I've used as an example of calling a RESTful service), one benefits from understanding the structure of the returned data. Even the above service provides an XML Schema - it unfortunately doesn't describe the entire response. Given that schema one still has to manually process the XML, or else use a tool to produce serializable classes from the schema.</p> <p>All of this happens for you when the service is described in a WSDL, and you use a tool like "Add Service Reference" in Visual Studio, or the svcutil.exe program, or I-forget-what-the-command-is-in-Eclipse.</p> <p>If you want examples, start with the <a href="http://www.earthtools.org/webservices.htm" rel="nofollow">EarthTools</a> services, and go on to any other services with more complicated messaging.</p> <p>BTW, another thing that requires self-description is description of the messaging patterns and protocols supported by the service. Perhaps that's not required when the only choices are HTTP verbs over HTTP or HTTPS. Life gets more complicated if you're using WS-Security and friends.</p> http://stackoverflow.com/questions/686634/soap-whats-the-point/689134#689134 3 Answer by DanSingerman for SOAP - What's the point? DanSingerman 2009-03-27T09:53:09Z 2009-03-27T09:53:09Z <p>While doing some research to understand some of the answers here (especially John Saunders') I found this post <a href="http://72.249.21.88/nonintersecting/2006/11/15/the-s-stands-for-simple/" rel="nofollow">http://72.249.21.88/nonintersecting/2006/11/15/the-s-stands-for-simple/</a></p> <p>SOAP is more insane than I thought...</p> http://stackoverflow.com/questions/686634/soap-whats-the-point/1081640#1081640 0 Answer by pbreitenbach for SOAP - What's the point? pbreitenbach 2009-07-04T06:18:51Z 2009-07-04T06:18:51Z <p>I think SOAP appeals to the Java and .net crowd who may be more familiar with the old CORBA and COM and less familiar with internet technologies.</p> <p>REST also has one major drawback: there is very little guidance on how to actually implement such a system. You will find significant variations on how many of the public RESTful APIs have been designed. In fact many violate key aspects of REST (such as using GET for manipulation or POST for retrieval) and there are disagreements over fundamental usage (POST/GET vs POST/GET/PUT/DELETE).</p> http://stackoverflow.com/questions/686634/soap-whats-the-point/1081719#1081719 1 Answer by ahsteele for SOAP - What's the point? ahsteele 2009-07-04T07:13:22Z 2009-07-04T07:13:22Z <p>I find that SOAP fits in most appropriately when there is a high probability that a service will be consumed by corporate off the shelf (COTS) software. Because of the well specified contract employed by SOAP/WSDL most COTS packages have built in functionality for consuming such services. This can make it easy for BPM/workflow tools etc. to simply consume defined services without customization. Beyond that service use case REST tends to be my goto web service implementation for applications.</p>