zoukankan      html  css  js  c++  java
  • SOAP 1.1与SOAP 1.2的区别

    SOAP 1.1 request:
    POST /WSShakespeare.asmx HTTP/1.1
    Host: www.xmlme.com
    Content-Type: text/xml; charset=utf-8
    Content-Length: length
    SOAPAction: "http://xmlme.com/WebServices/GetSpeech"
    <?xml version="1.0" encoding="utf-8"?>
    <soap:Envelope xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
      xmlns:xsd="http://www.w3.org/2001/XMLSchema"
      xmlns:soap="http://schemas.xmlsoap.org/soap/envelope/">
      <soap:Body>
        <GetSpeech xmlns="http://xmlme.com/WebServices">
          <Request>string</Request>
        </GetSpeech>
      </soap:Body>
    </soap:Envelope>


    SOAP 1.2 request:
    POST /WSShakespeare.asmx HTTP/1.1
    Host: www.xmlme.com
    Content-Type: application/soap+xml; charset=utf-8
    Content-Length: length
    <?xml version="1.0" encoding="utf-8"?>
    <soap12:Envelope xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
      xmlns:xsd="http://www.w3.org/2001/XMLSchema"
      xmlns:soap12="http://www.w3.org/2003/05/soap-envelope">
      <soap12:Body>
        <GetSpeech xmlns="http://xmlme.com/WebServices">
          <Request>string</Request>
        </GetSpeech>
      </soap12:Body>
    </soap12:Envelope>
    I see 3 differences:
    SOAP 1.2 uses "application/soap+xml" as Content-Type and SOAP 1.1 uses "text/xml".
    SOAP 1.2 does not use SOAPAction header line.
    SOAP 1.2 uses "http://www.w3.org/2003/05/soap-envelope" as the envolope namespace and SOAP 1.1 uses "http://schemas.xmlsoap.org/soap/envelope/"
    主要是报头和 xmlns:soap12不一样

  • 相关阅读:
    get与post的区别
    shell脚本之变量替换
    Oracle sql性能优化
    HTTP协议报头
    Oracle查看表空间和删除表空间
    shell脚本之cat和wc命令
    java设计模式之单例模式
    Wireshark基本介绍和学习TCP三次握手转
    wrong number of arguments (1 for 2)
    PHP生成.url文件 网站常用的保存到桌面功能
  • 原文地址:https://www.cnblogs.com/fengye87626/p/2920913.html
Copyright © 2011-2022 走看看