I've got a windows service I've created to run a terminal service computer. At one point it uses .NET to call out to a web service ("ReportPdfGenerator") method "GetPdf":
ReportPdfGenerator.ReportPdfGenerator test = new ReportPdfGenerator.ReportPdfGenerator();
...
data = test.GetPdf(reportId, paramList.ToArray(), false);
Unforutnately the error that keeps occurring is:
"Unable to connect to the remote server"
We've monitored ISA to see if it was blocking the webservice call. We've used wireshark to monitor traffic on the terminal service computer, but we can't see any calls going out to the webservice. We've even turned off the local firewall but still can't see any attempts to connect to the remote server. Any ideas what might prevent any attempt to connect to the webservice?