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分钟也会超时)

  • 相关阅读:
    emacs 集成astyle
    git reflog
    rpm 打包的时候 不进行strip
    gmock
    如何对正在运行的进程,进行heap profile
    linux性能压测工具
    默认宏定义
    gdb fabs错误输出
    基于Clang的缓存型C++编译器Zapcc
    grep 多行 正则匹配
  • 原文地址:https://www.cnblogs.com/CharlesGrant/p/3664437.html
Copyright © 2011-2022 走看看