可以作为参数传递给 POST 方法的对象的最大大小
The maximum size of object that can be passed as Parameter to POST method
我有一个 Web API 控制器,其 POST 方法如下。
public class MyController : ApiController
{
// POST: api/Scoring
public HttpResponseMessage Post([FromBody]MyClass request)
{
// some processing of request object
return Request.CreateResponse(HttpStatusCode.OK, someResponseObject);
}
....
}
这是由 HTTPClient 使用的,如下所示
HttpClient httpClient = new HttpClient();
httpClient.DefaultRequestHeaders.Accept.Add(new MediaTypeWithQualityHeaderValue("application/json"));
httpClient.BaseAddress = new Uri("http://localhost");
MyClass requestClient = new MyClass();
var task = httpClient.PostAsJsonAsync("api/my", requestClient)
控制器方法参数POST传入的MyObject对象尺寸较小时效果很好。但是,如果此对象大小很大,我会在 POST 方法参数中为请求对象获取一个空值。在一种情况下,从客户端请求传递的 requestClient 对象的大小约为 5 MB,在 POST 方法中,我将请求对象设为 null。 请注意,Web API 托管在 IIS 下。是否需要更改任何设置以允许大小。
更新:
在 web.config 中添加以下内容解决了 POST 方法参数中的空对象问题。
httpRuntime maxRequestLength="2147483647" />
然后我将 requestClient 对象的大小增加到 ~50MB。现在 POST 方法中的代码永远不会被命中。在客户端,在调用 PostAsJsonAsyn 时,我收到 System.Net.HttpRequestException 和以下消息。
Response status code does not indicate success: 404 (Not Found).
现在更改 maxRequestLength 似乎没有任何影响。
来自 OP:
> then increased the size of requestClient object to ~50MB. Now the code in POST method never getting hit. On the client side, at the call to PostAsJsonAsyn, I get System.Net.HttpRequestException with following message.
Response status code does not indicate success: 404 (Not Found).
Now changing maxRequestLength doesn’t seem to have any impact.
当请求筛选因 HTTP 请求超出请求限制而阻止 HTTP 请求时,IIS 将 return 向客户端发送 HTTP 404 错误,并记录以下 HTTP 状态之一,并使用唯一子状态标识请求被拒绝的原因:
HTTP Substatus Description
404.13 Content Length Too Large
404.14 URL Too Long
404.15 Query String Too Long
..etc
为了解决最大限制问题,应配置请求过滤角色服务(在 (IIS) 7.0 及更高版本中引入的内置安全功能):通过 SERVER MANAGER GUI 或命令实用程序 appcmd.exe或修改 Web.config
<configuration>
<system.webServer>
<security>
<requestFiltering>
.....
<!-- limit post size to 10mb, query string to 256 chars, url to 1024 chars -->
<requestLimits maxQueryString="256" maxUrl="1024" maxAllowedContentLength="102400000" />
.....
</requestFiltering>
</security>
</system.webServer>
</configuration>
查看配置详细信息:
https://www.iis.net/configreference/system.webserver/security/requestfiltering
我有一个 Web API 控制器,其 POST 方法如下。
public class MyController : ApiController
{
// POST: api/Scoring
public HttpResponseMessage Post([FromBody]MyClass request)
{
// some processing of request object
return Request.CreateResponse(HttpStatusCode.OK, someResponseObject);
}
....
}
这是由 HTTPClient 使用的,如下所示
HttpClient httpClient = new HttpClient();
httpClient.DefaultRequestHeaders.Accept.Add(new MediaTypeWithQualityHeaderValue("application/json"));
httpClient.BaseAddress = new Uri("http://localhost");
MyClass requestClient = new MyClass();
var task = httpClient.PostAsJsonAsync("api/my", requestClient)
控制器方法参数POST传入的MyObject对象尺寸较小时效果很好。但是,如果此对象大小很大,我会在 POST 方法参数中为请求对象获取一个空值。在一种情况下,从客户端请求传递的 requestClient 对象的大小约为 5 MB,在 POST 方法中,我将请求对象设为 null。 请注意,Web API 托管在 IIS 下。是否需要更改任何设置以允许大小。
更新: 在 web.config 中添加以下内容解决了 POST 方法参数中的空对象问题。
httpRuntime maxRequestLength="2147483647" />
然后我将 requestClient 对象的大小增加到 ~50MB。现在 POST 方法中的代码永远不会被命中。在客户端,在调用 PostAsJsonAsyn 时,我收到 System.Net.HttpRequestException 和以下消息。
Response status code does not indicate success: 404 (Not Found).
现在更改 maxRequestLength 似乎没有任何影响。
来自 OP:
> then increased the size of requestClient object to ~50MB. Now the code in POST method never getting hit. On the client side, at the call to PostAsJsonAsyn, I get System.Net.HttpRequestException with following message.
Response status code does not indicate success: 404 (Not Found).
Now changing maxRequestLength doesn’t seem to have any impact.
当请求筛选因 HTTP 请求超出请求限制而阻止 HTTP 请求时,IIS 将 return 向客户端发送 HTTP 404 错误,并记录以下 HTTP 状态之一,并使用唯一子状态标识请求被拒绝的原因:
HTTP Substatus Description
404.13 Content Length Too Large
404.14 URL Too Long
404.15 Query String Too Long
..etc
为了解决最大限制问题,应配置请求过滤角色服务(在 (IIS) 7.0 及更高版本中引入的内置安全功能):通过 SERVER MANAGER GUI 或命令实用程序 appcmd.exe或修改 Web.config
<configuration>
<system.webServer>
<security>
<requestFiltering>
.....
<!-- limit post size to 10mb, query string to 256 chars, url to 1024 chars -->
<requestLimits maxQueryString="256" maxUrl="1024" maxAllowedContentLength="102400000" />
.....
</requestFiltering>
</security>
</system.webServer>
</configuration>
查看配置详细信息:
https://www.iis.net/configreference/system.webserver/security/requestfiltering