up vote 109 down vote favorite
94
share [g+] share [fb]

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?

Bounty-Edit:

Now, almost three years later I would like to ask this question again - offering a bounty to encourage an indepth answer. I would especially appreciate information about those concepts and their relation to the PHP-universe and also modern high-end web-applications.

link|improve this question

50% accept rate
feedback

18 Answers

up vote 184 down vote
+100

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.

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".

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.

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.

link|improve this answer
22  
Amen, brother! :) – Stick it to THE MAN Dec 21 '09 at 15:49
10  
You neglected to mention that writing a service-wrapper for a REST web service will take 100000x longer than instantly generating classes from a SOAP web service WSDL. IMO REST is good for getting a blob of data that you don't have to work with. But if you want to get an object, SOAP is way quicker and easier to implement. See my post here for more info: stackoverflow.com/questions/3285704/… – Josh M. Nov 4 '10 at 18:32
10  
If you intend to generate a wrapper, consider using a JSON decoder instead. Let SOAP rest in peace. – Ivo Danihelka Nov 18 '10 at 14:18
1  
It is not object oriented?. Say what?. object->xml serialize->SOAP. – magallanes Apr 28 '11 at 12:17
1  
@JoshM: You're missing the point. SOAP was designed to give access to Objects as in Object Oriented Programming Objects; i.e., data plus methods. It's a terrible idea, because the set of operations that can be performed on an object locally and remotely MUST be very different; pretending latency doesn't exist when dealing with remote invocation is insane. Let it die. – Paul Sonier Jun 10 '11 at 17:54
show 1 more comment
feedback

REST is an architecture, SOAP is a protocol.

That's the first problem.

You can send SOAP envelopes in a REST application.

SOAP itself is actually pretty basic and simple, it's the WSS-* standards on top of it that make it very complex.

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.

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).

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).

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.

link|improve this answer
It seems that most questions on StackOverflow have a degree of "it depends" involved. In this case, you're totally right. – Travis Heseman Sep 22 '09 at 15:47
1  
In this case, I think we are talking about two architectures over a protocol. REST is truly an architecture whereas SOAP tries to define a new protocol on the existing protocol, on top of which you must apply a RPC architecture. Silly-OAP. – Ryan Riley Jun 11 '10 at 7:05
feedback

REST is a fundamentally different paradigm from SOAP. A good read on REST can be found here: How I explained REST to my wife.

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).

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.

In practice though most of this falls away, and REST usually just refers to simple HTTP requests that return results in JSON, 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.

link|improve this answer
1  
The only allowed verbs are "get", "put", and "delete"? What about POST and OPTIONS? – Andrew Swan Oct 19 '09 at 3:28
Sorry, I forgot to mention POST. OPTIONS (and HEAD) is not considered part of the REST specification, however. – toluju Oct 20 '09 at 15:45
2  
@toluju I wasn't aware that REST had a specification. It is an architectural style and although it might be true that OPTIONS is rarely used I don't think you can say the same about HEAD. – Bedwyr Humphreys Oct 22 '09 at 14:57
HEAD, OPTIONS, and TRACE are all methods that inquire about server meta-information rather than about the content at the URL itself. As such they are of marginal use for REST-style applications. I stand corrected in as far a specification. The main specification of significance to REST is the HTTP spec itself. – toluju Oct 23 '09 at 23:03
1  
And HTTP uses POST, OPTIONS and HEAD which are very much part of REST. – Rob Sep 3 '10 at 11:16
show 2 more comments
feedback

SOAP 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.

REST 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.

link|improve this answer
11  
REST is easier to maintain - all you have to do is monitor the API documentation for any minute changes to the structure of the REST methods or the structure of the data they return. If you see a change you will just have to manually make the change in your hand-written code which parses the response of the method. With SOAP you have the burden of right-clicking on your reference and selecting "update" and then fixing a few compile errors. (Sarcasm included free of charge.) – Josh M. Nov 4 '10 at 18:36
3  
@JoshM: If you've hand-written code to parse the response of a generated response based upon a soft and flexible specification, you're not using REST; you've hardcoded to a resource tree. It's the same as coding to c:\windows\temp or whatever, as opposed to querying for the PROPER location to use. Because it works for a while, doesn't make it the right thing to do, nor is it good coding practice. – Paul Sonier Jun 10 '11 at 18:01
@PaulSonier: what's the right way to parse the response from what often is a soft and flexible specification? I get that hardcoded brittle code isn't great, but I'm looking for advice or examples on the client end of RESTful APIs and coming up short so far. I think this is what Josh is getting at -- SOAP needs the ton of boilerplate code but what you get for that is a visible and enforceable contract on document format and type safety; RESTful APIs leave out the contract and the boilerplate and often look simple enough it doesn't matter, but... how do you not hardcode to the resource tree? – metamatt Nov 17 '11 at 1:51
(I get the HATEOAS argument, but using, say, martinfowler.com/articles/richardsonMaturityModel.html as an example -- there's still a fair amount of semantic interpretation needed, after parsing the XML, before you get to the link elements that are the "hypermedia controls".) – metamatt Nov 17 '11 at 1:55
feedback

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.

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.

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.

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.

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.

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.

link|improve this answer
feedback

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.

(otoh, can you use cookies with a REST service to send "header"-type out of band data?)

link|improve this answer
Downvoter: why? – John Saunders Nov 12 '10 at 16:16
1  
Probably because you are wrong? REST can use any predefined or custom HTTP headers you need, plus the request body. – protonfish Aug 17 '11 at 14:53
Maybe not. Look at what you can put into a SOAP header vs. what you can put into an HTTP header. How long can the one line be? – John Saunders Aug 17 '11 at 16:16
The HTTP spec gives no limits on data included in headers and each header field value can span multiple lines. Individual web servers may impose moderate limits, but your implication that you cannot include significant information in HTTP headers is demonstrably false. – protonfish Aug 22 '11 at 18:52
feedback

I know this is an old question but I have to post my answer - maybe someone will find it useful. I can't believe how many people are recommending REST over SOAP. I can only assume these people are not developers or have never actually implemented a REST service of any reasonable size. Implementing a REST service takes a LOT longer than implementing a SOAP service. And in the end it comes out a lot messier, too. Here are the reasons I would choose SOAP 99% of the time:

1) Implementing a REST service takes infinitely longer than implementing a SOAP service. Tools exist for all modern languages/frameworks/platforms to read in a WSDL and output proxy classes and clients. Implementing a REST service is done by hand and - get this - by reading documentation. Furthermore, while implementing these two services, you have to make "guesses" as to what will come back across the pipe as there is no real schema or reference document.

2) Why write a REST service that returns XML anyway? The only difference is that with REST you don't know the types each element/attribute represents - you are on your own to implement it and hope that one day a string doesn't come across in a field you thought was always an int. SOAP defines the data structure using the WSDL so this is a no-brainer.

3) I've heard the complaint that with SOAP you have the "overhead" of the SOAP Envelope. In this day and age, do we really need to worry about a handful of bytes?

4) I've heard the argument that with REST you can just pop the URL into the browser and see the data. Sure, if your REST service is using simple or no authentication. The Netflix service, for instance, uses OAuth which requires you to sign things and encode things before you can even submit your request.

5) Why do we need a "readable" URL for each resource? If we were using a tool to implement the service, do we really care about the actual URL?

Need I go on?

link|improve this answer
7  
That is a nice answer but honestly, you do not understand what is REST. You can read the 2 best answers in this question to find it out. You are comparing them as a similar architectures, while REST being only a paradigm. It's the same as to compare "restaurant etiquette" with "pizza". Is it better to eat with a fork and a knife or to eat pizza? "I'd go with pizza" - you say. And as first answer suggests, you can easily use both - eat pizza with a fork and a knife. – Max Jul 30 '10 at 7:29
"In this day and age, do we really need to worry about a handful of bytes?" Umm, yes we do! From where I am, I can play many online computer games, but Blizzard's World of Warcraft Developers subscribed to your view and never bothered to optimize network traffic, hence its the only game I get constant disconnects from. For being such an old game, WoW has very heavy network traffic. That's not good in any day and age, because there will always be those with marginal connections where a wasteful approach to save you some development time will just break it. – Tsais Sep 3 '10 at 10:59
5  
In short, you seem to be saying, "SOAP is better because more tools exist to help you with it". While this is a valid point, be careful not to write off REST just because of this; it's easier to make a webpage in a WYSIWYG editor than to code HTML by hand, but that doesn't mean it's always the right answer. The value of REST is that it recognizes the HTTP spec created in the early 90s already solved many of the problems SOAP attempts to solve all over again. – keithjgrant Sep 3 '10 at 17:16
feedback

I'm sure Don Box created SOAP as a joke - 'look you can call RPC methods over the web' and today groans when he realises what a bloated nightmare of web standards it has become :-)

REST is good, simple, implemented everywhere (so more a 'standard' than the standards) fast and easy. Use REST.

link|improve this answer
feedback

I'd recommend you go with REST first - if you're using Java look at JAX-RS and the Jersey implementation. REST is much simpler and easy to interop in many languages.

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.

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.

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

link|improve this answer
1  
+1 re "The best way to judge..." an good example is Google's Javascript API. Originally in SOAP, then in response to developer complaints, retooled in REST. Shortly after it became Google #1 API (by no. of requests)--surprised that it beats maps API but apparently it did (according to lead developer on JS API). – doug Jul 24 '10 at 0:40
feedback

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.

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.

With that said, there some SOAP clients for javascript; I know jQuery has one. Thus, SOAP can 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.

link|improve this answer
feedback

It's nuanced.

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.

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.

link|improve this answer
feedback

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.

I'm curious as to what others think.

link|improve this answer
feedback

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.

link|improve this answer
feedback

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.

link|improve this answer
feedback

Listen to this podcast to find out. If you want to know the answer without listening, then OK, its REST. But I really do recommend listening.

link|improve this answer
feedback

I am looking at the same issue. Seems to me that actually REST is quick and easy and good for lightweight calls and responses and great for debugging (what could be better than pumping a URL into a browser and seeing the response).

However where REST seems to fall down is to do with the fact that its not a standard (although it is comprised of standards). Most programming libraries have a way of inspecting a WSDL to automatically generate the client code needed to consume a SOAP based services. Thus far consuming REST based web services seems a more adhoc approach of writing an interface to match the calls that are possible. Making a manual http request then parsing the response. This in itself can be dangerous.

The beauty of SOAP is that once a WSDL is issued then business' can structure their logic aorund that set contract any change to the interface will change the wsdl. There isnt any room for manouvre. You can validate all requests against that WSDL. However because a WSDL doesnt properly describe a REST service then you have no defined way of agreeing on the interface for communication.

From a business perspective this does seem to leave the communication open to interpretation and change which seems like a bad idea.

The top 'Answer' in this thread seems to say that SOAP stands for Simple Object-oriented Access Protocol, however looking at wiki the O means Object not Object-oriented. They are different things.

I know this post is very old but thought I should respond with my own findings.

link|improve this answer
feedback

REST is an architecture invented by Roy Fielding and described in his dissertation Architectural Styles and the Design of Network-based Software Architectures. Roy is also the main author of HTTP - the protocol that defines document transfer over the World Wide Web. HTTP is a RESTful protocol. When developers talk about "using REST Web services" it is probably more accurate to say "using HTTP."

SOAP is a XML-based protocol that tunnels inside an HTTP request/response, so even if you use SOAP, you are using REST too. There is some debate over whether SOAP adds any significant functionality to basic HTTP.

Before authoring a Web service, I would recommend studying HTTP. Odds are your requirements can be implemented with functionality already defined in the spec, so other protocols won't be needed.

link|improve this answer
feedback

I think that both has its own place. In my opition:

SOAP: A better choice for integration between legacy/critical systems and a web/web-service system, on the foundation layer, where WS-* make sense (security, policy, etc.).

RESTful: A better choice for integration between websites, with public API, on the TOP of layer (VIEW, ie, javascripts taking calls to URIs).

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.