InterviewSolution
| 1. |
What Does A Soap Document Contain? |
|
Answer» Envelope element is the TOP most TAG which IDENTIFIES the XML document as a SOAP message. Followed by Envelope element, you see the HEADER element that has header information. The Body element SPECIFIES the call and response information. Finally, you have a Fault element which contains errors and status information. Envelope element is the top most tag which identifies the XML document as a SOAP message. Followed by Envelope element, you see the header element that has header information. The Body element specifies the call and response information. Finally, you have a Fault element which contains errors and status information. |
|