Captain0
Captain0

Reputation: 2613

ReportExecutionServiceSoapClient.Render to reportviewer control

Is there a way to get the ReportExecutionServiceSoapClient.Render method to render the report to a reportviewer control. I have found examples to render to PDF, but not to the report viewer control.

Here is an example to render to pdf ReportExecutionService.Render Method

If I can render to html, that is fine as well. I am busy to create a report viewer for my MVC App, that i can just point to the reporting service web service then all the reports will be available as part of my application.

Upvotes: 1

Views: 5552

Answers (2)

Miguel Garcia
Miguel Garcia

Reputation: 796

For what it know, the ReportViewer control just renders their own report format, so you may either just send the report format to the ReportViewer control or simply render the report to HTML4 and use a WebBrowser control or something similar.

Upvotes: 0

Related Questions