REST vs SOAP Web Services
By Pete Freitag
I am seeing a lot of new web services are implemented using a REST style architecture these days rather than a SOAP one. Lets step back a second and explain what REST is.
What is a REST Web Service
The acronym REST stands for Representational State Transfer, this basically means that each unique URL is a representation of some object. You can get the contents of that object using an HTTP GET, to delete it, you then might use a POST, PUT, or DELETE to modify the object (in practice most of the services use a POST for this).
Who's using REST?
All of Yahoo's web services use REST, including Flickr, del.icio.us API uses it, pubsub, bloglines, technorati, and both eBay, and Amazon have web services for both REST and SOAP.
Who's using SOAP?
Google seams to be consistent in implementing their web services to use SOAP, with the exception of Blogger, which uses XML-RPC. You will find SOAP web services in lots of enterprise software as well.
REST vs SOAP
As you may have noticed the companies I mentioned that are using REST api's haven't been around for very long, and their apis came out this year mostly. So REST is definitely the trendy way to create a web service, if creating web services could ever be trendy (lets face it you use soap to wash, and you rest when your tired). The main advantages of REST web services are:
- Lightweight - not a lot of extra xml markup
- Human Readable Results
- Easy to build - no toolkits required
SOAP also has some advantages:
- Easy to consume - sometimes
- Rigid - type checking, adheres to a contract
- Development tools
For consuming web services, its sometimes a toss up between which is easier. For instance Google's AdWords web service is really hard to consume (in CF anyways), it uses SOAP headers, and a number of other things that make it kind of difficult. On the converse, Amazon's REST web service can sometimes be tricky to parse because it can be highly nested, and the result schema can vary quite a bit based on what you search for.
Which ever architecture you choose make sure its easy for developers to access it, and well documented.
An Update in 2020: When this article was written fifteen years ago, SOAP still had a strong base of support, though it was quickly loosing ground to REST. Things like the popularity of things like Ruby on Rails put a fire under REST (by making it really easy to create REST api's). In the end I think SOAP was just too verbose and slow, REST was something that developers didn't need a library to consume and parse, while if you used SOAP you would not attempt to write a raw implementation from scratch. This developer agility I think led to REST being the winner here over time.
REST vs SOAP Web Services was first published on August 03, 2005.
If you like reading about rest, soap, api, web services, or architecture then you might also like:
- PostalMethods - Web Service for Snail Mail
- Going from SOAP to REST Web Services
- Web Distrbuted Data Exchange
- ColdFusion returning empty response with server-error: true
Discuss / Follow me on Twitter ↯
Tweet Follow @pfreitagComments
Thanks
-Luis
And thnx Ed for the article on creating REST WS in C#
REST does have a description language options - HTML Form, WSDL 2.0, or WADL.
See:
http://createtank.com/2009/02/a-web-service-description-for-rest/
http://www.ibm.com/developerworks/webservices/library/ws-restwsdl/
http://plasmasturm.org/log/460/
http://en.wikipedia.org/wiki/XForms#XForms_as_part_of_the_XRX_Application_Architecture
Someone here asked for a sample REST web service. I would go here: http://3.ly/restxdemo. It demonstrates RESTx - an open source project for the creation of RESTful web services, home page: http://restx.mulesoft.org. RESTx introduces a whole new concept in which RESTful web services can be created and consumed.
The reason REST has gotten so popular is that it has an ALTERNATIVE to what SOAP has to offer when it comes to making web services quick and easy.
You can think of the 2 methods like this:
-SOAP being a letter made of an envelope(the container), address field(who is to receive the letter) and the body (the contents inside the letter). This means you cant see what is in a SOAP message until opened.
-RESTful being a post-it where you write the contents on it and slam it up in the left upper corner of the billboard and tell people about it. Now you can't have one post-it going on top of another, meaning that RESTful web services needs a unique URI(link).
This was just a bit about the subject. The main conclusion is that you should think of REST as an alternative to SOAP, being more easy, faster and less complicated than SOAP is to create. At least that is how it is at the moment. As far as i know, Oracle and Microsoft are trying to come up with a solution...
I would add as an advantage of REST, though, that it's built "closer" conceptually to existing technologies, so in my experience it's more hackable in the sense of combining disparate parts together in innovative ways.