Calling my web service without parameters works with this code:
sUrl = "http://www.mysite.com/MyService.asmx?op=MyFunction"
Set XMLHTTP = CreateObject("MSXML2.XMLHTTP")
XMLHTTP.Open "GET", sUrl, False
XMLHTTP.sEnd
byteData = XMLHTTP.responseBody
When I try to add parameters, it fails, with this url:
sUrl = "http://www.mysite.com/MyService.asmx?op=MyFunction&Parm1=abc&Parm2=def&P arm3=ghi"
The service is expecting 3 string parameters.
Any ideas most appreciated.