我有一个WCF服务的以下服务器端app.config:
<system.serviceModel>
<bindings>
<wsHttpBinding>
<binding name="default" maxReceivedMessageSize="5000000">
<readerQuotas maxStringContentLength="5000000" maxArrayLength="5000000" />
</binding>
</wsHttpBinding>
</bindings>
<services>
<service behaviorConfiguration="Core.TOAService.Service1Behavior"
name="Core.TOAService.TOAService">
<endpoint address="" binding="wsHttpBinding" contract="Core.TOAService.ITOAService">
<identity>
<dns value="localhost" />
</identity>
</endpoint>
<endpoint address="mex" binding="mexHttpBinding" contract="IMetadataExchange" />
<host>
<baseAddresses>
<add baseAddress="http://localhost:8732/Design_Time_Addresses/Core.TOAService/TOAService/" />
</baseAddresses>
</host>
</service>
</services>
<behaviors>
<serviceBehaviors>
<behavior name="Core.TOAService.Service1Behavior">
<!-- To avoid disclosing metadata information,
set the value below to false and remove the metadata endpoint above before deployment -->
<serviceMetadata httpGetEnabled="True"/>
<!-- To receive exception details in faults for debugging purposes,
set the value below to true. Set to false before deployment
to avoid disclosing exception information -->
<serviceDebug includeExceptionDetailInFaults="true" />
</behavior>
</serviceBehaviors>
</behaviors>
</system.serviceModel>
当我尝试将此服务传递给一个较大的文件(仅约250KB)时,我在svclog文件中记录了一个异常:
最大邮件大小配额 传入消息(65536)已经存在 超标。要增加配额,请使用 MaxReceivedMessageSize属性 适当的绑定元素。
从配置顶部的绑定部分可以看出,我已经尝试将maxReceivedMessageSize设置为5000000,但服务仍然认为它设置为默认值65536.任何想法是什么错或哪个是“适当的”绑定元素?
答案 0 :(得分:28)
还有更多设置:-)在<binding>
标签上尝试“maxBufferPoolSize”和“maxBufferSize”。
但最大的问题是:您的端点不引用该绑定配置!
<endpoint address=""
binding="wsHttpBinding" contract="Core.TOAService.ITOAService">
你需要添加一个引用才能使它变得有用 - 只是将它称为“默认”不起作用.....
<endpoint address=""
binding="wsHttpBinding"
bindingConfiguration="default"
contract="Core.TOAService.ITOAService">
你领先于你的时代;-)在WCF 4(使用.NET 4.0 - 2009年晚些时候的某个时间),您将能够定义“默认绑定配置”而无需明确命名和引用它们 - 但是现在,您需要在端点及其绑定和任何绑定(或行为)配置之间创建链接!
马克
答案 1 :(得分:15)
如果您在使用WCF测试客户端时仍然收到此错误消息,那是因为客户端具有单独的 MaxBufferSize 设置。
要解决此问题:
将显示可编辑设置列表,包括MaxBufferSize。
注意: 默认情况下,自动生成的代理客户端也会将MaxBufferSize设置为65536.
答案 2 :(得分:1)
您需要设置几个地方的大小。在您的情况下,我认为您需要添加读取配额。这是一个例子:
<basicHttpBinding>
<binding name="httpBasicBinding_Service" closeTimeout="00:03:00"
openTimeout="00:03:00" receiveTimeout="00:10:00" sendTimeout="00:03:00"
maxBufferSize="2000001"
maxBufferPoolSize="2000001" maxReceivedMessageSize="2000001">
<readerQuotas maxDepth="2000001" maxStringContentLength="2000001"
maxArrayLength="2000001" maxBytesPerRead="2000001" maxNameTableCharCount="2000001" />
</binding>
</basicHttpBinding>