Windows 工作流程超时错误

发布于 2024-11-28 14:44:27 字数 597 浏览 1 评论 0原文

当我在工作流程中调用接收活动时,它在 1 分钟后显示超时错误。

我尝试通过如下修改 web.config 来增加超时,但没有用。

<bindings>
      <basicHttpBinding>
        <binding name="longTimeoutBinding" closeTimeout="10:01:00" openTimeout="10:01:00"  maxReceivedMessageSize="2147483647"
          maxBufferSize="2147483647" maxBufferPoolSize="2147483647" receiveTimeout="10:10:00" sendTimeout="10:10:00" >
          <security mode="None" />          
        </binding>
      </basicHttpBinding>
    </bindings>

当 WCF 服务之一感染大量数据时,我也遇到类似的问题。

谁能帮我找出我在这里缺少的东西。

When i call an recevive activity in Workflow, it is showing timeout error after 1 minute.

I tried to increase the timeout by modifying the web.config as follows, but no use.

<bindings>
      <basicHttpBinding>
        <binding name="longTimeoutBinding" closeTimeout="10:01:00" openTimeout="10:01:00"  maxReceivedMessageSize="2147483647"
          maxBufferSize="2147483647" maxBufferPoolSize="2147483647" receiveTimeout="10:10:00" sendTimeout="10:10:00" >
          <security mode="None" />          
        </binding>
      </basicHttpBinding>
    </bindings>

I have similar problem with one of WCF service also when it fectes large number of data.

Can anyone help me to find out what i am missing here.

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

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

发布评论

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

评论(1

吻风 2024-12-05 14:44:27

您是否也在客户端设置了这些值?客户端可能放弃等待回复。

  • 您能否尝试将超时减少到 15 秒,以验证这些配置是否已被使用。
  • 您还可以发布您收到的异常吗

Have you also set these values on the client side? It could be that the client gives up waiting for a reply.

  • Could you try and reduce the timeout to 15 seconds to verify that these configs are the ones that are used.
  • Could you also post the exception that you get
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文