Can somebody explain what is REST and what is SOAP in plain english? And how Web Services work?
|
|
You can try reading here: http://www.petefreitag.com/item/431.cfm |
||
|
|
|
|
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. |
|||
|
|
|
|
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:
Representational state transfer (REST):
There are endless debates on REST vs SOAP on google. |
||||
|
|
|
|
||
|
|
|
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-* |
|||
|
|
|
|
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. |
||||
|
|
|
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. |
||
|
