Reputation: 2613
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
Reputation: 21
Try this piece of code: http://ikbalouch.wordpress.com/2010/04/27/calling-sql2008-reporting-server-webservice-programmaticall/
or try below:
Upvotes: 2
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