已超过传入消息(65536)的最大消息大小配额。若要增加配额,请使用相应绑定元素上的 MaxReceivedMessageSize 属性。

错误:已超过传入消息(65536)的最大消息大小配额。若要增加配额,请使用相应绑定元素上的 MaxReceivedMessageSize 属性。

或者

错误:反序列化操作“GetAllUserData”的响应消息的正文时出现错误。读取 XML 数据时,超出最大字符串内容长度配额 (8192)。通过更改在创建 XML 读取器时所使用的 XmlDictionaryReaderQuotas 对象的 MaxStringContentLength 属性,可增加此配额。

 

解决方案 :在web.config文件中的<wsHttpBinding>节点加入maxBufferPoolSize...信息

<?xml version="1.0" encoding="utf-8" ?>
<configuration>
    <system.serviceModel>
        <bindings>
            <wsHttpBinding>
              <binding name="WSHttpBinding_ICASEService" maxBufferPoolSize="2147483647" maxReceivedMessageSize="2147483647" >
                <readerQuotas maxDepth="32" maxStringContentLength="2147483647" maxArrayLength="2147483647"
        maxBytesPerRead="2147483647" maxNameTableCharCount="2147483647" />
              </binding>
            </wsHttpBinding>
        </bindings>
        <client>
            <endpoint address="http://localhost:8732/CASEService/" binding="wsHttpBinding"
                bindingConfiguration="WSHttpBinding_ICASEService" contract="ServiceProxy.ICASEService" name="WSHttpBinding_ICASEService"> </endpoint> </client> </system.serviceModel> </configuration>

  

posted @ 2014-05-04 15:26  且码且珍惜  阅读(1077)  评论(0编辑  收藏  举报