I have a web service to an SSRS server from which I download and serialize reports to XML in C#, and then later save as .rdl
files.
I have the possibility to get the all the Data Source
's aswell, with
ReportingService2005 rs = new ReportingService2005();
DataSource dataSource = new DataSource();
DataSourceDefinition dataSourceDefinition = rs.GetDataSourceContents(path);
dataSource.Item = dataSourceDefinition;
I want to save the data source
objects as .ds
or .rds
files but I don't know how. Is there a way I can do this using XML serializing or are there any easier methods?