I'm trying to use "MSXML2.XMLHTTP.6.0" to send and receive an XML
I have been using "MSXML2.XMLHTTP.3.0" for over 10 years but suspect some of my clients are having problems with the ActiveX security
I use
Try
oHttp = CreateObject("MSXML2.XMLHTTP.6.0")
Catch
oHttp =...
Olaf was very helpful with a good description on using MSXML2.XMLHTTP.6.0 & MSXML2.XMLHTTP.3.0 in thread http://www.tek-tips.com/viewthread.cfm?qid=1715949
Try
oXML = CreateObject("MSXML2.XMLHTTP.6.0")
Catch
oXML = CreateObject("MSXML2.XMLHTTP.3.0")
Endtry
however when I have tried to...
This site uses cookies to help personalise content, tailor your experience and to keep you logged in if you register.
By continuing to use this site, you are consenting to our use of cookies.