Question

Where does the object "MSXML2.ServerXMLHTTP.4.0" come from? Which install package?

I'm attempting to do the following:

Set oXMLHTTP = CreateObject("MSXML2.ServerXMLHTTP.4.0")

This attempt fails on my development machine (no object is returned) but it is successful on my colleague's development machine. Obviously, he has something installed that I don't or vice versa but where does this object, dll, etc come from?

What would I need to install to get this call to work?

For the record, changing the object to a different version isn't an option because code that this depends on was tested for several days against this specific version. We'd have to go back and test again...

To expand on this question, how can I tell which version of MS XML is currently installed?

Was it helpful?

Solution

Try using this function:-

Function ProgIDInstalled(progID)
    On Error Resume Next
    Dim o : Set o = CreateObject(progID)
    ProgIDInstalled = Err.Number = 0
End Function

If ProgIDInstalled("MSXML2.DOMDocument.3.0") Then
    ' MSXML3 is present   '
End If

If ProgIDInstalled("MSXML2.DOMDocument.4.0") Then
    ' MSXML4 is present   '
End If

If ProgIDInstalled("MSXML2.DOMDocument.5.0") Then
    ' MSXML5 is present   '
End If

If ProgIDInstalled("MSXML2.DOMDocument.6.0") Then
    ' MSXML6 is present   '
End If

It surprises me that even now there are still new developments being made against the 4.0 version. Microsoft are now only patching version 3.0 and version 6.0 MSXML cores.

I know its too late now but really you should either be using 3.0 which has the advantage that is it ubiquitous on all Windows platforms currently in support so you don't really need to consider installing it at all. OR be using 6.0 since you need to include a distribution of MSXML it may as well be 6 since that is the latest and neither 4 nor 5 get any security patches.

OTHER TIPS

They can all be installed at same time. Take a look under Windows/system32/msxml(ver).dll.

If you mean which version is registered, take a look here :

http://support.microsoft.com/kb/278674

of course, you can register/unregister same as any other dll.

Notice that MSXML 4.0 SP2 has meet its end of support. You should migrate to MSXML 6.0 to get the best support and enhancement, or fall back to MSXML 4.0 SP3 for legacy systems.

I installed: MSXML 4.0 SP2 and it fixed my problem.

Though this only answers part of my question: Which version to install. I'd still like to know how to identify which version of MS XML is installed on one's system.

http://www.microsoft.com/downloads/details.aspx?familyid=3144b72b-b4f2-46da-b4b6-c5d7485f2b42&displaylang=en

Licensed under: CC-BY-SA with attribution
Not affiliated with StackOverflow
scroll top