Hello,
Part of our Reporting Services 2005 implementation calls for the creation of a report (RDL) and uploading it to our RS server for deployment, all done programmatically. We'd like to have the uploaded report set up for snapshot history. Does anyone know how to do this programmatically through the web service I know how to do it manually through Report Manager, but can't seem to find the right method calls to do it via the web service.
Thanks in advance
BTW: the report we create meets the requirements of a snapshot history report... i.e. default report parameters, and a stored credential datasource.

Set Report for Snapshot History via Web Service?
Simon De Vries
Wraith10
SetReportHistoryOptions.
Pass in the path to the report, if you want to allow manual snapshots to be created, if you should keep report execution snapshots as history, and the schedule with which to create the history snapshots. You can also call
CreateReportHistorySnapshot
to manually create the history snapshot.
-Daniel