请求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>
点击查看代码
<system.webServer>
<security>
<requestFiltering>
<!--设置请求内容的长度-->
<requestLimits maxAllowedContentLength="2147483647" maxQueryString="2147483647"/>
</requestFiltering>
</security>
</system.webServer>
点击查看代码
a. 按Win + R打开“运行”窗口,在窗口中输入“regedit”打开注册表
b. 在注册表中找“HKEY_LOCAL_MACHINE\System\CurrentControlSet\Services\HTTP\Parameters”文件
c. 在文件夹上单击“鼠标”右键,添加以下配置:
备注:
1.上述配置中,web.congfig中四个字段和注册中两个新建的“DWORD(32位)值(D)”值;根据自己遇到情况设置大小。
2.接口部署的测试环境是Windows10