我有一个使用wsHttpBinding的WCF客户端,我想启用http keep-alive。
我希望我可以通过更改客户端配置来启用此功能...我已经找到了很多关于如何为basicHttp绑定启用keep-alives的描述,但没有运气wsHttpBinding ...是这可能吗?
非常感谢。
这是我的客户端绑定:
<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>
答案 0 :(得分:22)
您必须使用custom binding才能禁用Keep-Alive
标头,因为该功能未在任何内置绑定类中公开。
无需从头开始定义自定义绑定即可实现此目的的最简单方法是在代码中自定义与客户端代理关联的现有BasicHttpBinding或WSHttpBinding实例。
以下是一个例子:
var proxy = new MyServiceClient();
var customBinding = new CustomBinding(proxy.Endpoint.Binding);
var transportElement = customBinding.Elements.Find<HttpTransportBindingElement>();
transportElement.KeepAliveEnabled = false;
proxy.Endpoint.Binding = customBinding;
答案 1 :(得分:4)
默认情况下,在所有基于HTTP的绑定上启用Keep alive,并且无法将其关闭。如果要将其关闭,则必须创建全新的自定义绑定,并在keepAliveEnabled
绑定元素上将httpTransport
设置为false。