我有一个使用 WCF 与网络服务器通信的小型应用程序。该程序被大约 200 个客户端使用,每个客户端以大约 5-20 个请求/分钟的速度发送。
查看我经常得到的错误日志:
00:00:59.9989999 后等待回复时请求通道超时
请求如下:
ClientService Client = new ClientService();
Client.Open();
Client.updateOnline(userID);
Client.Close();
这是 app.config
<configuration>
<configSections>
</configSections>
<startup><supportedRuntime version="v2.0.50727"/></startup><system.serviceModel>
<bindings>
<wsHttpBinding>
<binding name="WSHttpBinding_IClientService" closeTimeout="00:01:00"
openTimeout="00:01:00" receiveTimeout="00:10:00" sendTimeout="00:01:00"
bypassProxyOnLocal="false" transactionFlow="false" hostNameComparisonMode="StrongWildcard"
maxBufferPoolSize="524288" maxReceivedMessageSize="65536"
messageEncoding="Text" textEncoding="utf-8" useDefaultWebProxy="true"
allowCookies="false">
<readerQuotas maxDepth="32" maxStringContentLength="8192" maxArrayLength="16384"
maxBytesPerRead="4096" maxNameTableCharCount="16384" />
<reliableSession ordered="true" inactivityTimeout="00:10:00"
enabled="false" />
<security mode="None">
<transport clientCredentialType="Windows" proxyCredentialType="None"
realm="" />
<message clientCredentialType="Windows" negotiateServiceCredential="true" />
</security>
</binding>
</wsHttpBinding>
</bindings>
<client>
<endpoint address="PATH TO SERVICE"
binding="wsHttpBinding" bindingConfiguration="WSHttpBinding_IClientService"
contract="IClientService" name="WSHttpBinding_IClientService">
<identity>
<dns value="localhost" />
</identity>
</endpoint>
</client>
</system.serviceModel>
每天大约有 200-800 次“多次通话”失败。大约 n-1 是可以的。我很困惑这个问题可能是什么。查看服务器统计信息,几乎没有汗水 - 每个请求需要不到 2 秒的时间来处理。它发送的数据由“int”或“非常小的字符串”组成 - 所以,它不是由于大小,如果是的话 - 应该是一致的失败..
建议?