How to programically call SSRS 2005 report then Save to file
How from a VB.NET app can I programmically code a call to one of my existing SSRS 2005 reports and after that report is done running, tell it to also save as a pdf into another directory somewhere on our file server
Basically, what you will do is use VS.NET to create a web reference to the RS SOAP endpoint, this will then provide an class which you can use to render reports and then save them wherever you want.
How to programically call SSRS 2005 report then Save to file
Ankur Gupta
This will give you an overview:
http://msdn.microsoft.com/sql/bi/reporting/default.aspx pull=/library/en-us/dnsql90/html/integratrsapp.asp
Basically, what you will do is use VS.NET to create a web reference to the RS SOAP endpoint, this will then provide an class which you can use to render reports and then save them wherever you want.
PeelerJ