up vote 35 down vote favorite
23
share [g+] share [fb]

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

link|improve this question

0% accept rate
feedback

9 Answers

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.

link|improve this answer
3  
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
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
@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
feedback

A very in plain english version of Rest

link|improve this answer
10  
funny that I posted the same link to a similar question and got downvotes :) – Vijay Dev Sep 3 '09 at 18:25
feedback

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-*

link|improve this answer
feedback

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.

link|improve this answer
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
feedback

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.

link|improve this answer
feedback

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.

link|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
feedback

This REST introduction explains the ideas of REST and features some examples. It also compares REST and SOAP.

link|improve this answer
feedback

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 don't have any much standards defined , You can send and receive data as JSON,XML or even a Text. Its Light weighted compared to SOAP.

enter image description here

link|improve this answer
feedback

You can try reading here: http://www.petefreitag.com/item/431.cfm

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.