Reputation: 17719
Is there an API or interop for interacting with Reporting Services 2005/2008 from .Net or in particular C#?
The reason is we have some business logic for our row-level security in our application server, and would like our application server to work with the reporting services.
Any guidance on this would be really appreciated.
I found this link, which gives a brief explanation of the architecture for connecting to reporting services web services, does anyone have any more light they could shed?
http://en.csharp-online.net/Reporting_Services_Architecture
Upvotes: 4
Views: 8746
Reputation: 432180
Yes, Reporting Services has a web service under http://server/reportserver
with a rich API
You can also use the ReportViewer control in your app
In general, you should look at this page "Reporting Services Programming"
Upvotes: 7