demouser123
demouser123

Reputation: 4264

Understanding SOAP vs REST from an authentication point of view

So I have currently been assigned to read about Web Services. I was going through the differences between REST, XML-RPC and SOAP and came across this particular link :

REST vs XML-RPC vs SOAP

It mentions this following, in terms of authentication and authorization

As for authentication and authorization, SOAP places the burden in the hands of the application developer. The REST methodology instead takes into account the fact that Web servers already have support for these tasks. Through the use of industry-standard certificates and a common identity management system, such as an LDAP server, developers can make the network layer do all the heavy lifting.

I was not able to understand this particular reference. Can some one explain how this happens in detail?

Upvotes: 0

Views: 221

Answers (1)

Rahul Sharma
Rahul Sharma

Reputation: 89

A web service is method or mechanism to communicate between different applications using open standard such as XML, WSDL, and SOAP. Using web service different device or program communicates over network

Type of WebService

SOAP Web Service RESTFul Web Service

more information you can check :http://entityclass.in/rest/home.htm

Upvotes: 1

Related Questions