【发布时间】:2018-11-04 09:40:42
【问题描述】:
我们一直在为 SSRS 2016 构建报告。在 2 分钟内执行的报告可以正常工作。但是,我们有一些遥控器需要 10 多分钟。
但是,在执行报告时,它会在大约 2 分钟后超时并返回此错误:
Sys.WebForms.PageRequestManagerServerErrorException: An unknown error occurred
while processing the request on the server.
The status code returned from the server was: 502
我尝试在 web.config 中设置执行超时
<httpRuntime executionTimeout="2147472000" maxRequestLength="2147483647" />
我也尝试过设置 ScriptManager 的超时时间:
ScriptManager scriptMan = ScriptManager.GetCurrent(this);
scriptMan.AsyncPostBackTimeout = 10800;
不幸的是,这些都没有解决问题。任何帮助将不胜感激。 谢谢大家。
【问题讨论】:
标签: iis reporting-services reportviewer ssrs-2016