2

所以我有一个 .NET MVC 项目,它带有一个从 Ajax POST 调用的更新控制器,它可能需要很长时间才能运行,这会导致超时异常。

但是,当我在本地机器上调试它时,它运行良好 - 当我将它发布到我的天蓝色网站并从那里更新它时,请求永远不会成功完成并且 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
    });

但没有喜悦。

4

2 回答 2

3

所以这不是真正的修复,而是一种解决方法。我没有发出一个长请求,而是让我的 javascript 重复查询一个 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);
    });
于 2013-07-12T17:52:14.997 回答
1

看起来在您的本地网络上到外部 azure 站点,您正在通过代理/网关服务器出去。贵公司是否有任何可能拦截和阻止请求的允许/禁止网站的阻止列表或白名单?

于 2013-07-03T12:18:12.577 回答