我有一个带有普通 Ajax 更新面板的页面。有一个提交按钮,可将用户选择发送到服务器。如果用户等待一两分钟,服务器的响应是来自服务器的 HTTP 413(请求实体太大)。仅当我在等待一两分钟后尝试重新提交时才会发生这种情况。如果一个登陆页面并提交表单,服务器就能够处理它。
我已经修改了uploadReadAheadSize(如http://forums.asp.net/t/1574804.aspx所述)并将其设置为200,000,000 - 问题仍然存在
Http请求
POST https://server/somepage HTTP/1.1
Accept: */*
Accept-Language: en-US,zh-Hans;q=0.9,zh-CN;q=0.8,zh-SG;q=0.7,zh-Hant;q=0.6,zh-HK;q=0.4,zh-MO;q=0.3,zh-TW;q=0.2,zh;q=0.1
Referer: https://server/somepage
x-requested-with: XMLHttpRequest
x-microsoftajax: Delta=true
Content-Type: application/x-www-form-urlencoded; charset=utf-8
Cache-Control: no-cache
Accept-Encoding: gzip, deflate
User-Agent: Mozilla/4.0 (compatible; MSIE 8.0; Windows NT 6.1; WOW64; Trident/4.0; SLCC2; .NET CLR 2.0.50727; .NET CLR 3.5.30729; .NET CLR 3.0.30729; Media Center PC 6.0; .NET4.0C; InfoPath.3; .NET4.0E)
Host: some-server
Content-Length: 86124
Connection: Keep-Alive
Form-Data...........
请求通过 SSL。
我还尝试在 web config 中编辑 httpruntime 配置
<httpRuntime executionTimeout="3600" maxRequestLength="1902400" />