SOAP 1.1与SOAP 1.2的区别

====

SOAP 1.1request:

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"


  xmlns:xsd="http://www.w3.org/2001/XMLSchema"
  xmlns:soap="http://schemas.xmlsoap.org/soap/envelope/">
 
   
      string
   
 




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


  xmlns:xsd="http://www.w3.org/2001/XMLSchema"
  xmlns:soap12="http://www.w3.org/2003/05/soap-envelope">
 
   
      string
   
 


I see 3 differences:
SOAP 1.2 uses "application/soap+xml" as Content-Type and SOAP 1.1uses "text/xml".
SOAP 1.2 does not use SOAPAction header line.
SOAP 1.2 uses "http://www.w3.org/2003/05/soap-envelope" as theenvolope namespace and SOAP 1.1 uses"http://schemas.xmlsoap.org/soap/envelope/"

主要是报头和 xmlns:soap12不一样

=====


技巧: SOAP 1.2 与 GET 请求

http://www.ibm.com/developerworks/cn/xml/x-tipgetr/


=====

W3C Standard

http://www.w3.org/standards/techs/soap#w3c_all


===


你可能感兴趣的:(SOAP 1.1与SOAP 1.2的区别)