Where did the object "MSXML2.ServerXMLHTTP.4.0" come from? What installation package?
I am trying to do the following:
Set oXMLHTTP = CreateObject("MSXML2.ServerXMLHTTP.4.0")
This attempt failed on my development machine (the object does not return), but it works successfully on my peers development machine. Obviously, it has something installed that I do not do or vice versa, but where does this object come from, dll, etc.?
What do I need to install to make this call work?
For the record, changing the object to a different version is not an option, because the code on which it depends has been tested for several days against this particular version. We have to go back and test again ...
To expand on this question, how can I determine which version of MS XML is currently installed?
source share