请求ASP.NET WebAPI接口常见问题解决方法

一、请求Web API接口报400、404、414错误,如下图:

解决方法,如下:

1.在web.config文件的<system.web>节点中,添加“maxRequestLength”和“maxQueryStringLength”,添加以下配置:

点击查看代码
<system.web>
  <httpRuntime targetFramework="4.8" maxRequestLength="999999999" maxQueryStringLength="2097151" executionTimeout="7200" />
</system.web>
2.在web.config文件的节点中,添加“maxAllowedContentLength”和“maxQueryString”,添加以下配置:
点击查看代码
<system.webServer>
  <security>
    <requestFiltering>
      <!--设置请求内容的长度-->
      <requestLimits maxAllowedContentLength="2147483647" maxQueryString="2147483647"/>
    </requestFiltering>
  </security>
</system.webServer>
3.如果在web.config中添加完以上配置后,仍然报“请求字符串过长”问题,可以进行一下操作:
点击查看代码
a. 按Win + R打开“运行”窗口,在窗口中输入“regedit”打开注册表
b. 在注册表中找“HKEY_LOCAL_MACHINE\System\CurrentControlSet\Services\HTTP\Parameters”文件
c. 在文件夹上单击“鼠标”右键,添加以下配置:

备注:

1.上述配置中,web.congfig中四个字段和注册中两个新建的“DWORD(32位)值(D)”值;根据自己遇到情况设置大小。
2.接口部署的测试环境是Windows10
posted @ 2022-08-24 21:40  角印  阅读(681)  评论(0编辑  收藏  举报