We have been building reports for SSRS 2016. Reports that execute in under 2 minutes work fine. However, we have some remotes that need well over 10 minutes.
However, when executing the report it times out after about 2 minutes and returns this error:
Sys.WebForms.PageRequestManagerServerErrorException: An unknown error occurred
while processing the request on the server.
The status code returned from the server was: 502
I tried setting the execution timeout in web.config
<httpRuntime executionTimeout="2147472000" maxRequestLength="2147483647" />
I also tried setting the ScriptManager's timeout:
ScriptManager scriptMan = ScriptManager.GetCurrent(this);
scriptMan.AsyncPostBackTimeout = 10800;
Unfortunately, none of that solved the issue. Any help would be appreciaated. Thanks guys.