Bootstrap

ProtocolException : 已超过传入消息(65536)的最大消息大小配额。

SilverLight调用WCF,提交的是一个List<Linq2SqlEntity>;当List中数据量不大的时候,不会报错;当数据量稍微大一点儿,就会出现这个错误。发生了 System.ServiceModel.ProtocolException
  Message=已超过传入消息(65536)的最大消息大小配额。若要增加配额,请使用相应绑定元素上的 MaxReceivedMessageSize 属性。
  Source=System.ServiceModel
  StackTrace:
  在 System.ServiceModel.Channels.HttpInput.ThrowHttpProtocolException(String message, HttpStatusCode statusCode, String statusDescription)

 

    费了牛劲在网上搜了一通,有的说是要修改behavior的maxItemsInObjectGraph,有的说要修改binding的maxBufferSize/maxReceivedMessageSize,有的说要增加readerQuotas,有的是endpoint没有与自定义binding配置节关联起来,有的说要客户端和服务器端都要改(我的应用中,接受数据的是服务器端,客户端负责提交,所以应该不关客户端的事儿)。。。然后把server端的配置文件调整成下面这样:

   1: <system.serviceModel>
   2:   <behaviors>
   3:     <serviceBehaviors>
   4:       <behavior name="MessageHeaderOperationBehaviourAuthenticationBehavior">
   5:         <dataContractSerializer />
   6:         <serviceMetadata httpGetEnabled="true"/>
   7:         <serviceDebug includeExceptionDetailInFaults="true"/>
   8:       </behavior>
   9:     </serviceBehaviors>
;