所以我有一个.NET MVC项目,该项目带有从Ajax POST调用的Update控制器,该控制器可能需要很长时间才能运行,从而导致超时异常。
然而,当我在本地机器上调试它时,它运行得很好——当我将它发布到我的azure网站并从那里更新它时,请求从未成功完成,Chrome的控制台报告:
POST http://mysiteaddress/Admin/UpdateLibrary/Update?Length=13 504 (Proxy Timeout ( This operation returned because the timeout period expired. ))
在Firefox中的远程桌面上尝试相同的操作会导致控制台报告:
[07:42:13.856] POST http://mysiteaddress/Admin/UpdateLibrary/Update?Length=13 **[HTTP/1.1 502 Bad Gateway 182940ms]**
我尝试在web.config文件中设置长超时
<httpRuntime executionTimeout="2000"/>
在我的ajax调用的主体中
$.ajax({
url: this.action,
type: 'POST',
data: $(this).serialize(),
success: function (data) {
document.write(data);
},
failure: function (XMLHttpRequest, textStatus, errorThrown) {
console.log(XMLHttpRequest);
console.log(textStatus);
console.log(errorThrown);
},
timeout: 2000000 //Milliseconds
});
但没有快乐。
所以这不是真正的修复方法,而是一种变通方法。我没有发出一个长请求,而是让我的javascript反复查询ActionResult,该ActionResult返回一些json来决定我长时间运行的进程是否已经完成。完成后,我将浏览器重定向到结果屏幕。
$.updateProgressbar = function () {
$.get('@Url.Action("GetStatus", "UpdateLibrary", new { countryId = countryId }, Request.Url.Scheme)', function (data) {
$('#progressbar').progressbar('value', data.progress)
if (data.currentItem != null) {
$('#currentWorkItem').text('@l12.View_Update_currentlyWorking' + data.currentItem);
}
if (data.progress == 100) {
window.location =
'@Url.Action("UpdateResults", "UpdateLibrary", new { countryId = countryId }, Request.Url.Scheme)';
} else {
setTimeout($.updateProgressbar, 5000);
}
});
};
$(function () {
$("#progressbar").progressbar({ value: 0 });
setTimeout($.updateProgressbar, 5000);
});
在您的本地网络到外部azure站点上,您似乎通过代理/网关服务器外出。您的公司是否有可能拦截和阻止请求的允许/不允许网站的屏蔽列表或白名单?