Soap Protocol
06/03/2022 21:16
Parent: [[]] Tags: #
What is soap?:
SOAP message has four XML elements:
- Envelope - contains the start and end of the soap message (envelopes everything)
- Header - specifies application level requirements(authentication status)
- Body - Contains the body of the message(XML requests and response codes)(must)
- Fault - indicate any error messages.(inside body)
Soap bindings use HTTP to show how the messages are exchanged while soap specs define the structure of soap messages.
SOAP is used for Remote Procedure calls(RPC)