Basics of SOAP - Simple Object Access Protocol Last Updated : 12 Jul, 2025 Comments Improve Suggest changes Like Article Like Report Simple Object Access Protocol(SOAP) is a network protocol for exchanging structured data between nodes. It uses XML format to transfer messages. It works on top of application layer protocols like HTTP and SMTP for notations and transmission. SOAP allows processes to communicate throughout platforms, languages, and operating system, since protocols like HTTP are already installed on all platforms. SOAP was designed by Bob Atkinson, Don Box, Dave Winer, and Mohsen Al-Ghosein at Microsoft in 1998. SOAP was maintained by the XML Protocol Working Group of the World Wide Web Consortium until 2009. Message Format SOAP message transmits some basic information as given below Information about message structure and instructions on processing it.Encoding instructions for application-defined data types.Information about Remote Procedure Calls and their responses.The message in XML format contains four parts- Envelope: This specifies that the XML message is a SOAP message. A SOAP message is an XML document containing a header and a body, both encapsulated within the envelope. Any fault is included within the body of the message.Header: This part is optional. When present, it can provide crucial information about the applications.Body: This contains the actual message being transmitted. Faults are contained within the body tags.Fault: This optional section contains the status of the application and any errors. It should not appear more than once in a SOAP message. Sample Message xml Content-Type: application/soap+xml <env:Envelope xmlns:env="https://www.w3.org/2003/05/soap-envelope"> <env:Header> <m:GetLastTradePrice xmlns:m="Some-URI" /> </env:Header> <env:Body> <symbol xmlns:p="Some-URI" >DIS</symbol> </env:Body> </env:Envelope> Advantages of SOAPSOAP is a light weight data interchange protocol because it is based on XML.SOAP was designed to be OS and Platform independent.It is built on top of HTTP which is installed in most systems.It is suggested by W3 consortium which is like a governing body for the Web.SOAP is mainly used for Web Services and Application Programming Interfaces (APIs). Comment More infoAdvertise with us O omkarchalke Follow Improve Article Tags : Computer Networks Web technologies-HTML and XML HTML and XML Explore Computer Network BasicsBasics of Computer Networking10 min readTypes of Computer Networks7 min readIntroduction to Internet10 min readNetwork Devices9 min readWhat is OSI Model? - Layers of OSI Model13 min readTCP/IP Model7 min readDifference Between OSI Model and TCP/IP Model4 min readPhysical LayerPhysical Layer in OSI Model4 min readTypes of Network Topology11 min readTransmission Modes in Computer Networks (Simplex, Half-Duplex and Full-Duplex)6 min readTypes of Transmission Media9 min readData Link LayerData Link Layer in OSI Model4 min readWhat is Switching?5 min readVirtual LAN (VLAN)7 min readFraming in Data Link Layer6 min readError Control in Data Link Layer4 min readFlow Control in Data Link Layer4 min readPiggybacking in Computer Networks5 min readNetwork LayerNetwork Layer in OSI Model5 min readIntroduction of Classful IP Addressing10 min readClassless Addressing in IP Addressing7 min readWhat is an IP Address?14 min readIPv4 Datagram Header4 min readDifference Between IPv4 and IPv67 min readDifference between Private and Public IP addresses6 min readIntroduction To Subnetting8 min readWhat is Routing?10 min readNetwork Layer Protocols9 min readTransport LayerTransport Layer in OSI Model5 min readTransport Layer Protocols9 min readWhat is TCP (Transmission Control Protocol)?5 min readUser Datagram Protocol (UDP)10 min readSession Layer & Presentation LayerSession Layer in OSI model6 min readPresentation Layer in OSI model4 min readSecure Socket Layer (SSL)10 min readPPTP Full Form - Point-to-Point Tunneling Protocol5 min readMultipurpose Internet Mail Extension (MIME) Protocol4 min readApplication LayerApplication Layer in OSI Model5 min readClient-Server Model3 min readWorld Wide Web (WWW)6 min readIntroduction to Electronic Mail4 min readWhat is a Content Distribution Network and how does it work?4 min readProtocols in Application Layer7 min readAdvanced TopicsWhat is Network Security?8 min readComputer Network | Quality of Service and Multimedia7 min readAuthentication in Computer Network4 min readEncryption, Its Algorithms And Its Future10 min readIntroduction of Firewall in Computer Network7 min readMAC Filtering in Computer Network10 min readWi-Fi Standards Explained4 min readWhat is Bluetooth?6 min readGenerations of wireless communication2 min readCloud Networking11 min readPracticeTop 50 Plus Networking Interview Questions and Answers for 202415+ min readTop 50 TCP/IP Interview Questions and Answers 202515+ min readNetwork Fundamentals Interview Questions - Computer Networks15+ min readLast Minute Notes for Computer Networks14 min readComputer Network - Cheat Sheet15+ min read Like