I have a task that calls the SSRS report server to render the report, then places the freshly rendered report into a SharePoint document library. The report server is set up in SharePoint Integrated Mode.
For smaller reports, everything works perfectly. However, if a report take longer than about 90 seconds to generate, the call to render throws an exception of "The operation has timed out".
My proxy's timeout value is set to -1. (RSExecClient.Timeout = System.Threading.Timeout.Infinite)
The httpRuntime's exeuction timeout is set to "9000" for both the SharePoint web site's, well as the report server's, web.config files.
Also, I have set the DatabaseQueryTimeout to "0" in the rsreportserver.config file.
I am connecting to the ssrs web service using "https:///_vti_bin/ReportServer/ReportExecution2005.asmx".
I also noticed that I could connect through "http://:8080/ReportServer/ReportExecution2005.asmx", however it seems I have to handle authentication and authorization myself, which caused other troubles.
Does anyone know what I am doing wrong, or at least of a logging location that I can go to for more information?
Thanks, Michael