Reputation: 60871
I need to do regular snapshots of a few reports that are being generated by SSRS. I've pleaded for backend access to the data, but I am not allowed to connect to the database.
I have never done anything with data feeds / RSS, and I was wondering how I can get started with C# to grab the report generated in SSRS?
There's an icon export to data feed:
How can I grab this data programmatically? Is there a way to utilize this export to data feed option?
Upvotes: 4
Views: 2494
Reputation: 5479
You can access the Reporting server using the web services.
This article shows how to render a report:
This'll get you started on accessing the web service
http://msdn.microsoft.com/en-us/library/ms152787%28SQL.105%29.aspx
The links above are for 2008 R2, but should work equally well for 2005 - 2012
Upvotes: 4