“SQL Reporting Services 错误 - 超出最大请求长度”
这可以通过增加报告服务器的 web.config 文件中的连接超时属性来解决。
您必须为 Web 应用程序调整 web.config,在报告服务器的情况下,它通常是这样的:C:\Program Files\Microsoft SQL Server\MSSQL.2\Reporting Services\ReportServer 查找网络您的报告服务实例的 .config 文件,打开它,并跟踪看起来像这样的行
<httpRuntime executionTimeout="9000" requestValidationMode="2.0" />
现在只需在其中添加一个最大请求长度属性来解决问题,根据需要调整您的大小。这是5meg。
executionTimeout = "9000" maxRequestLength="500000" />
现在您需要重新启动 IIS。开始->运行->“iisreset”
参考:
https ://www.isolutionspartners.com/2011/09/16/sql-reporting-services-error-maximum-request-length-exceeded/