(转)webHttpBinding、basicHttpBinding和wsHttpBinding区别_.NET_编程开发_程序员俱乐部

中国优秀的程序员网站程序员频道CXYCLUB技术地图
热搜:
更多>>
 
您所在的位置: 程序员俱乐部 > 编程开发 > .NET > (转)webHttpBinding、basicHttpBinding和wsHttpBinding区别

(转)webHttpBinding、basicHttpBinding和wsHttpBinding区别

 2014/10/22 22:41:49  JF Zhu  程序员俱乐部  我要评论(0)
  • 摘要: (1)webHttpBinding与basicHttpBinding/wsHttpBinding的区别:webHttpBindingistheREST-stylebinding,whereyoubasicallyjusthitaURLandgetbackatruckloadofXMLorJSONfromthewebservicebasicHttpBindingandwsHttpBindingaretwoSOAP
  • 标签:Web 区别 BASIC HTTP

 

(1)webHttpBinding与basicHttpBinding / wsHttpBinding的区别:

  • webHttpBinding is the REST-style binding, where you basically just hit a URL and get back a truckload of XML or JSON from the web service

  • basicHttpBinding and wsHttpBinding are two SOAP-based bindings which is quite different from REST. SOAP has the advantage of having WSDL and XSD to describe the service, its methods, and the data being passed around in great detail (REST doesn't have anything like that - yet). On the other hand, you can't just browse to a wsHttpBinding endpoint with your browser and look at XML - you have to use a SOAP client, e.g. the WcfTestClient or your own app

(2)basicHttpBinding与wsHttpBinding的区别

  • basicHttpBinding is the very basic binding - SOAP 1.1, not much in terms of security, not much else in terms of features - but compatible to just about any SOAP client out there --> great for interoperability, weak on features and security

  • wsHttpBinding is the full-blown binding, which supports a ton of WS-* features and standards - it has lots more security features, you can use sessionful connections, you can use reliable messaging, you can use transactional control, you can use streaming for large data - just a lot more stuff, but wsHttpBinding is also a lot *heavier" and adds a lot of overhead to your messages as they travel across the network

发表评论
用户名: 匿名