zoukankan      html  css  js  c++  java
  • Webservice 65535 错误

    修改配置项:

    <system.serviceModel>
        <behaviors>
          <endpointBehaviors>
            <behavior name="NewBehavior">
              <dataContractSerializer maxItemsInObjectGraph="2147483647" />
            </behavior>
          </endpointBehaviors>
        </behaviors>
        <bindings>
          
          <basicHttpBinding>
            
            <binding name="CustormerServiceSoap" receiveTimeout="00:10:00" sendTimeout="00:01:00" maxReceivedMessageSize="2147483647" maxBufferPoolSize="2147483647" maxBufferSize="2147483647" />
            <binding name="CustormerServiceSoap1" receiveTimeout="00:10:00" sendTimeout="00:01:00" maxReceivedMessageSize="2147483647" maxBufferPoolSize="2147483647" maxBufferSize="2147483647" />
            
          </basicHttpBinding>
          
        </bindings>
        <client>
          
          
          <endpoint address="http://tradeapi.1234567.com.cn/WebService/CustomerService.asmx" binding="basicHttpBinding" bindingConfiguration="CustormerServiceSoap" contract="ServiceReference1.CustormerServiceSoap" name="CustormerServiceSoap" />
          <endpoint address="http://tradeapi.1234567.com.cn/WebService/CustomerService.asmx" binding="basicHttpBinding" bindingConfiguration="CustormerServiceSoap1" contract="CustormerService.CustormerServiceSoap" name="CustormerServiceSoap1" />
          
        </client>
      </system.serviceModel>
  • 相关阅读:
    JSTL笔记(胖先生版)
    EL表达式(胖先生版)
    包装类-Character
    String定义与方法
    冒泡排序(大熊版)
    tomcat Manger App
    第一天
    剑指offer:面试题5、从尾到头打印链表
    剑指offer:面试题4、替换空格
    剑指offer:面试题3、二维数组中的查找
  • 原文地址:https://www.cnblogs.com/allonzh/p/3345639.html
Copyright © 2011-2022 走看看