我正在尝试在 Windows 8 应用程序中使用 WinJs.XHR 调用 Web 服务;当我不使用防火墙时,代码工作正常;但是,当我使用防火墙时,出现以下错误:
**Forbidden ( Forefront TMG denied the specified Uniform Resource Locator (URL). )**
任何线索?
WinJS.Promise.timeout(50000, WinJS.xhr({
url: "<Service_URL>"
})
.then(function (rss) {
}, function (onRError) {
});
},
function progress(result) {
}) );