本文介绍了basicHttpBinding的VS的wsHttpBinding的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!
问题描述
在一个WCF终结,什么是basicHttpBinding的和的wsHttpBinding之间的区别?当应该使用哪一个?
In a WCF endpoint, what is the difference between basicHttpBinding and wsHttpBinding? When should each be used?
推荐答案
吨,该材料在那里 - 只是谷歌的WCF basicHttpBinding的的wsHttpBinding
Ton of material on that out there - just google for "WCF basicHttpBinding wsHttpBinding".
您会发现除其他外:
- WCF : BasicHttpBinding compared to WSHttpBinding at SOAP packet level.
- Difference between BasicHttpBinding and WsHttpBindingand many, many more!
很基本:
- basicHttp是SOAP 1.1,wsHttp是SOAP 1.2(它们是完全不同的,尤其当它涉及到SOAP错误)
- 基本是 - 非常基本的。它与旧式的ASMX ASP.NET Web服务兼容,几乎任何其他Web服务栈在那里
- 基本是非常有限的安全设置
- wsHttp是一个极大WS-的实现*标准,并提供更多的功能:安全,可靠的消息传递,事务支持,全双工通信和一大堆更多。
- wsHttp是多少重,更广泛的协议,相容性较差,不太灵活
这篇关于basicHttpBinding的VS的wsHttpBinding的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!