Hi there 
I'm trying to read a remote XML file over HTTPS into the DOM in my VBScript. Here is what I have so far...
It dies when it gets to the Set Root line. I do have more code but I think this is the only bit that goes wrong.
Any ideas??
I'm trying to read a remote XML file over HTTPS into the DOM in my VBScript. Here is what I have so far...
Code:
'Set objXMLDoc = CreateObject("Microsoft.XMLDOM")
Set objXMLDoc = CreateObject("Msxml2.DomDocument")
objXMLDoc.async = False
objXMLDoc.setProperty "ServerHTTPRequest", true
objXMLDoc.load(strWebAddress)
Set Root = objXMLDoc.documentElement
It dies when it gets to the Set Root line. I do have more code but I think this is the only bit that goes wrong.
Any ideas??