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

XSLT transformation through javascript Only for IE

In Microsoft Internet Explorer we can use Msxml2.DOMDocument.6.0 activeX component to do xslt based transformation using the transformNode() method. We can load an xml or xslt by the following method : var activeX = new…
Ranjan Sarma
  • 1,565
  • 5
  • 22
  • 36
-1
votes
1 answer

Procedure Parameter Error on MSXML

Below is the code that I am running and I am getting an error: I already checked the uses and it's fine. I think it is a problem with the parameter of my AddSimpleElement() procedure. unit Unit9; interface uses Winapi.Windows, Winapi.Messages,…
Ciodensky
  • 59
  • 1
  • 1
  • 11
-1
votes
1 answer

How can I handle network exceptions in VBA?

Sub test() Dim id As String id = "user1234" Dim PHARMA As String PHARMA = "http://xxxx" Dim url As String url = PHARMA & id Dim IE As MSXML2.XMLHTTP60 Set IE = New MSXML2.XMLHTTP60 IE.Open "GET", url,…
Simon
  • 3
  • 1
-1
votes
1 answer

Is it possible to limit the file size of an XML in MSXML with VB6?

I there a possibility to limit the size of an XML upon creation in Vb6 using MSXML? For example I have to create a like 2GB XML file, but instead I want it to be split in 4 files of 500MB or 2 files of 1GB. Please let me know the right direction to…
zyberjock
  • 337
  • 5
  • 19
-1
votes
1 answer

How to get current element attribute

XSL is used to de-normalize XML for importing into flat database table. For every invoice invoiceid column must contain this invoice id. However for unknown reason returns always…
Andrus
  • 26,339
  • 60
  • 204
  • 378
-1
votes
1 answer

MSXML 6 is not listed in installed programs list of Windows 7

I can see msxml6.dll file in C:\Windows\System32 and C:\Windows\SysWOW64 folder but still this is not listed under Installed programs list. Can someone shed some light on this?
prawin
  • 413
  • 7
  • 16
-1
votes
1 answer

How to XSLT-transform in-memory xml DOM tree?

How to XSLT-transform in-memory xml DOM tree? For example I create(with DOM) in memory XML tree and want to XSLT-transform it. I want to omit phase of serializing created DOM tree in XML and then send xml serialized document to XSLT processor(that…
Vlad
  • 1,977
  • 19
  • 44
-1
votes
1 answer

sorting xml having adjacent same name tag using xsl

I was recently working on xsl. I wrote code to sort in ascending order of the value of the key element. Below is the xml I want to sort according to key. I want all occurrences of valueSet to be sorted by the value of the second…
Swati Jha
  • 3
  • 3
-1
votes
1 answer

"Reading xml file"

I am loading and reading a xml file. I was successful when I was using Visual studio 6 but now I have changed to Visual studio 10 and does not compile. I am developing SDI application using MFC classes. This are the errors: error 1120 - , one…
-1
votes
2 answers

XPath not returning Node Value

Having a small issue here, I am working on a legacy Classic ASP application for a customer and have the need to pull data from an XML file but I cannot get the value of a single node, my code just returns nothing. I have and am able to pull all data…
OPSL
  • 131
  • 1
  • 11
-1
votes
1 answer

Schema validation error "Duplicate named : name = 'X'"

I'm trying to use the IXMLDOMDocument2 interface (C++) to validate an Xml document against some schema and I'm getting the following error: Duplicate named : name = '{http://www.site.com/MySchema}envelope'. I'm struggling to understand…
Justin
  • 84,773
  • 49
  • 224
  • 367
-1
votes
2 answers

Give the c++ code to given xml:

i created an xml like registry structure.. i can node traverse through node name ..here i cannot traverse a nodepath through attribute value ...i give the xml below..
Rajakumar
  • 442
  • 1
  • 9
  • 21
-1
votes
1 answer

Getting an MSXML 80070057 "incorrect parameter" error in VBS script

Everything in this little VBS script works right up until I reach the last line of code indicated below. Upon reaching that line the script throws the error "incorrect parameter 80070057. After spending a great deal of time googling it turns out…
Jay Blanchard
  • 34,243
  • 16
  • 77
  • 119
-1
votes
1 answer

Parsing online HTML pages using msxml/IXMLDOMDocument

Any good tutorial on parsing online HTML pages using msxml/IXMLDOMDocument? I need to parse HTML pages using XPATH expressions. Most probably some of HTML pages will not be 100% valid , so I need to configure parser to be more "friendly" or not so…
rkosegi
  • 14,165
  • 5
  • 50
  • 83
-2
votes
1 answer

XML to XML XSLT transformation. MSXML in VBScript

I have a fairly nested XML file that I'd like to transform with an XSL template to something a little simpler to make bulk loading the data into SQL more efficient. I wanted to do it in C++ (Codeblocks with gcc) but I'm having a bit of trouble just…
Dan
  • 758
  • 6
  • 20
1 2 3
41
42