2.SOAP 语法

2.SOAP 语法_第1张图片

SOAP 消息的基本结构

<?xml version="1.0"?>

<soap:Envelope xmlns="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:Body>

    <soap:Fault>

    </soap:Fault>
</soap:Envelope>

SOAP Envelope 元素
2.SOAP 语法_第2张图片
2.SOAP 语法_第3张图片

SOAP Header 元素
2.SOAP 语法_第4张图片

2.SOAP 语法_第5张图片

SOAP Body 元素
2.SOAP 语法_第6张图片

SOAP Fault 元素

SOAP HTTP Binding

SOAP 实例

http://www.w3school.com.cn/soap/soap_summary.asp

你可能感兴趣的:(SOAP)