This question already has an answer here:
What does the WS mean in WCF?
(1个答案)
4年前关闭。
如this question中所述,在WCF中,有几种不同类型的基于HTTP的绑定(bind):
BasicHttpBinding wsHttpBinding WebHttpBinding
但是“ws”在
(1个答案)
4年前关闭。
如this question中所述,在WCF中,有几种不同类型的基于HTTP的绑定(bind):
但是“ws”在
wsHttpBinding
中代表什么呢? 最佳答案
“Ws”是“Web服务”的缩写。
该名称来自WS-Security (Web Services Security),它是用于解决SOAP协议(protocol)的安全性和完整性问题的规范。
当可操作性不太重要但安全性更重要时,WsHttpBinding
是绑定(bind)用途(而不是BasicHttpBinding
)的事实,这一切都很好地发挥了作用。有关这两者的详细信息,请参见this answer。
10-08 18:11