Here's what I'm trying to do...
oXMLHTTP = Server.CreateObject("MSXML2.ServerXMLHTTP.3.0");
oXMLHTTP.open("GET", "ccte://recservice.com", false);
oXMLHTTP.send();
And here is the error I get in return...
msxml3.dll error '80072ee6'
The URL does not use a recognized protocol
It works fine if I make the request using the HTTP protocol (i.e. http://recservice.com
instead of ccte://recservice.com
). Is there anything I can do within the IIS configuration to get ServerXMLHTTP requests working with my custom protocol?