Wednesday, August 20, 2014

What is SOAP?

SOAP, Simple Object Access Protocol is a communication protocol, a way to structure data before transmitting it, is based on XML standard. It is developed to allow communication between applications of different platforms and programming languages via internet.
It can use range of protocols such as HTTP, FTP, SMTP, Post office protocal 3(POP3) to carry documents.
Http-Get, Http-Post works with name/value pair which means transferring complex object is not possible with these protocols, whereas SOAP serializes complex structure, such as ASP.NET DataSets, complex arrays, custom types and XML nodes before transmitting and thus allows exchange of complex objects between applications.
Two components can easily communicate using Remote Procedure Calls protocol. But because of their compatibility and security issues, most of firewalls and proxy server block this type of messages. SOAP uses HTTP channel to transport which makes it widely accepted protocal over the internet.

Related Posts:

  • Explain how to document web services. ASP.NET web services are considered as self documenting as they provides all information about what methods are available and what parameters they require using XML based standard called WSDL. We can also provide addition … Read More
  • Advantages of .Net Web Services Web Services are supported on a wide range of platforms. Web services may extend its interface and add new methods without affecting the clients as long as they still provide the old methods and parameters. A client makes… Read More
  • Web services vs. CORBA and DCOM Web services Web services use HTTP protocol for sending and receiving messages between the applications.  The data encoding in web services is based on XML.  Web services are defined using WSDL (Web Services Descr… Read More
  • What is UDDI? UDDI stands for Universal Description, Discovery and Integration. It is an open,  Internet-based specification that offers directory service for storing information  about web services. … Read More
  • What is WSDL? WSDL stands for Web Services Description Language, an XML-based language  that describes Web services and how to access and locate them. … Read More

0 comments:

Post a Comment