国产探花免费观看_亚洲丰满少妇自慰呻吟_97日韩有码在线_资源在线日韩欧美_一区二区精品毛片,辰东完美世界有声小说,欢乐颂第一季,yy玄幻小说排行榜完本

首頁 > 學院 > 編程設計 > 正文

SOAP第8課:SOAP 實例

2020-12-14 18:53:06
字體:
來源:轉載
供稿:網友
一個 SOAP 實例

在下面的例子中,一個 GetStockPrice 請求被發送到了服務器。此請求有一個 StockName 參數,而在響應中則會返回一個 Price 參數。此功能的命名空間被定義在此地址中: "http://www.example.org/stock"

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 響應:
HTTP/1.1 200 OK
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:GetStockPriceResponse>
      <m:Price>34.5</m:Price>
    </m:GetStockPriceResponse>
  </soap:Body>
  
</soap:Envelope>
發表評論 共有條評論
用戶名: 密碼:
驗證碼: 匿名發表
主站蜘蛛池模板: 南阳市| 沙田区| 新乐市| 东莞市| 闻喜县| 嘉善县| 桓仁| 新郑市| 富平县| 徐水县| 平昌县| 正定县| 佛冈县| 卢湾区| 九江县| 五常市| 朝阳区| 随州市| 仙游县| 诸暨市| 贵定县| 光山县| 巴彦淖尔市| 乌拉特后旗| 安顺市| 许昌市| 台东市| 松溪县| 惠来县| 兴文县| 临夏市| 杭锦后旗| 宁国市| 汝南县| 漯河市| 大连市| 图片| 福安市| 阳春市| 岗巴县| 图木舒克市|