function readOnly(count){ }
Starting November 20, the site will be set to read-only. On December 4, 2023,
forum discussions will move to the Trailblazer Community.
+ Start a Discussion
discussionsdiscussions 

Webservices

What is the diffarence between SOAP AND REST?

Best Answer chosen by Admin (Salesforce Developers) 
sfdcfoxsfdcfox

Both SOAP and REST are HTTP-based protocols designed to allow an application to access another through a defined API. SOAP is "strongly typed" compared to REST, and has a WSDL that allows a program (usually an IDE) to discover what methods and parameters are supported. However, SOAP is XML-based, while REST normally uses JSON (but can use XML), the result of which means smaller messages, more suited for mobile and slower networks, requiring less CPU power, memory, and bandwidth. Even REST+XML requires less bandwidth than SOAP, because even the headers in SOAP are in XML. Usually, you will use REST if you are developing for a mobile platform or in JavaScript, and SOAP if you are using a modern language that prefers SOAP (such as PHP).

All Answers

sivaextsivaext

Hi

 

 Soap Api - it uses authentication with username and password and communicationg with xml messages. 

 

  Rest Api - it uses http callout and token authentication used OAuth protocol. it is light weight and works well in mobile    applications.

 

http://wiki.developerforce.com/page/REST_API

 

http://www.salesforce.com/us/developer/docs/api/index.htm

 

 

sfdcfoxsfdcfox

Both SOAP and REST are HTTP-based protocols designed to allow an application to access another through a defined API. SOAP is "strongly typed" compared to REST, and has a WSDL that allows a program (usually an IDE) to discover what methods and parameters are supported. However, SOAP is XML-based, while REST normally uses JSON (but can use XML), the result of which means smaller messages, more suited for mobile and slower networks, requiring less CPU power, memory, and bandwidth. Even REST+XML requires less bandwidth than SOAP, because even the headers in SOAP are in XML. Usually, you will use REST if you are developing for a mobile platform or in JavaScript, and SOAP if you are using a modern language that prefers SOAP (such as PHP).

This was selected as the best answer
Sunil SharmaSunil Sharma

In REST, each unique URL is a representation of some object (with some ID). REST provides true “Web services” based on URIs and HTTP. While SOAP brings it’s own protocol and focuses on exposing pieces of application logic (not data) as services. SOAP exposes operations means that SOAP is focused on accessing named operations, each implement some business logic through different interfaces.