Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

Follow up question to this post

For now I have a slight idea about the differences between SOAP and RESTful Services.

My question is when I should use SOAP, and when I should use RESTful; which one is "better" when it comes to performance/speed or request handling?

I'm implementing for the first time in RESTful(java) and I want know more about it; I've dealt with SOAP before.

EDIT

Should I offer some bounty to get an answer to this question?

share|improve this question
2  
@edit, If you want... but you only asked it 2 hours ago, be patient – jmfsg Jan 25 '10 at 13:48
2  
See also, SOAP RPC contrast: en.wikipedia.org/wiki/Representational_State_Transfer#Concept – trashgod Jan 25 '10 at 16:41

6 Answers

up vote 31 down vote accepted

REST is almost always going to be faster. The main advantage of SOAP is that it provides a mechanism for services to describe themselves to clients, and to advertise their existence.

REST is much more lightweight and can be implemented using almost any tool, leading to lower bandwidth and shorter learning curve. However, the clients have to know what to send and what to expect.

In general, When you're publishing an API to the outside world that is either complex or likely to change, SOAP will be more useful. Other than that, REST is usually the better option.

share|improve this answer
From the web service consumer side, when should you use REST and when should you use SOAP? (assuming both options are provided). From what I understand, REST should be used in cases when the consumer wants to access the web services through a browser. Since browsers can understand both XML and JSON. If the web services are to be consumed programmatically there doesn't seem to be any major advantage. In fact SOAP seems to fit the bill since they are more organized (WSDL). I would appreciate to have your thoughts on this. – Andy Dufresne Apr 2 at 5:53
Andy, if the API is simple and the existing calls are not likely to change, REST will be fine. The upside of SOAP having this formal process for describing itself is if the service changes, you'll know right away and be able to adapt to it more easily. – dj_segfault Apr 3 at 13:00

REST vs SOAP Web Services

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.

Freitag, P. (2005). "REST vs SOAP Web Services". Retrieved from http://www.petefreitag.com/item/431.cfm on June 13, 2010

share|improve this answer
8  
Please stop posting this article or links to it. It's from 2005, so not quite relevant. Besides, you're not the author, are you? – John Saunders Jun 20 '12 at 18:46
If REST is supposed to be stateless then how Yahoo etc are using them for websites that require login? isn't that violates 2nd law of REST(stateless) – antnewbee Mar 31 at 17:48

REST is an architecture. REST will give human-readable results. REST is stateless. REST services are easily cacheable.

SOAP is a protocol. It can run on top of JMS, FTP, Http.

share|improve this answer

REST

RESTs sweet spot is when you are exposing a public API over the internet to handle CRUD operations on data. REST is focused on accessing named resources through a single consistent interface.

SOAP

SOAP brings it’s own protocol and focuses on exposing pieces of application logic (not data) as services. SOAP exposes operations. SOAP is focused on accessing named operations, each implement some business logic through different interfaces. Though SOAP is commonly referred to as “web services” this is a misnomer. SOAP has very little if anything to do with the Web. REST provides true “Web services” based on URIs and HTTP. By way of illustration here are few calls and their appropriate home with commentary. getUser(User);

This is a rest operation as you are accessing a resource (data). switchCategory(User, OldCategory, NewCategory)

This is a SOAP operation as you are performing an operation. Yes, either could be done in either SOAP or REST. The purpose is to illustrate the conceptual difference.

Why REST?

Here are a few reasons why REST is almost always the right answer. Since REST uses standard HTTP it is much simpler in just about ever way. Creating clients, developing APIs, the documentation is much easier to understand and there aren’t very many things that REST doesn’t do easier/better than SOAP. REST permits many different data formats where as SOAP only permits XML. While this may seem like it adds complexity to REST because you need to handle multiple formats, in my experience it has actually been quite beneficial. JSON usually is a better fit for data and parses much faster. REST allows better support for browser clients due to it’s support for JSON. REST has better performance and scalability. REST reads can be cached, SOAP based reads cannot be cached. It’s a bad argument (by authority), but it’s worth mentioning that Yahoo uses REST for all their services including Flickr and del.ici.ous. Amazon and Ebay provide both though Amazon’s internal usage is nearly all REST source. Google used to provide only SOAP for all their services, but in 2006 they deprecated in favor of REST source. It’s interesting how there has been an internal battle between rest vs soap at amazon. For the most part REST dominates their architecture for web services.

Why SOAP?

Here are a few reasons you may want to use SOAP. WS-Security

While SOAP supports SSL (just like REST) it also supports WS-Security which adds some enterprise security features. Supports identity through intermediaries, not just point to point (SSL). It also provides a standard implementation of data integrity and data privacy. Calling it “Enterprise” isn’t to say it’s more secure, it simply supports some security tools that typical internet services have no need for, in fact they are really only needed in a few “enterprise” scenarios. WS-AtomicTransaction

Need ACID Transactions over a service, you’re going to need SOAP. While REST supports transactions, it isn’t as comprehensive and isn’t ACID compliant. Fortunately ACID transactions almost never make sense over the internet. REST is limited by HTTP itself which can’t provide two-phase commit across distributed transactional resources, but SOAP can. Internet apps generally don’t need this level of transactional reliability, enterprise apps sometimes do. WS-ReliableMessaging

Rest doesn’t have a standard messaging system and expects clients to deal with communication failures by retrying. SOAP has successful/retry logic built in and provides end-to-end reliability even through SOAP intermediaries.

For more details click here:

share|improve this answer
  1. REST has no WSDL interface definition

  2. REST is over HTTP, but SOAP can be over any transport protocols such HTTP, FTP, STMP, JMS etc.

share|improve this answer
2  
rest has WADL like SOAP has WSDL – ant Feb 29 '12 at 12:56
2  
REST is not just XML, it can be anything (plain text, JSON, HTML etc) you can transfer over HTTP. – GokcenG Jan 3 at 12:23
I think SOAP WSDL is also written in XML – Deepak Lamichhane May 4 at 13:13

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

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