Hi, We want to integrate SSRS with our project, project specfication is Angular 7 and Asp.net Core, please advise how to integrate it by following best practices.
also please advise which is the best suitable reporting tool to use with angular and ASP.net.
3 Answer(s)
-
0
I don't have an experience on SSRS but if you have any problems while integrating I can help you to overcome the issue.
-
0
We integrated the SSRS report viewer with our Angular 7 Asp.Net core project. I'm not sure it would qualify as best practice, but it was a simple approach.
The approach used an iframe that referenced a local IIS website running a simple Asp.net application with the embedded report viewer control. This enabled reports to be run and viewed in the angular front end and required very little programming.
Our initial implementation utilized the SSRS web service to list the reports in the front end. We have since implemented a Report entity that holds the definition of the report, including a reference to the SSRS path and a permission name, so that it can be secured.
-
0
Thanks @aldercove for sharing this.