BoldDeskWe are launching BoldDesk on Product Hunt soon. Learn more & follow us.
Hi Johann,
Thanks for your interest Syncfusion Products.
As of now, rendering SSRS reports not supported in Lightswitch ReportViewer. We have considered this as feature request “Support to view SSRS reports in lightswitch ReportViewer”, however to access this, we request you contact us at Syncfusion Support or you may also create your customer account under Direct Trac and open a new incident so that our support engineer will assist you accordingly.
Our Direct Trac support system can be accessed from the following link:
https://www.syncfusion.com/account/login?ReturnUrl=%2fsupport%2fdirecttrac%2fincidents
However adding Silverlight ReportViewer as custom control in LightSwitch screen allows you to render SSRS reports in Lightswitch platform. We have prepared a sample based on this and it can be downloaded from the following location.
http://www.syncfusion.com/downloads/support/directtrac/129745/SSRSLSReportViewer1600270045.zip
We have given details of the properties used to render SSRS reports in ReportViewer.
Property |
Usage | |
ReportPath |
Path to the Server report in SSRS server. reportViewer.ReportPath = @"/SSRSSamples/Territory Sales"; | |
ReportServerUrl |
URL path of the ReportingServer. reportViewer.ReportServerUrl = @"http://76.74.153.81/ReportServer"; | |
ReportServiceURL |
URL path of the WCF ReportingService which is running on the server machine (ReportingService and ReportServer must run in same machine). reportViewer.ReportServiceURL = @"http://ssrs.syncfusion.com/ReportingService2013Vol4/ReportingService.svc"; Please refer the following link to create a ReportingService. http://help.syncfusion.com/ug/silverlight/default.htm#!documents/loadingssrsreportinr.htm | |
ProcessingMode |
Gets or sets the processing mode of the ReportViewer control. Set Remote ProcessingMode for rendering SSRS reports. reportViewer.ProcessingMode = ProcessingMode.Remote; | |
ReportServerCredential |
Credential information’s to connect with the ReportingServer. reportViewer.ReportServerCredential = new System.Net.NetworkCredential("ssrs", "RDLReport1"); | |
Set DataSource Credentials |
You can specify credential information to each datasources used within the report in loaded event of ReportViewer as shown below.
Note: DataSource credentials must be added to the ReportViewer for Shared DataSources which do not have credentials in the connection string and used in the SSRS Reports. |
Please let us know if you have any questions.
Regards,
Anandakumar S
Query |
Response |
Silverlight supports the reportviewer for SSRS with custom authentication? |
Kindly refer our online UG documentation for more details about supported authentication in ReportViewer. http://help.syncfusion.com/ug/silverlight/index.html#!Documents/canweuseazuressrsreportsinreportviewer.htm |
the reportviewer for silverlight support the function "go to report"? |
Our Silverlight ReportViewer have “DrillThrough” action supports in SSRS reports. Kindly refer the below link to create a report with “DrillThrough” action. https://msdn.microsoft.com/en-us/library/ff519554.aspx |