Hello,
having on mind that I use SQL Server 2008 R2, could somebody help me to perform adding WEB Services as described bellow:
1
ReportServer2005: Namespace: Microsoft.SqlServer.ReportingServices.ReportService2005 URL:http://servername/ReportServerName/ReportService2005.asmx?wsdl Declaration: ReportingService2005 rs = new ReportingService2005();
2
ReportExecution2005: Namespace: Microsoft.SqlServer.ReportingServices.ReportExecutionService URL:http://servername/ReportServerName/ReportExecution2005.asmx?wsdl Declaration: ReportExecutionService rsExec = new ReportExecutionService();
I guess that "servername" and "ReportServerName" are those from my local Report Server (i.e., MyLocalComputerName and MyLocalReportServerName).
Purpose of this is to programmatically perform export of SSRS report to PDF, based on parameter's array.
Thanks!