SOAP or REST - Stack Overflow most recent 30 from stackoverflow.com2009-11-09T03:43:36Zhttp://stackoverflow.com/feeds/question/76595http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/76595/soap-or-rest10SOAP or RESTkodecraft2008-09-16T20:26:17Z2009-10-20T15:46:10Z
<p>Is REST a better approach to doing Web Services or is SOAP? Or are they different tools for different problems? Or is it a nuanced issue - that is, is one slightly better in certain arenas than another, etc?</p>
http://stackoverflow.com/questions/76595/soap-or-rest/76621#766212Answer by cynicalman for SOAP or RESTcynicalman2008-09-16T20:28:22Z2008-09-16T20:28:22Z<p>It's nuanced.</p>
<p>If you need to have other systems interface with your services, than a lot of clients will be happier with SOAP, due to the layers of "verification" you have with the contracts, WSDL, and the SOAP standard.</p>
<p>For day-to-day systems calling into systems, I think that SOAP is a lot of unnecessary overhead when a simple HTML call will do.</p>
http://stackoverflow.com/questions/76595/soap-or-rest/76635#766350Answer by cranley for SOAP or RESTcranley2008-09-16T20:29:16Z2008-09-16T20:29:16Z<p>It's a good question... I don't want to lead you astray, so I'm open to other people's answers as much as you are. For me, it really comes down to cost of overhead and what the use of the API is. I prefer consuming web services when creating client software, however I don't like the weight of SOAP. REST, I believe, is lighter weight but I don't enjoy working with it from a client perspective nearly as much.</p>
<p>I'm curious as to what others think.</p>
http://stackoverflow.com/questions/76595/soap-or-rest/76709#767091Answer by neu242 for SOAP or RESTneu2422008-09-16T20:34:18Z2008-09-16T20:34:18Z<p>If you are looking for interoperability between different systems and languages, I would definately go for REST. I've had a lot of problems trying to get SOAP working between .NET and Java, for example.</p>
http://stackoverflow.com/questions/76595/soap-or-rest/76714#767141Answer by Cruachan for SOAP or RESTCruachan2008-09-16T20:34:58Z2008-09-16T20:34:58Z<p>Don't overlook XML-RPC. If you're just after a lightweight solution then there's a great deal to be said for a protocol that can be defined in a couple of pages of text and implemented in a minimal amount of code. XML-RPC has been around for years but went out of fashion for a while - but the minimalist appeal seems to be giving it something of a revival of late.</p>
http://stackoverflow.com/questions/76595/soap-or-rest/76740#767405Answer by Mark Cidade for SOAP or RESTMark Cidade2008-09-16T20:36:37Z2008-09-16T20:36:37Z<p><strong>SOAP</strong> currently has the advantage of better tools where they will generate a lot of the boilerplate code for both the service layer as well as generating clients from any given WSDL. </p>
<p><strong>REST</strong> is simpler, can be easier to maintain as a result, lies at the heart of Web architecture, allows for better protocol visibility, and has been proven to scale at the size of the WWW itself. Some frameworks out there help you build REST services, like Ruby on Rails, and some even help you with writing clients, like ADO.NET Data Services. But for the most part, tool support is lacking.</p>
http://stackoverflow.com/questions/76595/soap-or-rest/76755#7675510Answer by Will Hartung for SOAP or RESTWill Hartung2008-09-16T20:37:56Z2008-09-16T20:37:56Z<p>REST is an architecture, SOAP is a protocol.</p>
<p>That's the first problem.</p>
<p>You can send SOAP envelopes in a REST application.</p>
<p>SOAP itself is actually pretty basic and simple, it's the WSS-* standards on top of it that make it very complex.</p>
<p>If your consumers are other applications and other servers, there's a lot of support for the SOAP protocol today, and the basics of moving data is essentially a mouse-click in modern IDEs.</p>
<p>If your consumers are more likely to be RIAs or Ajax clients, you will probably want something simpler than SOAP, and more native to the client (notably JSON).</p>
<p>JSON packets sent over HTTP is not necessarily a REST architecture, it's just messages to URLs. All perfectly workable, but there are key components to the REST idiom. It is easy to confuse the two however. But just because you're talking HTTP requests does not necessarily mean you have a REST architecture. You can have a REST application with no HTTP at all (mind, this is rare).</p>
<p>So, if you have servers and consumers that are "comfortable" with SOAP, SOAP and WSS stack can serve you well. If you're doing more ad hoc things and want to better interface with web browsers, then some lighter protocol over HTTP can work well also.</p>
http://stackoverflow.com/questions/76595/soap-or-rest/76811#768116Answer by toluju for SOAP or RESTtoluju2008-09-16T20:42:10Z2009-10-20T15:46:10Z<p>REST is a fundamentally different paradigm from SOAP. A good read on REST can be found here: <a href="http://tomayko.com/writings/rest-to-my-wife" rel="nofollow">How I explained REST to my wife</a>. </p>
<p>If you don't have time to read it, here's the short version: REST is a bit of a paradigm shift by focusing on "nouns", and restraining the number of "verbs" you can apply to those nouns. The only allowed verbs are "get", "put", "post" and "delete". This differs from SOAP where many different verbs can be applied to many different nouns (i.e. many different functions). </p>
<p>For REST, the three verbs map to the corresponding HTTP requests, while the nouns are identified by URLs. This makes state management much more transparent than in SOAP, where its often unclear what state is on the server and what is on the client.</p>
<p>In practice though most of this falls away, and REST usually just refers to simple HTTP requests that return results in <a href="http://www.json.org/" rel="nofollow">JSON</a>, while SOAP is a more complex API that communicates by passing XML around. Both have their advantages and disadvantages, but I've found that in my experience REST is usually the better choice because you rarely if ever need the full functionality you get from SOAP.</p>
http://stackoverflow.com/questions/76595/soap-or-rest/76919#769192Answer by Dave Woldrich for SOAP or RESTDave Woldrich2008-09-16T20:50:52Z2008-09-16T20:50:52Z<p>SOAP is useful from a tooling perspective because the WSDL is so easily consumed by tools. So, you can get Web Service clients generated for you in your favorite language.</p>
<p>REST plays well with AJAX'y web pages. If you keep your requests simple, you can make service calls directly from your JavaScript, and that comes in very handy. Try to stay away from having any namespaces in your response XML, I've seen browsers choke on those. So, xsi:type is probably not going to work for you, no overly complex XML Schemas.</p>
<p>REST tends to have better performance as well. CPU requirements of the code generating REST responses tend to be lower than what SOAP frameworks exhibit. And, if you have your XML generation ducks lined up on the server side, you can effectively stream XML out to the client. So, imagine you're reading rows of database cursor. As you read a row, you format it as an XML element, and you write that directly out to the service consumer. This way, you don't have to collect all of the database rows in memory before starting to write your XML output - you read and write at the same time. Look into novel templating engines or XSLT to get the streaming to work for REST.</p>
<p>SOAP on the other hand tends to get generated by tool-generated services as a big blob and only then written. This is not an absolute truth, mind you, there are ways to get streaming characteristics out of SOAP, like by using attachments. </p>
<p>My decision making process is as follows: if I want my service to be easily tooled by consumers, and the messages I write will be medium-to-small-ish (10MB or less), and I don't mind burning some extra CPU cycles on the server, I go with SOAP. If I need to serve to AJAX on web browsers, or I need the thing to stream, or my responses are gigantic, I go REST.</p>
<p>Finally, there are lots of great standards built up around SOAP, like WS-Security and getting stateful Web Services, that you can plug in to if you're using the right tools. That kind of stuff really makes a difference, and can help you satisfy some hairy requirements.</p>
<p>Cheers,
Dave</p>
http://stackoverflow.com/questions/76595/soap-or-rest/76954#769541Answer by gbjbaanb for SOAP or RESTgbjbaanb2008-09-16T20:54:41Z2008-09-16T20:54:41Z<p>I'm sure Don Box created SOAP as a joke - 'look you <em>can</em> call RPC methods over the web' and today groans when he realises what a bloated nightmare of web standards it has become :-)</p>
<p>REST is good, simple, implemented everywhere (so more a 'standard' than the standards) fast and easy. Use REST.</p>
http://stackoverflow.com/questions/76595/soap-or-rest/77018#7701822Answer by mdhughes for SOAP or RESTmdhughes2008-09-16T20:59:47Z2008-09-16T20:59:47Z<p>I built one of the first SOAP servers, including code generation and WSDL generation, from the original spec as it was being developed, when I was working at Hewlett-Packard. I do NOT recommend using SOAP for anything.</p>
<p>The acronym "SOAP" is a lie. It is not Simple, it is not Object-oriented, it defines no Access rules. It is, arguably, a Protocol. It is Don Box's worst spec ever, and that's quite a feat, as he's the man who perpetrated "COM".</p>
<p>There is nothing useful in SOAP that can't be done with REST for transport, and JSON, XML, or even plain text for data representation. For transport security, you can use https. For authentication, basic auth. For sessions, there's cookies. The REST version will be simpler, clearer, run faster, and use less bandwidth.</p>
<p>XML-RPC clearly defines the request, response, and error protocols, and there are good libraries for most languages. However, XML is heavier than you need for many tasks.</p>
http://stackoverflow.com/questions/76595/soap-or-rest/82111#821110Answer by James Strachan for SOAP or RESTJames Strachan2008-09-17T11:18:06Z2008-09-17T11:18:06Z<p>I'd recommend you go with REST first - if you're using Java look at JAX-RS and the <a href="https://jersey.dev.java.net/" rel="nofollow">Jersey</a> implementation. REST is much simpler and easy to interop in many languages. </p>
<p>As others have said in this thread, the problem with SOAP is its complexity when the other WS-* specifications come in and there are countless interop issues if you stray into the wrong parts of WSDL, XSDs, SOAP, WS-Addressing etc.</p>
<p>The best way to judge the REST v SOAP debate is look on the internet - pretty much all the big players in the web space, google, amazon, ebay, twitter et al - tend to use and prefer RESTful APIs over the SOAP ones.</p>
<p>The other nice approach to going with REST is that you can reuse lots of code and infratructure between a web application and a REST front end. e.g. rendering HTML versus XML versus JSON of your resources is normally pretty easy with frameworks like JAX-RS and implicit views - plus its easy to work with RESTful resources using a web browser</p>
http://stackoverflow.com/questions/76595/soap-or-rest/383675#3836750Answer by Mark Beckwith for SOAP or RESTMark Beckwith2008-12-20T19:58:42Z2008-12-20T19:58:42Z<p>Listen to <a href="http://www.se-radio.net/podcast/2008-05/episode-98-stefan-tilkov-rest" rel="nofollow">this podcast</a> to find out. If you want to know the answer without listening, then OK, its REST. But I really do recommend listening.</p>
http://stackoverflow.com/questions/76595/soap-or-rest/1298850#12988500Answer by John Saunders for SOAP or RESTJohn Saunders2009-08-19T09:51:20Z2009-08-19T09:51:20Z<p>One thing that hasn't been mentioned is that a SOAP envelope can contain headers as well as body parts. This lets you use the full expressiveness of XML to send and receive out of band information. REST, as far as I know, limits you to HTTP Headers and result codes.</p>
<p>(otoh, can you use cookies with a REST service to send "header"-type out of band data?)</p>
http://stackoverflow.com/questions/76595/soap-or-rest/1460837#14608370Answer by Travis for SOAP or RESTTravis2009-09-22T15:36:38Z2009-09-22T15:36:38Z<p>Most of the applications I write are server-side C# or Java, or desktop applications in WinForms or WPF. These applications tend to need a richer service API than REST can provide. Plus, I don't want to spend any more than a couple minutes creating my web service client. The WSDL processing client generation tools allow me to implement my client and move on to adding business value.</p>
<p>Now, if I were writing a web service explicitly for some javascript ajax calls, it'd probably be in REST; just for the sake knowing the client technology and leveraging JSON. In my opinion, web service APIs used from javascript probably shouldn't be very complex, as that type of complexity seems to be better handled server-side.</p>
<p>With that said, there some SOAP clients for javascript; I know jQuery has one. Thus, SOAP <i>can</i> be leveraged from javascript; just not as nicely as a REST service returning JSON strings. So if I had a web service that I wanted to be complex enough that it was flexible for an arbitrary number of client technologies and uses, I'd go with SOAP.</p>