Web Services - SOAP 中 XML 被用来
1、作为数据通讯格式 SOAP Envelope, SOAP Body 和 SOAP Request/Response
<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>
2、描述 Web Service - WSDL
<wsdl:definitions>
<wsdl:types>
definition of types........
</wsdl:types>
<wsdl:message>
definition of a message....
</wsdl:message>
<wsdl
ortType>
definition of a port.......
</wsdl
ortType>
<wsdl:binding>
definition of a binding....
</wsdl:binding>
<wsdl:service>
definition of a service....
</wsdl:service>
<-- extensibility element -->
</wsdl:definitions>