<slide>
	<title>SOAP Document</title>

<blurb fontsize="4.0em">
A SOAP Document must meet the following requirements
</blurb>

<list fontsize="4.0em">
	<bullet>Must have a top-level %Envelope% namespaced to %http://schemas.xmlsoap.org/soap/envelope/%</bullet>
	<bullet>Must %Body% element</bullet>
	<bullet>May contain an optional %Header% and %Fault% elements</bullet>
	<bullet>The contents of %Header% and %Body% must be properly namespaced</bullet>
</list>

<example title="SOAP Document"><![CDATA[<?xml version="1.0"?>
<soap:Envelope
xmlns:soap="http://www.w3.org/2001/12/soap-envelope"
soap:encodingStyle="http://www.w3.org/2001/12/soap-encoding">
 
<soap:Header>
</soap:Header>
      
<soap:Body>
	<soap:Fault>
	</soap:Fault>
</soap:Body>
                       
</soap:Envelope>]]></example>

</slide>