3

我有 WCF 客户端向服务发送请求。我的业务代码调用客户端 API 每秒发送 300 多个请求。但是根据我的服务和 WCF ServicePoint 的性能计数器,我的客户只发送了大约 50 个服务。

我在代码中将 ServicePointManager.DefaultConnectionLimit 增加到 1000,并在服务配置文件中将 maxConCurrentCalls 设置为 1000,但几乎没有改进。

我想 WCF 客户端中可能有队列等待发送请求。有什么方法可以配置它并加速我的客户端。

这是我对客户端的配置:

<basicHttpBinding>
    <binding name="Binding" closeTimeout="00:01:00" openTimeout="00:01:00"
        receiveTimeout="00:10:00" sendTimeout="00:01:00" allowCookies="false"
        bypassProxyOnLocal="false" hostNameComparisonMode="StrongWildcard"
        maxBufferSize="2000000" maxBufferPoolSize="524288" maxReceivedMessageSize="2000000"
        messageEncoding="Text" textEncoding="utf-8" transferMode="Buffered"
        useDefaultWebProxy="false">
      <readerQuotas maxDepth="32" maxStringContentLength="8192" maxArrayLength="16384"
          maxBytesPerRead="4096" maxNameTableCharCount="16384" />
      <security mode="None">
        <transport clientCredentialType="None" proxyCredentialType="None"
            realm="" />
        <message clientCredentialType="UserName" algorithmSuite="Default" />
      </security>
    </binding>
  </basicHttpBinding>
4

1 回答 1

1

您可能达到了外出 http 连接的连接限制:

<system.net>
  <connectionManagement>
     <add address="*" maxconnection="8"/>
  </connectionManagement>
</system.net> 

请注意,默认值为 2。

于 2009-09-14T13:22:28.523 回答