0

我很感激这已经被问过很多次了,但我似乎无法让它发挥作用。

我的配置文件中有以下值:

  <httpRuntime maxRequestLength="16384" executionTimeout="7200" />

<system.webServer>
<security>
  <requestFiltering>
     <requestLimits maxAllowedContentLength="16777216" />
  </requestFiltering>
</security>
</system.webServer>

但是,我收到了最大请求长度异常。

我的消息的内容长度是 :Content-Length: 7785556

谁能建议我可能忽略的设置?

4

3 回答 3

1

我不得不补充:

 <httpRuntime maxRequestLength="16384" executionTimeout="7200" />

到我的 machine.config。

于 2013-05-15T15:45:02.873 回答
1

它取决于框架版本,在 2.0 httpRuntime下有效。在其他框架版本上,您应该使用requestFiltering部分来定义此限制。

于 2013-09-11T13:25:01.183 回答
0

Check this microsoft support link http://support.microsoft.com/default.aspx?scid=kb;EN-US;295626

于 2013-05-15T11:49:11.823 回答