- A SOAP message is a well-formed XML document that contains the following primary elements:
- The basic structure of a SOAP message is:
<?xml version="1.0"?>
<Envelope>
<Header>
...
...
</Header>
<Body>
...
...
<Fault>
...
...
</Fault>
</Body>
</Envelope>
|