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

Error in classic asp while making request from windows server 2008

The below code is working fine in classic asp in windows 7 IIS and in windows server 2008 its giving error (as shown below). Here is code: url = "https://api.test.credex.net:10001/merchant/xxxx/requests" set xmlhttp =…
Dhaval
  • 26
  • 1
  • 5
0
votes
1 answer

MSXML2.XMLHTTP not working

I don't know what's going on behind the scenes with these objects, but I use them all the time with great success. dim ie As New SHDocVw.InternetExplorer ie.navigate url Set oDoc = ie.Document iT = oDoc.body.innerText AND dim oX As New…
shockley
  • 11
  • 1
  • 2
0
votes
1 answer

c++, msxml and smart pointers

I need parse some XML and wrote some helpers. I am not expert in C++, actually I wrote with c more then seven years ago. So, I would to make sure, is the approach, what i use correct or not :) 1) I implemented some simple helpers, to take care about…
0
votes
1 answer

MSXML: When I try to remove invalid characters it sometimes gets "stuck"

I need to parse XML files that have a number of invalid characters in them. Here is the VB6/VBA code I use to parse a file and replace the invalid characters: Dim xmldoc As MSXML2.DOMDocument Dim xmlNode As MSXML2.IXMLDOMNode Dim xmlNodeList As…
0
votes
3 answers

VBScript Can not Select XML nodes

I am trying to Select nodes from some webservice response XML to no avail. For some reason I am able to select the root node ("xmldata") however, when I try to drill deeper("xmldata/customers") everything is returned empty! Below is the a sample of…
urbanMethod
  • 55
  • 1
  • 1
  • 4
0
votes
2 answers

Language for XML processing

I want to process MSXML which is generated by Visio 2010, Which Language will be helpful to work with the generated XML, i`m very new to this, Visual basic, .Net or C# will help me? Regards
0
votes
1 answer

Trying to make an XML reader work in C ++

I am trying to read some XML code from a website, and am having a bit of trouble figuring out where my errors are. Using the code from this extremely useful post, I am trying to read a file that I have saved to my desktop…
weskpga
  • 2,017
  • 7
  • 29
  • 43
0
votes
1 answer

Message from webpage xmlLib Error / msxml3 & msxml6

At work some users are getting an xmlLib Error when trying to run a certain web based database. We used to get it when running Windows XP machines but was able to fix by replacing the later version of msxml3.dll with a newer version containing…
0
votes
2 answers

Parse HTML to XML

I am trying to figure out how to parse HTML to XML, but I cannot figure it out. I want to use the MSXML2.ServerXMLHTTP object (in an .asp file). <% url = "http://www.website.com/file.asp" set xmlhttp = CreateObject("MSXML2.ServerXMLHTTP")…
Krzysiek
  • 1,487
  • 4
  • 19
  • 28
0
votes
1 answer

MSXML parser and external entities

I'm using big XML files which I'd like t osplit into several. Then C++ program using MSXML parser converts the XML file into several binary files. The problem occured onece I've tried to split the document into several files using
0
votes
1 answer

Using MSXML2.ServerXMLHTTP to access data from a web page returns truncated data in Lua

I am trying to download a source code file from a web site which works fine for small files, but a couple of larger ones get truncated. The example below should be returning a file 146,135 bytes in size, but returns one of 141,194 bytes with a…
Jane T
  • 2,081
  • 2
  • 17
  • 23
0
votes
1 answer

Bind endpoint(specific IP) to MSXML Request?

Hi I do IPEndpoint binding to my WebRequests as below if (!ipAddress.Equals(myLocalIP)) { request.ServicePoint.BindIPEndPointDelegate = delegate(ServicePoint servicePoint, IPEndPoint remoteEndPoint,…
HaBo
  • 13,999
  • 36
  • 114
  • 206
0
votes
4 answers

Why does Delphi 6's MSXML library leak memory in Delphi 5?

We have an application developed using Delphi 5 that we cannot upgrade to Delphi 6 or later for some reasons that are not important here. Some time ago we had to implement XML processing into that application, and I decided to copy the…
zedmartins
  • 115
  • 1
  • 10
0
votes
2 answers

Loading xml as string and using in jsp and javascript

I have the codes below. Statement 1 loads an xml file of average size (~300-400KB) and stores the content into a string variable (xmlContent). Now the statement 2 will put the value of the jsp variable xmlContent to the javascript variable xmlText.…
Ranjan Sarma
  • 1,565
  • 5
  • 22
  • 36
0
votes
4 answers

< & > are converted to > < etc

I am using MSXMl library to parse xml after I call put_text and then get_xml the output will have < & > converted to < & > How can i get rid of this?
Uday
  • 819
  • 3
  • 12
  • 25