Reputation: 69
I have a web application.Reporting services are using to handle reports.I am able to display the reports in browser. But while trying to export to PDF , i am getting "time out " error in case of large sized report.But while trying to export from the report server , then i can export.I have done in web.config as in attached to solve this.-
But still it is showing the same error.
Upvotes: 0
Views: 145
Reputation: 796
With such high timeouts (3 hours) on your web.config, most likely, you're hitting your browser's timeout, most web browsers don't wait indefenitely for a server to respond, so they close the connection after a while, on some of them you can change that, so, for example, if you're using Internet Explorer, you can change the registry to enable a larger timeout by setting the
ReceiveTimeout
subkey under
HKEY_CURRENT_USER\SOFTWARE\Microsoft\Windows\CurrentVersion\Internet Settings
to an appropiate value (in milliseconds).
There are similar settings on other browsers, so you may want to look up the one you use, for the exact procedure.
Upvotes: 1