33

我有一个使用 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”或“非常小的字符串”组成 - 所以,它不是由于大小,如果是的话 - 应该是一致的失败..

建议?

4

3 回答 3

43

尝试将超时值添加到服务和客户端:

<binding name="BasicHttpBinding_SomeName" closeTimeout="00:01:00"
    openTimeout="00:01:00" receiveTimeout="00:10:00"
    sendTimeout="00:10:00" maxBufferPoolSize="2147483647"
    maxBufferSize="2147483647" maxReceivedMessageSize="2147483647">
于 2014-05-02T15:51:29.763 回答
13

您的请求似乎在处理之前在服务器上排队,然后开始超时。你可以在这里尝试几件事,看看到底发生了什么

1) 尝试限制您的 WCF 服务,例如:尝试增加您的并发会话。看看 WCF 节流

2) 尝试在此处使用 PerCall 而不是 Using Sessions 以确保没有会话保留在那里。这是您可以在界面上执行的删除会话的操作

[ServiceContract(Namespace="YOUR NAMESPACE", SessionMode=SessionMode.NotAllowed)]

以及实现这些接口的合同类

ServiceBehavior(InstanceContextMode = InstanceContextMode.PerCall)]

并且 .... 您应该启用跟踪以查看到底发生了什么。

于 2012-06-26T21:34:44.873 回答
4

检查此性能计数器 - ASP.NET Requests Queued

一个 Web 应用程序可以托管许多网页和服务。默认情况下,IIS 每个 CPU 核心仅处理 12 个并发请求。

这意味着即使您的服务很快但其他页面/服务很慢,您的请求也必须在队列中等待才能执行。

ASP.NET Requests Queued应该为零或接近于零。

请参阅MSDN 上的 ASP.NET 性能计数器

于 2012-06-26T21:28:30.667 回答