我对 SOAP 消息和 WSDL 如何结合感到困惑?我已经开始研究 SOAP 消息,例如:
POST /InStock HTTP/1.1
Host: www.example.org
Content-Type: application/soap+xml; charset=utf-8
Content-Length: nnn
<?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:Body xmlns:m="http://www.example.org/stock">
<m:GetStockPrice>
<m:StockName>IBM</m:StockName>
</m:GetStockPrice>
</soap:Body>
</soap:Envelope>
所有 SOAP 消息都是 WSDL 的吗?SOAP 是接受自己的“ SOAP 消息”还是“ WSDL 消息”的协议?如果它们不同,那么什么时候应该使用 SOAP 消息,什么时候应该使用 WSDL 消息?
要是能澄清一下就好了。