Reporting Services in integrated mode sometimes throws "The operation has timed out."

when render report through application.
The solutions for this problem are listed below:
1. ReportingService2010 reportingService2010=new ReportingService2010();
reportingService2010.Timeout=120000;

or
2. In SharePoint integrated mode, the default timeout is 120 seconds, which is
the default timeout of IIS. We can change it by updating "web.config".
open "c:\inetpub\wwwroot\wss\VirtualDirectories\80\web.config",
locate <httpruntime maxrequestlength="51200"/>,
and change this sentence to
<httpruntime maxrequestlength="51200" executionTimeout="9000"/>

相关文章:

  • 2021-07-26
  • 2022-12-23
  • 2022-12-23
  • 2022-01-15
  • 2022-12-23
  • 2022-01-04
猜你喜欢
  • 2021-11-20
  • 2022-12-23
  • 2022-12-23
  • 2021-05-02
  • 2021-12-28
  • 2021-07-12
  • 2021-08-08
相关资源
相似解决方案