One 方法内部抛出的异常是否会导致通道出现故障?
如果我在方法中设置 IsOneWay=true
,其中抛出的异常是否会影响通道或客户端?
If I set IsOneWay=true
in a method, does exceptions thrown inside it affect the channel or the client?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
不会有任何异常发送给客户端,但它会对任何不可靠的通道产生故障。
来自 MSDN:
如果您想了解更多详细信息,请查看codeidle 上的博客它将引导您完成单向操作,包括抛出异常时发生的情况。
尽管这听起来很可怕,但它取决于绑定,我现在正在尝试找到合适的资源来解释它: WCF 和单向行为不一致
No exception will make it to the client, but it will fault any unreliable channel.
From MSDN:
Any in case you want some more details check out this blog on codeidle it will walk you through one way operations, including what happens when an exception is thrown.
As scary as this sounds it is dependent on the binding, I am trying to find the appropriate resource now that explains it: WCF And One Way Behavioral Inconsistency