我有一个返回大量数据的WCF服务。以至于我需要增加maxBufferSize和maxReceivedMessageSize。我的端点和绑定看起来像这样:
<endpoint
address=""
binding="basicHttpBinding"
bindingConfiguration="ExtendedBinding"
contract="NAThriveExtensions.INableAPI"
/>
<bindings>
<basicHttpBinding>
<binding
name="ExtendedBinding"
maxBufferSize="655360"
maxReceivedMessageSize="655360" >
</binding>
</basicHttpBinding>
</bindings>
据我所知,上面配置正确。当我通过WCFTestClient访问我的webSerice时(该服务要么在VS或IIS中托管),我检查配置和
1)客户端部分中没有我的bindingConfiguration名称
<client>
<endpoint
address="http://wikittybam/NAThriveExtensions/NableAPI.svc"
binding="basicHttpBinding"
bindingConfiguration="BasicHttpBinding_INableAPI"
contract="INableAPI" name="BasicHttpBinding_INableAPI" />
</client>
2)被吸入客户端的绑定没有更新的maxZBufferSize或maxReceivedMessageSize,并且传输和消息安全存根被以某种方式拉出。
<bindings>
<basicHttpBinding>
<binding name="BasicHttpBinding_INableAPI" closeTimeout="00:01:00"
openTimeout="00:01:00" receiveTimeout="00:10:00" sendTimeout="00:01:00"
allowCookies="false" bypassProxyOnLocal="false"
hostNameComparisonMode="StrongWildcard"
maxBufferSize="65536" maxBufferPoolSize="524288" maxReceivedMessageSize="65536"
messageEncoding="Text" textEncoding="utf-8" transferMode="Buffered"
useDefaultWebProxy="true">
<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>
</bindings>
我知道bindingConfiguration可以工作,因为我能够通过WCFTestClient测试传输安全性。任何见解都将不胜感激。
谢谢!
答案 0 :(得分:2)
据我记忆,绑定参数的详细信息未公布在已发布的元数据中。使用VS / Svcutil生成的服务代理包含所有这些的唯一原因是,因为它们非常愚蠢并且使用所有值序列化绑定配置,即使它们都包含标准默认值!
IOW,你将不得不手动调整你的客户端配置。
答案 1 :(得分:1)
并非所有绑定参数都被转移。 Morover消息大小配置可防御拒绝服务攻击,因此每个服务和客户端都可以拥有自己的配置,如果每次重新生成代理时都覆盖此配置,那么将会很糟糕。它被称为maxReceiveMessageSize,因此它只检查 incomming 消息的大小。您必须在接收一侧将此参数设置为预期的邮件大小。例如,如果您只打算从服务下载大型数据集,则不需要在该服务端配置高值,因为它不会接收此数据集,而是会发送它。在客户端,您必须设置此参数,否则将不处理消息。