zoukankan      html  css  js  c++  java
  • WCF 已超过传入消息(65536)的最大消息大小配额。若要增加配额,请使用相应绑定元素上的 MaxReceivedMessageSize 属性

    我出现这个问题主要是服务器返回数据量过大引起了,需要客户端服务端都要进行配置;我会说其实有神器的么。。。。(工具=>wcf服务配置编辑器),用工具编辑下,就会完全搞定这个问题,再也不用纠结了

    服务端配置(有木有很精简):

     <system.serviceModel>
        <bindings>
          <basicHttpBinding>
            <binding name="NewBinding0" maxBufferPoolSize="2147483647" maxBufferSize="2147483647"
                maxReceivedMessageSize="2147483647" />
          </basicHttpBinding>
        </bindings>
        <services>
          <service name="Jinher.AMP.SNS.Service.BP.Service.Neighbor">
            <endpoint address="http://127.0.0.1:8089/neighbor" binding="basicHttpBinding"
                bindingConfiguration="NewBinding0" contract="Jinher.AMP.SNS.Service.BP.IService.INeighbor" />
          </service>
        </services>
      </system.serviceModel>

    客户端代码:

     <system.serviceModel>
        <bindings>
          <basicHttpBinding>
            <binding name="NewBinding0" maxBufferPoolSize="2147483647" maxBufferSize="2147483647"
                maxReceivedMessageSize="2147483647" />
          </basicHttpBinding>
        </bindings>
        <client>
          <endpoint address="http://127.0.0.1:8089/neighbor" binding="basicHttpBinding"
              bindingConfiguration="NewBinding0" contract="Jinher.AMP.SNS.Service.BP.IService.INeighbor"
              name="OnlineUserService" kind="" endpointConfiguration="">
            <!--<identity>
              <certificateReference storeName="My" storeLocation="LocalMachine"
                  x509FindType="FindBySubjectDistinguishedName" />
            </identity>-->
          </endpoint>
        </client>
      </system.serviceModel>
  • 相关阅读:
    2.8Java专项测试复盘
    我的第一篇博客
    VS2010调试汇编
    socket学习
    DLL 共享数据学习
    PE学习
    char*,const char*和string的相互转换 + 三种版本字符串
    unresolved external symbol “symbol”(不确定的外部“符号”)。
    深入理解const char*p,char const*p,char *const p,const char **p,char const**p,char *const*p,char**const p
    volatile学习
  • 原文地址:https://www.cnblogs.com/shi-meng/p/4036766.html
Copyright © 2011-2022 走看看