SOAP Message
  • A SOAP message is a well-formed XML document that contains the following primary elements:

    • Envelope
    • Header
    • Body

  • The basic structure of a SOAP message is:

<?xml version="1.0"?>
<Envelope>
  <Header>
    ...
    ...
  </Header>
  <Body>
    ...
    ...
      <Fault>
        ...
        ...
      </Fault>
  </Body>
</Envelope>

  » View Media Description
Click the Next button to continue.