InterviewSolution
| 1. |
What Are The Elements Of Soap Message Structure? |
|
Answer» It is an ordinary XML DOCUMENT that contains the ELEMENTS as a SOAP MESSAGE. Envelope: It defines the start and END of the message. Header: It is an optional element. Contains information about the message being sent. Body: It contains the XML data comprising the message being sent. Fault: It provides the information about errors occurred while processing the message. It is an ordinary XML document that contains the elements as a SOAP message. Envelope: It defines the start and end of the message. Header: It is an optional element. Contains information about the message being sent. Body: It contains the XML data comprising the message being sent. Fault: It provides the information about errors occurred while processing the message. |
|