Failed to repair report: ReportProcessingException while extending render
I can generate the report in SSRS 2008, but when I try to generate it again, it works with below error. However, it will work again after restarting SSRS. What configuration option can affect this? (I've added all the required extensions.)
treatment! ReportServer_0-1! 1ef4! 01/28 / 2013-16: 39: 41 ::
ERROR: Throwing Microsoft.ReportingServices.ReportProcessing.ReportProcessingException: you tried to use a render extension that is either not registered for this report server or is not supported in this release of Reporting Services.,;
INFO: Microsoft.ReportingServices.ReportProcessing.ReportProcessingException: You tried to use a render extension that is either not registered with this report server or is not supported in this release of Reporting Services. library! ReportServer_0-1! 1ef4! 01/28 / 2013-16: 39: 41 ::
WARN: Microsoft.ReportingServices.ReportProcessing.ReportProcessingException: You tried to use a render extension that is either not registered with this report server or is not supported in this release of Reporting Services.
in Microsoft.ReportingServices.ReportProcessing.ReportProcessing.CreateRenderer (String format, IRenderingExtension & newRenderer )
in Microsoft.ReportingServices.ReportProcessing.ReportProcessing.RenderSnapshot (RenderingContext rc, ProcessingContext pc, GetResource getResourceCallback)
in Microsoft.ReportingServices.Library.RenderFromSnapshot.DoRendering (ProcessingContext pc, RenderingContext rc)
at Microsoft.ReportingServices.Library.RenderFromSnapshot.CallProcessingAndRendering (ProcessingContext pc, RenderingContext rc, OnDemandProcessingResult & result)
at Microsoft.ReportingServices.Library.RenderStrategyBase.ExecuteStrategy (OnDemand &Processing)
source to share
SSRS seems to be trying to load an assembly that contains some report rendering functionality (maybe some charts you added)?
If so, this article explains how to register a DLL using SSRS.
source to share
In our case, the problem is that through the API we requested a report and tried to convert the report from HTML to another extension. And unfortunately, the specific configuration file of the Reporting Services instances was not configured \ extended to support the requested render format.
In MS SQL Server 2008-R2 the configuration file is located in a directory structure that looks like this:
E:
\Program Files
\Microsoft SQL Server
\MSRS10_50.MSSQLSERVER_RS
\Reporting Services
\ReportServer
And, the actual filename is rsreportserver.config
Find the "Render" section in the config file:
<Configuration>
<Extensions>
<Render>
In the Render section, find the corresponding Extension entry. If the extension is not found, add it:
source to share