I am getting the following exception when calling the LoadReport() method of the ReportExecutionService2005 web service provided by SSRS 2005;
System.Web.Services.Protocols.SoapException: Server did not recognize the value of HTTP Header SOAPAction
Any ideas what may cause this? My C# code looks like this;
string _reportName = "/FolderName/ReportName";
string _historyID = null;
WebServiceProxy.RSExec.ExecutionInfo _executionInfo = null;
_executionInfo = rsExec.LoadReport(_reportName, _historyID);
All the credentials are set using;
System.Net.CredentialCache.DefaultCredentials;