I am looking to utilise the SSRSViewer component to display reports that we have and just seeking some clarity on how it is used.
I have added the component into a blazor page component with my parameter set and using proxy.
@page "/ssrsviewer/{reportid}"
Presumably this is what i link to from my blazor view.
As i am using a proxy i have also created the Report controller with the code as in the Radzen example and set my username/password/domain credentials.
Am i calling this controller get route from my ssrsviewer blazor component simply passing in the url of my ssrs report?
Has anyone got an example of how this works?
Did you check the online demo? It shows how to use the report controller (basically add it to your app and set UseProxy to true).
Yes, I noticed the url was incorrect on hitting the controller and that i had to enter the missing part in the ReportName field in the component. Now i am getting to the ssrs report as such, but am only seeing the header fields not any of the report data. The parameter is pre populating the search box as expected but even on clicking View Report button the data does not get displayed.
On comparing the url against the one just loaded in a browser window they appear the same apart from &rs:Embed=true in the radzen version, but if i just copy this url and paste in a new browser window i still see everything displayed.
So i need to find out why i am not getting the data fetched back... possibly timing out doing this operation?
There is a chance the controller doesn't handle properly the contents of the report. You can verify that by setting UseProxy
to false
. If this is the case you would either have to keep it without the proxy or try to patch the controller so it does not break the report.
I grabbed the result html from the controller and tried just linking to this as an html page which gave an error on trying to load the report.
The report execution z1umacnb3wrqybv4sbyfq0ue has expired or cannot be found. (rsExecutionNotFound)
Looking up on google one approach to address this error was clearing the session so i appended &rs:Command=ClearSession to the ReportName and am now getting the report data back so this seems to have fixed my issue.