0

I have an MVC3 application that delivers SQL Server 2008 reports using the Microsoft ReportViewer web control. Generally everything is working fine, except when exporting large reports to PDF.

At exactly 2 minutes into the export I get the following Server Error:

Exception Details: System.Web.HttpException: Request timed out

Digging deeper into the error, the SQL Report Server Log is pretty helpful:

Error: "RsException: A client has disconnected from Report Server"
Error Code: 800708CA: No connection available

So, my guess is that the ReportViewer connection timeout is a config setting somewhere, but I don't know where. We've already looked at all the configuration settings mentioned here but nothing is working - the timout always occurs at 2 minutes into the export!

Unfortunately I don't have a lot of SSRS configuration knowledge and neither do the company who actually host the the servers (the client's IT dept). So any help would be much appreciated.

John Flackett
  • 61
  • 2
  • 2

1 Answers1

0

Submitting this an answer since it worked.

Maybe look into the executionTimeout setting here for the web.config file. Default is 110 seconds.

merekel
  • 443
  • 5
  • 15