Questions tagged [msxml6]

MSXML is a set of services that allow applications written in JScript, VBScript, and Microsoft development tools to build Windows-native XML-based applications. MSXML6 is the latest MSXML product from Microsoft.

Microsoft XML Core Services (MSXML) is a set of services that allow applications written in JScript, VBScript, and Microsoft development tools to build Windows-native XML-based applications. It supports XML 1.0, DOM, SAX, an XSLT 1.0 processor, XML schema support including XSD and XDR, as well as other XML-related technologies.

131 questions
3
votes
2 answers

How to create a TXML Document using MSXML 6.0 in Delphi 7?

MSXML 6.0 didn't exist when Delphi 7 was released. Is it possible to configure Delphi's TXML Document to use MSXML 6.0 instead of the older versions?
neves
  • 33,186
  • 27
  • 159
  • 192
3
votes
2 answers

Problem with COM and MSXML (64-bit only)

We are porting a huge application from 32-bit to 64-bit. This application has a few external libraries which we either disabled or used their 64-bit versions. We are also accessing a database via our self-written COM methods. And we were using…
Steve Stone
  • 31
  • 1
  • 2
3
votes
2 answers

Why does parsing XML document using MSXML v3.0 work, but MSXML v6.0 doesn't

So, I am working on a project that scrapes and collects data from many different sources around the internet with many different methods depending on each source's characteristics. The most recent addition is a web API call which returns the…
Stavros Jon
  • 1,695
  • 2
  • 7
  • 17
3
votes
1 answer

Error when loading valid Windows-1252 document "System error: -2146697210"

Somehow, sometimes the code below generates an error when loading valid Windows-1252 XML. It fails on Windows XP Professional x86 SP3 using MSXML6. It succeeds on Windows 7 Ultimate x64 SP1 using MSXML6. Note: the code below is written in Delphi,…
Jeroen Wiert Pluimers
  • 23,965
  • 9
  • 74
  • 154
3
votes
0 answers

XmlHttp Sometimes Flips # to %23 in the url string

I have a bit of a dilemma that I really could use some help with please. You see I need to copy the data from a web page into a worksheet and am having some dilemma with the following code block using XML 6.0 Dim httpRequest As XMLHTTP Set…
Hexber
  • 43
  • 2
3
votes
1 answer

MSXML2.DOMDocument60 crashes Excel

I have written a VBA macro to load and parse an XML file. This exact code has worked fine for awhile, but now it's no longer functioning. I've tested it on two different computers running Excel 2013 64-bit. The code it fails on is below: Public Sub…
Bishop
  • 127
  • 2
  • 14
3
votes
1 answer

Possible header collision

I want to validate XML files against XSD schemas in Visual C++. I looked around the internet and the MSXML examples I found seemed to be the most straightforward. I'm trying to integrate this into the project I'm working on. I created…
GreatDane
  • 683
  • 1
  • 9
  • 31
2
votes
2 answers

How do I read CRLF delimited lines from MSXML.ResponseText in VBA/Excel

Most of the examples I see with MSXML have to to with Javascript or JQuery, but I'm writing an Excel 2010 macro that doesn't use either. My goal is to download a file (as shown below), and parse a medium sized (5 to 15MB) CSV file. I ultimately…
makerofthings7
  • 60,103
  • 53
  • 215
  • 448
2
votes
0 answers

Cannot open include file msxml6.h - error, VS2005 c++

I have a fatal error in my c++ VS2005v application. cannot open include file msxml6.h. no such file or directory. I'm working on server 2008 with VS2005, before I had VS2008 and VS2010 and I've uninstalled both, and reinstall 2005 and still the…
gln
  • 1,011
  • 5
  • 31
  • 61
2
votes
2 answers

XPath 'or' operator using the 'pipe' character?

Within an AutoHotKey routine I'm using MSXML6 to parse an XML document. doc := ComObjCreate("MSXML2.DOMDocument.6.0") doc.setProperty("SelectionLanguage", "XPath") doc.async :=…
DaveF
  • 113
  • 10
2
votes
1 answer

Incorrect definition for the root element in XML schema when generating XSD on the fly

Yes, I took a look at this question: Incorrect definition for the root element in XML schema Here is a sample of my code that loads XML and checks it against XML schema generated on the fly. The problem is: when I add an XML schema generated as a…
Paul
  • 25,812
  • 38
  • 124
  • 247
2
votes
0 answers

Replacing references of MSXML4 with MSXML6. Is namespace MSXML2?

Getting some odd build behavior as I remove all references to MSXML4 in my project, and replace them with MSXML6. When I install MSXML using NuGet, or if I add it manually by referencing the dll in SysWow64, the reference immediately builds down to…
Switch386
  • 454
  • 6
  • 19
2
votes
1 answer

Upgrading to MsXml6.dll

I had a problem in upgrading the Microsoft XML core for my application from msxml3.dll to msxml6.dll. I chnaged the vcproj, and the header file of mine to point to the msxml6 header and library file. I also changed the class id of msxml6 to create a…
Santhosh77
  • 73
  • 9
2
votes
1 answer

Use Excel-VBA (MSXML2.XMLHTTP object) to update SharePoint List

General Info.: I need to update (add/edit) a SharePoint list from Excel. I was able to do it with a ListObject, however this is not the direction we are leading to. After reading through all Google possibilities, I came up (maybe I'm wrong) with the…
Shai Rado
  • 33,032
  • 6
  • 29
  • 51
2
votes
1 answer

Can't get xsl:import or xsl:include to work on MSXML6

I am trying to get MSXML6 XSLT import (or include) functionality working for my app. I have looked everywhere for a solution to this and have found a number of references to people for whom it seems to be working so I'm thinking I must be doing…
Bill S
  • 23
  • 4
1
2
3
8 9