WCF服务单向操作超时

发布于 2024-10-18 08:55:35 字数 122 浏览 4 评论 0原文

WCF 服务中的 OneWay 操作是否只要操作完成就执行,或者 oneway wcf 服务是否存在操作超时。

如果存在任何操作超时配置,那么请告诉我我想增加它,以便 wcf 服务应该花费尽可能多的时间来执行操作。

Does the OneWay operations in WCF service execute as long as the operation is complete or is there any operation timeout for oneway wcf service.

If there is as such any operation timeout configuration then please tell me I want to increase it so that one way wcf service should take as much time it want to execute operation.

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(2

ま柒月 2024-10-25 08:55:35

尝试配置与 app.config 中找到的 WCF 服务的绑定。

系统.servicemodel>绑定> ..>打开超时/发送超时

有关配置设置的更多信息此处

Try configure the bindings to the WCF service found in app.config.

system.servicemodel > bindings > .. > opentimeout / sendtimeout

More information on configuration settings here

清秋悲枫 2024-10-25 08:55:35

您必须将通道转换为 IContextChannel。该接口有一个您可以设置的OperationTimeout 属性。它的位置与位于代理上的常见打开、关闭和连接超时不同。

You have to cast the channel as IContextChannel. This interface has an OperationTimeout property you can set. It's location is different from the usual Open, Close and Connect Timeouts that are located on the proxy.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文