maxUrlLength和maxQueryStringLength的更高范围是什么

我收到远程服务器返回错误:(400)错误的请求 。 当我尝试将zip文件上传到远程服务器上托管的Web API时出现异常。

我的web.config

<httpRuntime maxRequestLength="300000000" />

IIS显示:

  • 最大Querystring = 2048
  • 最大网址长度= 4096
  • 发现我的网址超出了此限制。 通过Google搜索查询QueryString和URLLength的最大值。 但是,我无法为此找到恒定的结果,

    我试着用:

    <httpRuntime maxRequestLength="300000000" 
                 relaxedUrlToFileSystemMapping="true" 
                 maxUrlLength="65536" maxQueryStringLength="2097151"/>
    
    链接地址: http://www.djcxy.com/p/42031.html

    上一篇: what will be the higher range for maxUrlLength and maxQueryStringLength

    下一篇: ASP.Net MVC: HTTP Error 414. The request URL is too long