I'm using this library in a .Net Core MVC app. I can see the report page loading, with the various dropdowns and "Report Loading" at the bottom. However, I get a 500, and on closer inspection, during the ReportServiceHelpers.GetReportParameters (where it calls service.GetReportParametersAsync) I get the following error:
The path of the item '@Model.ReportPath' is not valid. The full path must be less than 260 characters long; other restrictions apply. If the report server is in native mode, the path must start with slash. ---> Microsoft.ReportingServices.Diagnostics.Utilities.InvalidItemPathException: The path of the item '@Model.ReportPath' is not valid. The full path must be less than 260 characters long; other restrictions apply. If the report server is in native mode, the path must start with slash.
Hi there,
I'm using this library in a .Net Core MVC app. I can see the report page loading, with the various dropdowns and "Report Loading" at the bottom. However, I get a 500, and on closer inspection, during the
ReportServiceHelpers.GetReportParameters
(where it calls service.GetReportParametersAsync) I get the following error:The path of the item '@Model.ReportPath' is not valid. The full path must be less than 260 characters long; other restrictions apply. If the report server is in native mode, the path must start with slash. ---> Microsoft.ReportingServices.Diagnostics.Utilities.InvalidItemPathException: The path of the item '@Model.ReportPath' is not valid. The full path must be less than 260 characters long; other restrictions apply. If the report server is in native mode, the path must start with slash.
Have I missed something?