MSXML2.ServerXMLHTTP.4.0 Source?

≯℡__Kan透↙ 提交于 2019-11-29 07:23:25

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.

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

易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!