Resolving "No report instance" Error
Environment
Product | Progress® Telerik® Reporting |
Version | 18.3.24.1112 |
Description
After upgrading a project to use the Progress® Telerik® Reporting 2024 Q4 (18.3.24.1112) version of the Telerik Reporting assemblies, the reports fail to load with a console error stating No report instance
was found.
Cause
The problem is most commonly caused by custom JsonSerializerSettings specified in the AddNewtonsoftJson
method which interferes with the serialization process required for the Telerik Reporting to function properly.
Solution
To resolve the No report instance
error, consider one of the following approaches:
Using Default JsonSerializerSettings
Update the AddNewtonsoftJson method in the Program.cs
file of the project to use the default JsonSerializerSettings:
Creating an Action Filter for custom JsonSerializerSettings
If using the default serializer settings is not an option due to application requirements, create an ActionFilter to customize the JsonSerializerSettings for the reports controller:
-
Implement the
JsonConfigFilterAttribute
ActionFilter: -
Annotate the
ReportsController
with the newly createdJsonConfigFilter
attribute: