Questions tagged [msxml]

MSXML are the Microsoft XML core services, which includes a full XML DOM implementation.

MSXML are the Microsoft XML core services, which include a full XML DOM implementation, support for SAX, XML 1.0, XSLT 1.0, XSD and XDR schemas and other technologies depending on the version (for instance, XPath is not supported in all versions).

There are many versions of MSXML, of which some have more or less subtle differences.

The most current one is MSXML 6 SP2 or SP3, depending in your operating system their version numbers are:

  • 6.20.2003.0 for Windows XP SP2, Windows 2003 SP1 and Windows 2003 R2
  • 6.20.1103.0 for Windows XP SP3, Windows 2003 SP2 and Windows 2003 R2 SP1
  • 6.30.* for newer versions of Windows

Note that MSXML 4 and MSXML 3 are also still supported.

When using MSXML for XPath, be sure to set the SelectionNamespaces Property (as this article shows) to make sure your XML namespaces will work.

Links:

616 questions
0
votes
1 answer

XML - SelectNodes - How to get nodes with attribute with some value (MFC)

I am working in MFC I would like to get all nodes from XML , with attribute with some value but value should not be null, and should not select node if no attribute present - should be selected - should be…
Sandip
  • 3,501
  • 3
  • 19
  • 23
0
votes
1 answer

SelectSingleNode, how to write xpath query using string variable?

Hi I have xml file (which is actually msbuild file) that uses different namespace
in His Steps
  • 3,075
  • 6
  • 30
  • 38
0
votes
1 answer

Cannot find the type library for this reference

I'm having troubles registering windows script file. When I'm trying to do so it says "Cannot find the type library for this reference Some.Reference" Basically, behaviour is very similar to one described in this question Windows Scripting can't…
Siarhei Vouchak
  • 125
  • 1
  • 10
0
votes
1 answer

Paradox / ObjectPal and Microsoft XML Services (MSXML): crashes when calling certain methods

im using Microsoft XML Core Services (MSXML) to parse and create XML-documents with Paradox 11.0.0.676. when i call certain methods of the oleAuto-objects, Paradox crashes when reaching the endMethod statement (the code is in the pushButton event of…
whocares81
  • 129
  • 1
  • 16
0
votes
1 answer

xml displaying incorrectly in ie10 with xsl file using transformNode()

I am getting my data displaying in Chineese type language in IE10 when doing the following: ICVID = Request.QueryString("ICVID") strXML = GetXML(ICVID) 'Gets data in xml format Dim oDOM, xSS Set oDOM =…
eriley
  • 1
  • 1
0
votes
1 answer

incomplete prefix in an XML node

need a node with prefix, but he does it the right way, is a failure of the way I do? or is a compiler bug? main module code function Generar_Addenda(PathCFD : String; ValidaOnly : Integer) : Integer; const xmlns = 'xmlns=""'; (*…
0
votes
2 answers

set an attribute in XML node usig MSXML. I am struck

I try to set an attribute in a XML node using MSXML. IXMLDOMElement alone has the member function setAttribute. So I got the document element. pXMLDocumentElement -> get_documentElement (& pElement ); pElement -> selectSingleNode ( nodePathString ,&…
Rajakumar
  • 442
  • 1
  • 9
  • 21
0
votes
1 answer

Please guide me to set an attribute in XML node usig MSXML. I am struck

I try to set an attribute in a XML node using MSXML. IXMLDOMElement alone has the member function setatrribute. So i got the document…
Rajakumar
0
votes
1 answer

Fast clear MSXML Document or Re-create?

Is there a fast way to clear the previous content of an MSXML2.DOMDocument object prior to reuse? I've been in the habit of discarding them and creating a fresh instance each time but this strikes me as wasteful and profiling a few test cases seems…
Bob77
  • 13,167
  • 1
  • 29
  • 37
0
votes
1 answer

MSXML XSLT Parser Version

I have a C++ app that uses msxml6.dll to read XML files and apply XSLTs. I determined that MSXML v3.0 is being used for the XSLTs by including the following in one of my XSLT files:
user1712048
0
votes
1 answer

IdHTTP XML, getting xml, help please

I can not get through IdHTTP XML document from the site. I always had the answer 403 / HTTP 1.1 and text/html (need text/xml) When using MSXML all well and getting XML file. But I need a proxy, so need idhtop. When using the synapse does not…
0
votes
3 answers

XML parser error

I've an xml file of size 83,383 KB on a windows server.I load this file using MS xml parser and it works fine. When I copy this file to another windows server, the size of file becomes 83,392 KB.When i load this file using MS xml parser, I get xml…
Guest
0
votes
2 answers

XMLHttpRequest and certificate errors

I'm using a XMLHTTPRequest object in my C++ project. I have things working fine with normal http requests and https requests on servers with valid certificates. When I attempt to make an https:// request to a server who's certificate would produce…
Dan G
  • 836
  • 11
  • 31
0
votes
2 answers

Classic ASP streaming PDF to browser stopped working in IE

I have an ASP page that fetches a PDF image from another URL and streams it to the browser. It appears to have stopped working somewhat recently (there were a few dozen Windows and .NET security patches installed on 8/23 which I think might be the…
Don Zacharias
  • 1,544
  • 2
  • 14
  • 31
0
votes
2 answers

Select node in youtube feed response using xpath in vb6

for each entry in this xml, i need to get the "title" and the first thumbnail image. that is the first image in the media:group
Smith
  • 5,765
  • 17
  • 102
  • 161