我有一个瘦WCF客户端,它正在调用WCF服务。 WCF执行良好,直到需要大量二进制传输...然后调用似乎堆叠然后超时。应用程序已经死了,直到appPool被回收。
以下是设置:
SERVER:
<wsHttpBinding>
<binding
name="wsHttpEndpointBinding"
maxBufferPoolSize="5242880"
maxReceivedMessageSize="5242880">
<readerQuotas
maxDepth="32"
maxStringContentLength="5242880"
maxArrayLength="1073741824"
maxBytesPerRead="2147483646"
maxNameTableCharCount="16384" />
<security mode="Message">
<message clientCredentialType="Certificate" />
</security>
</binding>
</wsHttpBinding>
客户:
<wsHttpBinding>
<binding
name="WebServices"
closeTimeout="00:01:00"
openTimeout="00:01:00"
receiveTimeout="00:10:00"
sendTimeout="00:01:00"
bypassProxyOnLocal="false"
transactionFlow="false"
hostNameComparisonMode="StrongWildcard"
maxBufferPoolSize="5242880" maxReceivedMessageSize="52428800" messageEncoding="Text" textEncoding="utf-8" useDefaultWebProxy="true" allowCookies="false">
<readerQuotas maxDepth="32" maxStringContentLength="123487960" maxArrayLength="12621440" maxBytesPerRead="2147483646" maxNameTableCharCount="16384"/>
<reliableSession ordered="true" inactivityTimeout="00:10:00" enabled="false"/>
<security mode="Message">
<transport clientCredentialType="Windows" proxyCredentialType="None" realm="">
</transport>
<message clientCredentialType="Certificate" negotiateServiceCredential="true" algorithmSuite="Default" establishSecurityContext="true"/>
</security>
</binding>
</wsHttpBinding>
显而易见的问题是,从数据库中检索二进制内容的僵局似乎并非如此。强烈的外表是某些东西堆积起来而不会被释放。
TIA。
答案 0 :(得分:0)
您是否尝试过在服务器上设置超时?
我怀疑服务器可能会超时,因为默认超时相对较低(我相信1分钟)。客户端配置中指定的超时仅适用于客户端,而不适用于服务器。