SQL Server Reporting Services [SSRS] 2008 Problem: Maximum request length exceeded

SQL Server Reporting Services [SSRS] 2008 Problem: Maximum request length exceeded

Error l get:

ErrorĀ  : There was an exception running the extensions specified in the config file. —> Maximum request length exceeded.

Click on image below for larger version.

Solution:

Edit the file web.config, found in:

C$Program FilesMicrosoft SQL ServerMSRS10_50.RPTReporting ServicesReportServer

Change line:

<httpRuntime executionTimeout=”9000″ />

to:

<httpRuntime executionTimeout = “9000” maxRequestLength=”500000″ />

And then restart the SQL Server Reporting Services [SSRS] service.

This should fix the issue.