gpt4 book ai didi

timeout - WCF 超时问题?

转载 作者:行者123 更新时间:2023-12-04 17:27:56 29 4
gpt4 key购买 nike

我有一个基于 WCF 的流程,耗时较长。 WCF 服务在 Azure 中运行(如果有帮助的话)。我认为问题与超时有关:

1) Winforms 客户端在绑定(bind)部分具有以下 .config 设置:

 <wsHttpBinding>
<binding name="XXX" closeTimeout="00:05:00" openTimeout="00:05:00"
receiveTimeout="00:10:00" sendTimeout="00:10:00" bypassProxyOnLocal="false"
transactionFlow="false" hostNameComparisonMode="StrongWildcard"
maxBufferPoolSize="10000000" maxReceivedMessageSize="10000000"
messageEncoding="Text" textEncoding="utf-8" useDefaultWebProxy="true"
allowCookies="false">
<readerQuotas maxDepth="255" maxStringContentLength="8192" maxArrayLength="16384"
maxBytesPerRead="4096" maxNameTableCharCount="16384" />
<reliableSession ordered="true" inactivityTimeout="00:10:00"
enabled="false" />
<security mode="TransportWithMessageCredential">
<transport clientCredentialType="None" proxyCredentialType="None" realm="" />
<message clientCredentialType="UserName" negotiateServiceCredential="true" algorithmSuite="Default" establishSecurityContext="false"/>
</security>
</binding>
</wsHttpBinding>

2) WCF 服务在 web.config 中有以下绑定(bind)部分

   <wsHttpBinding>
<binding name="XXX" maxReceivedMessageSize="10000000" sendTimeout="00:10:00" receiveTimeout="00:10:00" closeTimeout="00:10:00" openTimeout="00:10:00">
<security mode="TransportWithMessageCredential">
<message clientCredentialType="UserName" establishSecurityContext="false" />
</security>
<readerQuotas maxArrayLength="2000000" maxBytesPerRead="10000000" maxStringContentLength="10000000" maxDepth="255" />
</binding>

</wsHttpBinding>

3) 我在 WCF 中有一个长时间运行的方法(通常为 2 分钟)。客户端调用该方法,执行时间超过 1 分钟的方法将被抛出异常。这是最内部的异常:

  <InnerException>
<Type>System.Net.Sockets.SocketException</Type>
<Message>An existing connection was forcibly closed by the remote host</Message>
<StackTrace>
<Frame>at System.Net.Sockets.NetworkStream.Read(Byte[] buffer, Int32 offset, Int32 size)</Frame>
</StackTrace>
</InnerException>
</InnerException>

4)但是,WCF 调用本身已成功完成(我已在服务器端记录了开始/结束)。如何避免异常?

谢谢!

最佳答案

Windows Azure 负载平衡器在 60 秒后终止空闲连接。

关于timeout - WCF 超时问题?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/4858800/

29 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com