soap webservice
时间: 2023-12-23 15:03:59 浏览: 148
soap_webservice
SOAP-WebServices是一种基于SOAP协议的Web服务实现方案。它使用SOAP(Simple Object Access Protocol)进行服务调用,使用WSDL(Web Services Description Language)描述服务接口,使用UDDI(Universal Description, Discovery, and Integration)进行服务发现。SOAP-WebServices是早期的一种实现Web服务的方案,现在已经过时,大多数人使用REST来实现Web服务。
SOAP请求的示例如下:
```xml
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>
```
阅读全文