我有一个使用wsHttpBinding的WCF客户端,我想启用http keep-alive。

我希望可以通过仅更改客户端配置来打开此功能...我已经找到了很多有关如何为basicHttp绑定(bind)打开保持事件的描述,但是wsHttpBinding没有运气...这可能吗?

非常感谢。

这是我的客户绑定(bind):

  <wsHttpBinding>
    <binding name="WSHttpBinding_IRepositoryService" closeTimeout="00:00:10"
      openTimeout="00:00:10" receiveTimeout="00:05:00" sendTimeout="00:05:00"
      bypassProxyOnLocal="false" transactionFlow="false" hostNameComparisonMode="StrongWildcard"
      maxBufferPoolSize="524288" maxReceivedMessageSize="655360" messageEncoding="Mtom"
      textEncoding="utf-8" useDefaultWebProxy="true" allowCookies="false">
      <readerQuotas maxDepth="32" maxStringContentLength="81920" maxArrayLength="163840"
        maxBytesPerRead="409600" maxNameTableCharCount="16384" />
      <reliableSession ordered="true" inactivityTimeout="00:10:00"
        enabled="true" />
      <security mode="Message">
        <transport clientCredentialType="Windows" proxyCredentialType="None"
          realm="">
          <extendedProtectionPolicy policyEnforcement="Never" />
        </transport>
        <message clientCredentialType="Windows" negotiateServiceCredential="true"
          algorithmSuite="Default" establishSecurityContext="true" />
      </security>

    </binding>
</wsHttpBinding>

最佳答案

您必须使用custom binding才能禁用Keep-Alive header ,因为该功能未在任何内置绑定(bind)类中公开。

无需从头开始定义自定义绑定(bind)即可实现此目的的最简单方法是自定义代码中与客户端代理相关联的现有BasicHttpBindingWSHttpBinding实例。

这是一个例子:

var proxy = new MyServiceClient();
var customBinding = new CustomBinding(proxy.Endpoint.Binding);
var transportElement = customBinding.Elements.Find<HttpTransportBindingElement>();
transportElement.KeepAliveEnabled = false;

proxy.Endpoint.Binding = customBinding;

10-07 18:22