- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
What You Need To Know About One-Way Calls, Callbacks, And Events文章讲述:
The fact that the client doesn't care about the result of the invocation does not mean the client doesn't care if the invocation took place at all. In general, you should turn on reliability for your services, even for one-way calls
我试图找出如何实现可靠性,但没有找到任何有意义的东西。
你能帮帮我吗:
非常感谢!
最佳答案
我假设您指的是链接文章的作者 Juval Lowy 在“Programming WCF Services”中描述的消息可靠性(因此书中也逐字逐句地引用了这句话)。
可靠性仅对某些绑定(bind)有效。以这个 TCP 绑定(bind)为例。在你的配置文件中:
<binding>
<netTcpBinding>
<binding name="MyTcpBinding">
<reliableSession enabled="true" />
</binding>
</netTcpBinding>
</binding>
为了检查可靠性,我将引用这本书(第 66 页):
Message reliability does not guarantee message delivery. All it provides is a guarantee that if the message does not reach its destination, the sender will know about it.
我不知道发件人是怎么知道的,我从来没有遇到过,但希望它能给你更多的洞察力,让你更深入地研究这个话题。
进一步阅读:
关于wcf - 如何为单向方法启用可靠性?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/5318192/
我是一名优秀的程序员,十分优秀!