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

learn more… | top users | synonyms

19
votes
5answers
3k views

Which version of MSXML should I use?

Seems like this would be a common question, though I could not find it on SO. Which version of MSXML should I use in my applications, and more importantly, how should I decide? There is MSXML3, 4, ...
9
votes
4answers
30k views

HTTP status code 0 - what does this mean in MS XMLHTTP?

I have an HTA (Microsoft HTML application - just an offline HTML + JavaScript application) that is using the standard MS XMLHTTP COM object (Microsoft.XMLHTTP or Msxml2.XMLHTTP depending on version ...
8
votes
1answer
226 views

Can I convert a msxml.IXMLDOMNode to XmlIntf.IXMLNode in Delphi?

I have read som xml into an msxml.IXMLDOMDocument object. However, there is a utility method in an API that I am using, that I would like to call, but it takes an XmlIntf.IXMLNode as an argument. Is ...
8
votes
5answers
962 views

Does System.Xml use MSXML?

I'm developing a C# application that uses a handful of XML files and some classes in System.Xml. A coworker insists on adding the MSXML6 redistributable to our install, along with the .NET framework ...
7
votes
1answer
990 views

How can I pretty-print XML source using VB6 and MSXML?

I've been looking after this for months now and I mostly found sites asking the same question. The answers I did found were always for .NET or C++ or involved XSLT.
6
votes
2answers
1k views

Default encoding for variant bstr to std::string conversion

I have a variant bstr that was pulled from MSXML DOM, so it is in UTF-16. I'm trying to figure out what default encoding occurs with this conversion: VARIANT vtNodeValue; ...
6
votes
1answer
4k views

Calling WCF service by VBScript

There is a WCF service with configuration: <services> <service name="MyService" behaviorConfiguration="MyServiceBehavior"> <endpoint binding="basicHttpBinding" ...
5
votes
4answers
5k views

schema validation with msxml in delphi

I'm trying to validate an XML file against the schema's it references. (Using Delphi and MSXML2_TLB.) The (relevant part of the) code looks something like this: procedure TfrmMain.ValidateXMLFile; ...
4
votes
1answer
71 views

What version will be chosen by MSXML2.XMLHTTP request, without version suffix?

Probably every web developer is familiar with a pattern like this: var xmlHttp = null; if (window.XMLHttpRequest) { // If IE7, Mozilla, Safari, and so on: Use native object. xmlHttp = new ...
4
votes
1answer
59 views

Unable to load '@' symbol with loadxml

I tried to execute the following lines VARIANT_BOOL vBoolTestConnection; vBoolTestConnection=m_spXMLDom->loadXML(bstrInput.m_str); bstrInput has the following XML specifications. loadXML is ...
4
votes
1answer
515 views

Data Binding Wizard in Delphi XE - can It be configured to map to MSXML interfaces?

The Data Binding Wizard in Delphi XE generates classes and interfaces that inherit from Delphi's own implementation of the DOM (ADOM XML v4), which doesn't appear to support validation against schemas ...
4
votes
6answers
885 views

How to make Microsoft XmlHttpRequest honor cache control directive

i'm issuing a request using MSXML's XmlHttpRequest object: IXMLHttpRequest http = new XmlHttpRequest(); http.open("GET", "http://www.bankofcanada.ca/stat/fx-xml.xml", False, "", ""); http.send(); ...
4
votes
1answer
203 views

Is there a greasemonkey for IE? or, how do I get a website to use MSXML6 instead of MSXML5?

I don't know greasemonkey but I think it is a way to script or extend Firefox. Is there a greasemonkey for IE? for example: There's a website that is hosting a page that asks me to install ...
4
votes
4answers
1k views

Delphi/MSXML: XPath queries fail

I've loaded a XML document, and now I wish to run a XPath query to select a certain subset of the XML. The XML is <?xml version="1.0"?> <catalog ...
4
votes
3answers
650 views

What became of MSXML 4.0?

i have a dependancy on MSXML 4.0. Microsoft has a page that gives the CLSID and ProgIDs of various MSXML 4.0 objects: Symbolic Name: CLSID_DOMDocument40 GUID: ...
4
votes
5answers
5k views

How to use msxml with Visual Studio 2008 Express (no ATL classes) without becoming crazy?

It is not really a question because I have already found a solution. It took me a lot of time, that's why I want to explain it here. Msxml is based on COM so it is not really easy to use in C++ even ...
4
votes
5answers
2k views

How to use node-set function in a platform-independent way?

I'm writing some xlst file which I want to use under linux and Windows. In this file I use node-set function which declared in different namespaces for MSXML and xsltproc ...
3
votes
4answers
179 views

What has a better user experience: VSTO or VBA Macros?

I need to deploy an Excel file with minimal overhead and best ease of use. Can someone who is experienced tell me what provides a better user experience: Visual Studio Tools For Office (VSTO) or ...
3
votes
3answers
217 views

Using entity 'constants' in an XML Schema

I am trying to create an XML schema in which a lot of types are sharing some 'magic numbers'. Instead of having to change my schema in several locations if/when these magic numbers change, I would ...
3
votes
1answer
120 views

How to write an XSL 1.0 stylesheet with a node-set() function that will run on both MSXML and libxml

I have an XSLT 1.0 stylesheet running using the XSL processor included with PHP (libxml). I want to get the same stylesheet to run on the Microsoft XSL processor MSXML 6.0 (msxml6.dll) ideally so the ...
3
votes
1answer
415 views

How to reformat XML programmatically?

I have an XML document on input which is awfully formatted (it's Delphi project file if anyone cares) - inconsistent indenting, empty lines, strings of nodes lumped together: ...
3
votes
1answer
213 views

How can I write XML from PowerPoint VBA?

I have another question. I need to develop a PowerPoint add-in (for 2003 and 2007 versions) that will be installed on some users computers. It needs to track some of the things they do when they give ...
3
votes
1answer
501 views

Delphi: Invalid XML gets through MSXML validation

I've tried to revrite a JScript example at MSDN in order to validate XML against certain schemas. As a first attmempt, I've used the sl-valid.xml, sl-notValid.xml, and sl.xsd files as used in the ...
3
votes
1answer
2k views

Read UTF-8 XML with MSXML 4.0

I have a problem with classc ASP / VBScript trying to read an UTF-8 encoded XML file with MSXML. The file is encoded correctly, I can see that with all other tools. Constructed XML example: <?xml ...
3
votes
1answer
505 views

MSXML: How does one programmatically get the error text for failed transforms?

XMLNotepad provides the following text (for example) when a transform fails: Error Transforming XML The variable or parameter 'saturated-background-color' was duplicated with the same ...
3
votes
2answers
1k views

msxml removes line breaks in CDATA section

I have a simple XML with a CDATA section like: <?xml version="1.0" encoding="ISO-8859-1" ?> <config> <input> <![CDATA[ line another line and another ]]> ...
3
votes
4answers
10k views

MSXML2.XMLHTTP send method works with early binding, fails with late binding

The code below works. But if I comment out the line "Dim objRequest As MSXML2.XMLHTTP" and uncomment the line "Dim objRequest As Object" it fails with the error message "the parameter is incorrect". ...
3
votes
4answers
2k views

Concatenating xml files with xslt

I have several xml files, the names of which are stored in another xml file. I want to use xsl to produce a summary of the combination of the xml files. I remember there was a way to do this with ...
2
votes
1answer
74 views

XMLHTTP and “Access denied” error

I'm trying to retrieve a content of HTTP document with MS XMLHTTP COM. I did copied the following sample code but even this does not work and fails with EOLEException error 'Access is denied' at send ...
2
votes
1answer
89 views

How to access particles in complextype in msxml6 using delphi?

I got 'the parameter is incorrect' when access to partilces in contentmodel but it is ok to read itemtype. Can someone tell me what to do ? Thanks in advance. //Book.xsd <xs:schema ...
2
votes
1answer
238 views

MSXML / ServerXmlHttp POST Failing intermittently (Delphi)

I have some legacy Delphi code that POSTs XML to a secure web server using the MSXML component. The code has been working fine for years. Recently, we made some changes that makes the XML file size ...
2
votes
2answers
269 views

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?
2
votes
1answer
138 views

MSXML: How can i modify nodes returned by SelectNodes method

Is it possible to modify XML and/or Text of nodes returned by SelectNodes method ? When i am using SelectSingleNode method i always can modify XML and Text property of returned node: vXML := ...
2
votes
2answers
155 views

Is there a counterpart to “CreateInstance”?

We have some code that uses MSXML, and does this to create the XML document object: MSXML2::IXMLDOMDocumentPtr doc_in; doc_in.CreateInstance("Msxml2.DOMDocument.6.0"); Once we're finished with ...
2
votes
4answers
449 views

MSXML creating XML “header”

I am attempting to use MSXML in VB6 to create a XML file that can then be deserialized as an object in C#. The XML I am attempting to mimic looks like this <?xml version="1.0" ...
2
votes
1answer
166 views

Excel XML table headings with spaces

I'm exposing tables in my system via a webservice to use within Excel worksheets (as an XML Source). The tables can have headers that contain spaces and other characters not valid in XML element ...
2
votes
1answer
219 views

Caching client-side XSLT imports in Internet Explorer

I'm transforming an XML document with XSLT in Internet Explorer 7. My XSLT imports/includes (I've tried both) another XSLT with the following line: <xsl:import href="utils.xsl" /> This ...
2
votes
1answer
355 views

MSXML. Get data as Base64

I'm using C++ with MSXML and want to get data from XML file as Base64. I'm using this code: hr = nodeList->get_item((long)i, (IXMLDOMNode **)&vXMLNode); if ( FAILED(hr) ) throw ...
2
votes
1answer
320 views

MSXML - Namespaces info not persisting

I am using MSXML 6.0 to perform a transform of my own XML into another XML format. I am not sure if I maybe just don't understand exactly how MSXML works, but I believe I have noticed some strange ...
2
votes
2answers
115 views

How can I read the DOCTYPE SYSTEM identifier with Delphi?

For a document which has a DOCTPYE declaration like <!DOCTYPE RootElement SYSTEM "file.dtd"> Delphi 2009, using MSXML, reports that the systemId is empty (""): ...
2
votes
3answers
234 views

Xpath expression to retrieve oldest/earliest node

I have an XML snippet, so: <STATES> <STATE> <NAME>Alabama</NAME> <ABBREVIATION>AL</ABBREVIATION> <CAPITAL>Montgomery</CAPITAL> ...
2
votes
2answers
485 views

XSLT To HTML with Simple Grouping of XML Data using templates instead of for-each

I have been messing with xslt off and on since I became a sharepoint administrator, it uses xslt alot for displaying list data. I have recently started using it to transform database results that I ...
2
votes
2answers
2k views

Saving XML in UTF-8 with MSXML

I'm trying to load a simple Xml file (encoded in UTF-8): <?xml version="1.0" encoding="UTF-8"?> <Test/> And save it with MSXML in vbscript: Set xmlDoc = ...
2
votes
1answer
638 views

XmlHttp: How to get the actual statusText from an msxml.xmlhttp object?

A web-server is returning a status code and description in response to a request by an XmlHttp component. The actual status response from the server begins with: HTTP/1.1 400 Not a valid http POST ...
2
votes
1answer
717 views

Load XML into C++ MSXML from byte array

I'm receiving XML over a network socket. I need to take that XML and load it into the DOM to perform further operations. MSXML requires input strings that are in either UCS-2 or UTF-16 and completely ...
2
votes
2answers
203 views

Is there a way to control which tags get collapsed during serialization with MSXML6?

I create a MSXML6 DOM document and during serialization I want to control how empty elements are serialized: <tag></tag> <tag/> This answer describes a solution for C#, but I'm ...
2
votes
1answer
2k views

msxml3.dll: The download of the specified resource has failed -When using XMLHTTP

I have a java script code snippet where i am making an XMLHTTP request to a remote server page. The below is my code var objXMLdom = new ActiveXObject("Microsoft.XmlDOM") var objXMLRecdom = ...
2
votes
1answer
2k views

VBScript, MSXML and Namespaces

Given the following XML: <?xml version="1.0"?> <soap:Envelope xmlns:soap="http://www.w3.org/2003/05/soap-envelope" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" ...
2
votes
1answer
1k views

validate xml schema using msxml parser

I want to validate an XML file against an XML Schema file. It is a simple xml file. does not include namespace etc. I want to do this in c++, using MSXML 6.0. Can anyone provide me the guidance ...
2
votes
2answers
856 views

How to read an xsd:dateTime with msxml?

I'm using the msxml to parse an xml file. Language is C++. The xml file contains some dates and times using the xsd:dateTime format (Something like that: 2009-04-29T12:00:00Z) Is there an easy way to ...

1 2 3 4 5