zoukankan      html  css  js  c++  java
  • 调用WebServiceWebService提示The maximum string content length quota (8192) has been exceeded while reading XML data的解决办法

    在web.config中,bindings节点下,对应的服务名称中,原本可能是自动折叠的“/>”,需要改成手动折叠的</binding>,然后在中间加上<readerQuotas maxStringContentLength="2147483647" />

     

    <system.serviceModel>

        <bindings>
          <basicHttpBinding>
            <binding name="querySoap">
              <readerQuotas maxStringContentLength="2147483647" />
            </binding>
          </basicHttpBinding>

        </bindings>

    </system.serviceModel>

    在web.config中的<system.web></system.web>内加入如下代码:

    <httpRuntime executionTimeout="600" maxRequestLength="512000" />     

    maxRequestLength表示最大上传的文件大小,51200即500MB

    executionTimeout表示超时时间,600表示10分钟(建议设置大点,要不然网络不好的情况下,10分钟也会超时)

  • 相关阅读:
    [SHOI2008]堵塞的交通
    [SHOI2008]汉诺塔
    [JSOI2008]最小生成树计数
    [JSOI2008]球形空间产生器
    [HNOI2014]画框
    HDU 2255 奔小康赚大钱
    [SDOI2017]新生舞会
    [BZOJ2285][SDOI2011]保密
    [BZOJ3232]圈地游戏
    [HDU5909]Tree Cutting
  • 原文地址:https://www.cnblogs.com/CharlesGrant/p/3664437.html
Copyright © 2011-2022 走看看