I get the following exception when calling the LoadReport () method of the ReportExecutionService2005 web service provided by SSRS 2005;
System.Web.Services.Protocols.SoapException: the server did not recognize the value of the SOAPAction HTTP header
Any ideas what might cause this? My C # code is as follows:
string _reportName = "/FolderName/ReportName"; string _historyID = null; WebServiceProxy.RSExec.ExecutionInfo _executionInfo = null; _executionInfo = rsExec.LoadReport(_reportName, _historyID);
All credentials are specified with;
System.Net.CredentialCache.DefaultCredentials;
source share