我有一个WCF服务,从数据库返回1000条记录到客户端。我有一个ASP。NET WCF客户端(我已经在asp.net web应用程序项目中添加了服务引用来使用WCF)。
当我运行客户端应用程序时,我得到以下消息:
传入消息的最大消息大小配额(65536)已为 超过了。如果需要增加配额,使用 MaxReceivedMessageSize属性 适当的绑定元素。
任何帮助吗?如何增加消息大小配额?
我有一个WCF服务,从数据库返回1000条记录到客户端。我有一个ASP。NET WCF客户端(我已经在asp.net web应用程序项目中添加了服务引用来使用WCF)。
当我运行客户端应用程序时,我得到以下消息:
传入消息的最大消息大小配额(65536)已为 超过了。如果需要增加配额,使用 MaxReceivedMessageSize属性 适当的绑定元素。
任何帮助吗?如何增加消息大小配额?
当前回答
在App.config或Web中,您可能需要这样的方法来增加消息大小配额。配置文件:
<bindings>
<basicHttpBinding>
<binding name="basicHttp" allowCookies="true"
maxReceivedMessageSize="20000000"
maxBufferSize="20000000"
maxBufferPoolSize="20000000">
<readerQuotas maxDepth="32"
maxArrayLength="200000000"
maxStringContentLength="200000000"/>
</binding>
</basicHttpBinding>
</bindings>
并在端点配置中使用绑定名称。
...
bindingConfiguration="basicHttp"
...
使用这些值的理由很简单,它们足够大,可以容纳大多数消息。您可以调整该数字以满足您的需要。低默认值基本上是为了防止DOS类型的攻击。将其设置为20000000将允许分布式DOS攻击有效,默认大小为64k将需要非常多的客户端来压倒当前的大多数服务器。
其他回答
如果你正在动态创建你的WCF绑定,下面是使用的代码:
BasicHttpBinding httpBinding = new BasicHttpBinding();
httpBinding.MaxReceivedMessageSize = Int32.MaxValue;
httpBinding.MaxBufferSize = Int32.MaxValue;
// Commented next statement since it is not required
// httpBinding.MaxBufferPoolSize = Int32.MaxValue;
如果您在使用WCF测试客户端时仍然得到这个错误消息,这是因为客户端有一个单独的MaxBufferSize设置。
要纠正这个问题:
右键单击树底部的Config File节点 选择用SvcConfigEditor编辑
将出现一个可编辑的设置列表,包括MaxBufferSize。
注意:自动生成的代理客户端也默认设置MaxBufferSize为65536。
对于HTTP:
<bindings>
<basicHttpBinding>
<binding name="basicHttp" allowCookies="true"
maxReceivedMessageSize="20000000"
maxBufferSize="20000000"
maxBufferPoolSize="20000000">
<readerQuotas maxDepth="200"
maxArrayLength="200000000"
maxBytesPerRead="4096"
maxStringContentLength="200000000"
maxNameTableCharCount="16384"/>
</binding>
</basicHttpBinding>
</bindings>
TCP:
<bindings>
<netTcpBinding>
<binding name="tcpBinding"
maxReceivedMessageSize="20000000"
maxBufferSize="20000000"
maxBufferPoolSize="20000000">
<readerQuotas maxDepth="200"
maxArrayLength="200000000"
maxStringContentLength="200000000"
maxBytesPerRead="4096"
maxNameTableCharCount="16384"/>
</binding>
</netTcpBinding>
</bindings>
重要的是:
如果你试图传递一个复杂的对象,这个对象有很多连接的对象(例如:一个树数据结构,一个有很多对象的列表……),无论你如何增加配额,通信都会失败。 在这种情况下,你必须增加包含对象的计数:
<behaviors>
<serviceBehaviors>
<behavior name="NewBehavior">
...
<dataContractSerializer maxItemsInObjectGraph="2147483646"/>
</behavior>
</serviceBehaviors>
</behaviors>
WCF测试客户端有自己的客户端配置。
运行测试客户端并滚动到底部。 如果双击Config File节点,您将看到XML表示。正如您所看到的,maxReceivedMessageSize是65536。
要编辑它,右键单击配置文件树节点并选择用SvcConfigEditor编辑。 当编辑器打开Bindings时,展开Bindings并双击自动生成的绑定。
您可以在这里编辑所有属性,包括maxReceivedMessageSize。当你完成后,点击文件-保存。
最后,当您回到WCF测试客户端窗口时,单击工具-选项。
注意:当启动服务时,取消选中Always generate配置。
当我在web.config上使用这个设置时,我得到了这个错误
System.ServiceModel.ServiceActivationException
我像这样设置设置:
<service name="idst.Controllers.wcf.Service_Talks">
<endpoint address="" behaviorConfiguration="idst.Controllers.wcf.Service_TalksAspNetAjaxBehavior"
binding="webHttpBinding" contract="idst.Controllers.wcf.Service_Talks" />
</service>
<service name="idst.Controllers.wcf.Service_Project">
<endpoint address="" behaviorConfiguration="idst.Controllers.wcf.Service_ProjectAspNetAjaxBehavior"
binding="basicHttpBinding" bindingConfiguration="" bindingName="largBasicHttp"
contract="idst.Controllers.wcf.Service_Project" />
</service>
</services>
<bindings>
<basicHttpBinding>
<binding name="largBasicHttp" allowCookies="true"
maxReceivedMessageSize="20000000"
maxBufferSize="20000000"
maxBufferPoolSize="20000000">
<readerQuotas maxDepth="32"
maxArrayLength="200000000"
maxStringContentLength="200000000"/>
</binding>
</basicHttpBinding>