我是靠谱客的博主 明亮香菇,最近开发中收集的这篇文章主要介绍引用webservice 已超过传入消息(65536)的最大消息大小配额。若要增加配额,请使用相应绑定元素上的 MaxReceivedMessageSize 属性。,觉得挺不错的,现在分享给大家,希望可以做个参考。

概述

<?xml version="1.0" encoding="utf-8" ?>
<configuration>


    <system.serviceModel>
        <bindings>
            <basicHttpBinding>
              <binding name="AlarmMonitorEventSoap" maxBufferPoolSize="2147483647" maxReceivedMessageSize="2147483647" maxBufferSize="2147483647"  messageEncoding="Text" textEncoding="utf-8" transferMode="Buffered">
                <readerQuotas maxDepth="32" maxStringContentLength="2147483647" maxArrayLength="2147483647" maxBytesPerRead="2147483647" maxNameTableCharCount="2147483647" />
              </binding>
              
            </basicHttpBinding>
            <customBinding>
                <binding name="AlarmMonitorEventSoap12" >
                    <textMessageEncoding messageVersion="Soap12" />
                    <httpTransport maxReceivedMessageSize="2147483647" maxBufferPoolSize="2147483647" maxBufferSize="2147483647" />
                </binding>
            </customBinding>
        </bindings>
        <client>
            <endpoint address="http://xxx.xxx.xxx.xxx/xxxx.asmx"
                binding="customBinding" bindingConfiguration="AlarmMonitorEventSoap12"
                contract="Service.AlarmMonitorEventSoap" name="AlarmMonitorEventSoap12" />
        </client>
    </system.serviceModel>
</configuration>

最后

以上就是明亮香菇为你收集整理的引用webservice 已超过传入消息(65536)的最大消息大小配额。若要增加配额,请使用相应绑定元素上的 MaxReceivedMessageSize 属性。的全部内容,希望文章能够帮你解决引用webservice 已超过传入消息(65536)的最大消息大小配额。若要增加配额,请使用相应绑定元素上的 MaxReceivedMessageSize 属性。所遇到的程序开发问题。

如果觉得靠谱客网站的内容还不错,欢迎将靠谱客网站推荐给程序员好友。

本图文内容来源于网友提供,作为学习参考使用,或来自网络收集整理,版权属于原作者所有。
点赞(54)

评论列表共有 0 条评论

立即
投稿
返回
顶部