您的位置:首页 > 其它

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

2014-10-20 11:18 671 查看
我出现这个问题主要是服务器返回数据量过大引起了,需要客户端服务端都要进行配置;我会说其实有神器的么。。。。(工具=>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>
内容来自用户分享和网络整理,不保证内容的准确性,如有侵权内容,可联系管理员处理 点击这里给我发消息
标签: 
相关文章推荐