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

Can somebody explain what is REST and what is SOAP in plain english? And how Web Services work?

share|improve this question

10 Answers

Simple explanation about SOAP and REST

SOAP - "Simple Object Access Protocol"

SOAP is a method of transferring messages, or small amounts of information, over the Internet. SOAP messages are formatted in XML and are typically sent using HTTP (hypertext transfer protocol).


Rest - Representational state transfer

Rest is a simple way of sending and receiving data between client and server and it doesn't have very many standards defined. You can send and receive data as JSON, XML or even plain text. It's light weighted compared to SOAP.


enter image description here

share|improve this answer
73  
i am so very pleased by this. You are a hero. – bharal Nov 8 '12 at 18:00
75  
Congratulations, you have the strangest graphic on the internet explaining SOAP vs REST that still makes sense. – jm2 Feb 18 at 15:25
14  
SOAP is much more than sending data in an envelope. However, it's mostly used to send a BLOB to the server, ignoring whatever features SOAP also provides. So basically, most people use SOAP like REST with a standard envelope. (SOAP is a good example of over-engineering) – elmuerte Apr 15 at 14:09
5  
SOAP does in NO WAY force one to use HTTP or XML. HTTP and XML are the things defined in WS-I for interoperability, but one can also send POJOs over JMS. The thing is, that the programmer does not need to care: The service bus manages the transport and the encoding. – koppor Apr 15 at 17:26
8  
New tech site idea: www.techexplainedwithmartinlawrence.com – Morten Apr 16 at 8:27
show 4 more comments

Both methods are used by many of the large players. It's a matter of preference. My preference is REST because it's simpler to use and understand.

SOAP:

  • SOAP builds an XML protocol on top of HTTP or sometimes TCP/IP.
  • SOAP describes functions, and types of data.
  • SOAP is a successor of XML-RPC and is very similar, but describes a standard way to communicate.
  • Several programming languages have native support for SOAP, you typically feed it a web service URL and you can call its web service functions without the need of specific code.
  • Binary data that is sent must be encoded first into a format such as base64 encoded.
  • Has several protocols and technologies relating to it: WSDL, XSDs, SOAP, WS-Addressing

Representational state transfer (REST):

  • REST need not be over HTTP but most of my points below will have an HTTP bias.
  • REST is very lightweight, it says wait a minute, we don't need all of this complexity that SOAP created.
  • Typically uses normal HTTP methods instead of a big XML format describing everything. For example to obtain a resource you use HTTP GET, to put a resource on the server you use HTTP PUT. To delete a resource on the server you use HTTP DELETE.
  • REST is a very simple in that it uses HTTP GET, POST and PUT methods to update resources on the server.
  • REST typically is best used with Resource Oriented Architecture (ROA). In this mode of thinking everything is a resource, and you would operate on these resources.
  • As long as your programming language has an HTTP library, and most do, you can consume a REST HTTP protocol very easily.
  • Binary data or binary resources can simply be delivered upon their request.

There are endless debates on REST vs SOAP on google.

My favorite is this one.

share|improve this answer
14  
REST has nothing to do with HTTP (it is protocol independent), and XML is fine to use within a RESTful architecture. GET/POST/PUT/DELETE is simply using HTTP correctly - necessary for REST but not sufficient. – aehlke Jul 20 '09 at 17:51
4  
How can REST client know what methods and types he may use? In SOAP there is WSDL from which many tools can generate classes and methods. – jlp Jul 23 '10 at 12:10
3  
@jlp: It is up to the REST client developer to properly use the exposed REST interface. – Brian R. Bondy Jul 23 '10 at 13:04
@jlp - The methods a REST developer can use over HTTP are simply GET, PUT, POST and DELETE (and maybe HEAD); simple as that. That is a benefit, not a limitation is and one of the things that makes REST so powerful when compared to an RPC protocol like SOAP. – MikeSchinkel Apr 8 '11 at 4:41
6  
REST simply says 'use a uniform interface'. Since the HTTP Interface [GET, POST, PUT, DELETE, (UPDATE, HEAD)] became the 'uniform interface' of the web, REST (on the web) is somehow dependent on HTTP in my opinion! – Andre Schweighofer Jun 22 '12 at 9:51
show 5 more comments

REST

I understand the main idea of REST is extremely simple. We have used web browsers for years and we have seen how easy, flexible, performing, etc web sites are. HTML sites use hyperlinks and forms as the primary means of user interaction. Their main goal is to allow us, clients, to know only those links that we can use in the current state. And REST simply says 'why not use the same principles to drive computer rather than human clients through our application?' Combine this with the power of the WWW infrastructure and you'll get a killer tool for building great distributed applications.

Another possible explanation is for mathematically thinking people. Each application is basically a state machine with business logic actions being state transitions. The idea of REST is to map each transition onto some request to a resource and provide clients with links representing transitions available in the current state. Thus it models the state machine via representations and links. This is why it's called REpresentational State Transfer.

It's quite surprising that all answers seem to focus either on message format, or on HTTP verbs usage. In fact, the message format doesn't matter at all, REST can use any one provided that the service developer documents it. HTTP verbs only make a service a CRUD service, but not yet RESTful. What really turns a service into a REST service are hyperlinks (aka hypermedia controls) embedded into server responses together with data, and their amount must be enough for any client to choose the next action from those links.

Unfortunately, it's rather difficult to find correct info on REST on the Web, except for the Roy Fielding's thesis. (He's the one who derived REST). I would recommend the 'REST in Practice' book as it gives a comprehensive step-by-step tutorial on how to evolve from SOAP to REST.

SOAP

This is one of the possible forms of RPC (remote procedure call) architecture style. In essence, it's just a technology that allows clients call methods of server via service boundaries (network, processes, etc) as if they were calling local methods. Of course, it actually differs from calling local methods in speed, reliability and so on, but the idea is that simple.

Compared

The details like transport protocols, message formats, xsd, wsdl, etc. don't matter when comparing any form of RPC to REST. The main difference is that an RPC service reinvents bycicle by designing it's own application protocol in the RPC API with the semantics that only it knows. Therefore, all clients have to understand this protocol prior to using the service, and no generic indlfrastructure like caches can be built because of proprietary semantics of all requests. Furthermore, RPC APIs do not suggest what actions are allowed in the current state, this has to be derived from additional documentation. REST on the other hand implies using uniform interfaces to allow various clients to have some understanding of API semantics, and hypermedia controls (links) to highlight available options in each state. Thus, it allows for caching responses to scale services and making correct API usage easily discoverable without additional documentation.

In a way, SOAP (as any other RPC) is an attempt to tunnel through a service boundary treating the connecting media as a black box capable of transmitting messages only. REST is a decision to acknowledge that the Web is a huge distributed information system, to accept the world as is and learn to master it instead of fighting against it.

SOAP seems to be great for internal network APIs, when you control both the server and the clients, and while the interactions are not too complex. It's more natural for developers to use it. However, for a public API that is used by many independent parties, is complex and big, REST should fit better. But this last comparison is very fuzzy.

How Web Services work

Well, this is a too broad question, because it depends on the architecture and technology used in the specific web service. But in general, a web service is simply some application in the Web that can accept requests from clients and return responses. It's exposed to the Web, thus it's a web service, and it's typically available 24/7, that's why it's a service. Of course, it solves some problem (otherwise why would someone ever use a web service) for its clients.

share|improve this answer

I like Brian R. Bondy's answer. I just wanted to add that Wikipedia provides a clear description of REST. The article distinguishes it from SOAP.

REST is an exchange of state information, done as simply as possible.

SOAP is a message protocol that uses XML.

One of the main reasons that many people have moved from SOAP to REST is that the WS-* (called WS splat) standards associated with SOAP based web services are EXTREMELY complicated. See wikipedia for a list of the specifications. Each of these specifications is very complicated.

EDIT: for some reason the links are not displaying correctly. REST = http://en.wikipedia.org/wiki/REST

WS-* = http://en.wikipedia.org/wiki/WS-*

share|improve this answer
SOAP is NOT a protocol. SOAP is about encoding. SOAP is used over many protocols: JMS, http, ... – koppor Apr 15 at 17:23
6  
@koppor You mean other than the fact that it stands for "Simple Object Access Protocol"? Also, do you know what a protocol is? A protocol is basically a set of rules over how two or more things should communicate, which is exactly what SOAP is for, a standard way to communicate. – Demizey Apr 15 at 22:07
2  
@Demizey Do you refer to the most recent version of SOAP, which is 1.2? w3.org/TR/soap12-part1 "SOAP" now stands in its own as in practice it is NOT used as protocol. "SOAP 1.2 will not spell out the acronym." (w3.org/TR/2007/REC-soap12-part0-20070427/#L4697) Are you aware of the layers of the Web Service stack as (e.g.) described in the Book "Web Services Platform Architecture: Soap, Wsdl, Ws-Policy, Ws-Addressing, Ws-Bpel, Ws-Reliable Messaging, and More"? Transport-layer communication is done via HTTP, SMTP, RMI/IIOP, JMS or others. SOAP is used in the messaging layer – koppor Apr 16 at 10:00
Along the line of a SOAP connection, many intermediaries may sit inbetween. This is enabled by the SOAP processing model, which distinguished between the ultimate SOAP receiver and zero or more SOAP intermediaries. The transport protocol may change inbetween. The SOAP message path also enables transparent implementation of the EAI patterns (eaipatterns.com) – koppor Apr 16 at 11:10
2  
It's still a messaging protocol. – Demizey Apr 16 at 15:29
show 1 more comment

This is the simplest explanation you will ever find.

This article takes a husband to wife narrative, where the husband explains to his wife about REST, in pure layman terms. Must read!

how-i-explained-rest-to-my-wife

share|improve this answer
The blog author has taken down the explanation so this answer unfortunately doesn't make any sense. – Sanjay T. Sharma Apr 15 at 14:00
2  
So if this person had titled it "How I explained REST to my computer illiterate domestic partner", there would have been no need to take the article down? Man I hate PC! – gregturn Apr 16 at 17:14
2  
eioba.com/a/1htn/how-i-explained-rest-to-my-wife is a cached copy of the article. It's really quite good at cutting away the technicalese. – gregturn Apr 16 at 17:18

Well I'll begin with the second question: What are Web Services? , for obvious reasons.

WebServices are essentially pieces of logic(which you may vaguely refer to as method) that expose certain functionality or data. The client implementing(technically speaking, consuming is the word) just needs to know what are the parameter(s) the method is going to accept and the type of data it is going to return(if at all it does).

The following Link says it all about REST & SOAP in an extremely lucid manner.

REST vs SOAP

If you also want to know when to choose what (REST or SOAP), all the more reason to go through it!

share|improve this answer

SOAP and REST both refer to ways for different systems to talk to each other.

REST does this using techniques that resemble the communication that your browser has with web servers: using GET to request a web page, POSTing in form fields, etc.

SOAP provides for something similar but does everything through sending blocks of XML back and forth. Another key component of SOAP is WSDL which is an XML document that describes what functions and data elements are supported. WSDLs can be used to programmatically "discover" what functions are supported as well as to generate programming code stubs.

share|improve this answer
1  
That has nothing to do with REST, that's just 'correct usage of HTTP' – aehlke Jul 20 '09 at 19:39
   
HTTP itself is the best example of a RESTful system. – pbreitenbach Jul 21 '09 at 7:10
1  
@pbreitenbach No, HTTP is not, it basically has no notion of hypermedia. But HTML with its hyperlinks and forms is a RESTful system. Actually, it was the prototype of the REST 'specification' – Pavel Gatilov Sep 19 '12 at 19:03
SOAP does NOT force you to use XML encoding. XML encoding is only used if a service offers interoperability. Internally, POJOs may be sent with no encoding in XML. – koppor Apr 15 at 17:24

The problem with SOAP is that it is in conflict with the ideals behind the HTTP stack. Any middleware should be able to work with HTTP requests without understanding the content of the request or response, but for example a regular HTTP caching server won't work with SOAP requests without knowing only which parts of the SOAP content matter for caching. SOAP just uses HTTP as a wrapper for its own communications protocol, like a proxy.

share|improve this answer
1  
It's against the ideals, and we've only just noticed that. It's been around since 1998 or so, and we're only just picking up on it. Damn, we're stupif! – John Saunders Jul 24 '09 at 15:00
No John, "we" as the informed web developer community, have known all along. It's only the slow ones and the ones that are coming out of CS school without a proper education that have just cottoned on. – Nicholas May 10 at 8:32

I think that this is as easy as I can explain it. Please, anyone is welcome to correct me or add to this.

SOAP is a message format used by disconnected systems (like across the internet) to exchange information / data. It does with XML messages going back and forth.

Web services transmit or receive SOAP messages. They work differently depending on what language they are written in.

share|improve this answer
Elaborate on what you mean by "they work differently". SOAP is typically employed as a way for different systems written in different or unknown technologies to talk using a common comprehensible language with clearly defined parameters. – MyItchyChin Apr 15 at 17:25
Web services work differently depending on what language they are written in. Just an unimportant extra detail. – StingyJack Apr 15 at 17:34
Ok, I wasn't sure if you were implying there was something inhibiting interoperability. – MyItchyChin Apr 16 at 15:54

REST is an architecture style for designing networked applications. The idea is that, rather than using complex mechanisms such as CORBA, RPC or SOAP to connect between machines, simple HTTP is used to make calls between machines.

share|improve this answer

protected by Community Apr 9 at 15:38

This question is protected to prevent "thanks!", "me too!", or spam answers by new users. To answer it, you must have earned at least 10 reputation on this site.

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