WCF中如何修改MaxItemsInObjectGraph的限制

在WCF/WebService中,如果返回值过大,比如Array,List,DataSet等达到一定数量级的话,可能引发下面的异常

 

1. 受信Message Quota Size超过65536 (System.ServiceModel.CommunicationException)

 

解决方法:修改客户端配置文件app.configmaxReceivedMessageSize,maxBufferSize 两个属性。

但是,数量级继续增大,还会遇到新的问题:

2. MaxItemsInObjectGraph Quta Size超过65536(InnerException:System.Runtime.SerializationException)

生成XML如下,其中红色部分是被修改的部分:
<behavior name="NewBehavior"> 
    <dataContractSerializer maxItemsInObjectGraph="65536000" /> 
</behavior

...

<endpoint address="http://localhost:3511/Service1.asmx" behaviorConfiguration="NewBehavior
                binding="basicHttpBinding" bindingConfiguration="Service1Soap" 
                contract="WebSvc.Service1Soap" name="Service1Soap" />

[html] view plain copy
  1. <?xml version="1.0" encoding="utf-8" ?>   
  2. <configuration>   
  3.     <system.serviceModel>   
  4.         <behaviors>   
  5.             <endpointBehaviors>   
  6.                 <behavior name="NewBehavior">   
  7.                     <dataContractSerializer maxItemsInObjectGraph="65536000" />   
  8.                 </behavior>   
  9.             </endpointBehaviors>   
  10.         </behaviors>   
  11.         <bindings>   
  12.             <basicHttpBinding>   
  13.                 <binding name="Service1Soap" closeTimeout="00:01:00" openTimeout="00:01:00"   
  14.                     receiveTimeout="00:10:00" sendTimeout="00:01:00" allowCookies="false"   
  15.                     bypassProxyOnLocal="false" hostNameComparisonMode="StrongWildcard"   
  16.                     maxBufferSize="65536000" maxBufferPoolSize="524288" maxReceivedMessageSize="65536000"   
  17.                     messageEncoding="Text" textEncoding="utf-8" transferMode="Buffered"   
  18.                     useDefaultWebProxy="true">   
  19.                     <readerQuotas maxDepth="32" maxStringContentLength="8192" maxArrayLength="16384"   
  20.                         maxBytesPerRead="4096" maxNameTableCharCount="16384" />   
  21.                     <security mode="None">   
  22.                         <transport clientCredentialType="None" proxyCredentialType="None"   
  23.                             realm="" />   
  24.                         <message clientCredentialType="UserName" algorithmSuite="Default" />   
  25.                     </security>   
  26.                 </binding>   
  27.             </basicHttpBinding>   
  28.         </bindings>   
  29.         <client>   
  30.             <endpoint address="http://localhost:3511/Service1.asmx" behaviorConfiguration="NewBehavior"   
  31.                 binding="basicHttpBinding" bindingConfiguration="Service1Soap"   
  32.                 contract="WebSvc.Service1Soap" name="Service1Soap" />   
  33.         </client>   
  34.     </system.serviceModel>   
  35. </configuration> 

转载于:https://www.cnblogs.com/zeroone/archive/2012/04/18/2454790.html

  • 0
    点赞
  • 0
    收藏
    觉得还不错? 一键收藏
  • 0
    评论

“相关推荐”对你有帮助么?

  • 非常没帮助
  • 没帮助
  • 一般
  • 有帮助
  • 非常有帮助
提交
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值