Search code examples
reporting-servicesssrs-2008ssrs-2008-r2ssrs-2012ssrs-2014

SSRS Report Timeout From Site - From Report Builder Works Fine


I'm working on SSRS report. It works fine when I run it from Report Builder.

Now, when I run the same report from my site, which uses Report viewer to show the report, timeout issue occurs. So I have observed that it times out after 90 seconds. Can anyone please help me what should I do in this case?

- I've set Do not timeout report from Site Settings

enter image description here

- I've also set Time in Report Dataset properties.

enter image description here

  • I also tried, Processing Options.

enter image description here


Solution

  • I found the solution, it was issue with ajaxToolkit:ToolkitScriptManager

    I needed to add AsyncPostBackTimeout="56000" to ajaxToolkit:ToolkitScriptManager.

    Before

    <ajaxToolkit:ToolkitScriptManager ID="ScriptManager1" runat="server" EnablePageMethods="True"/>
    

    After

    <ajaxToolkit:ToolkitScriptManager ID="ScriptManager1" runat="server" EnablePageMethods="True" AsyncPostBackTimeout="56000"/>
    

    Now it works fine.