Tagged Questions
The ixmldomdocument tag has no wiki summary.
3
votes
2answers
486 views
Delphi, IXMLDOMDocument2, Load fails due to invalid character
Using Delphi 2009 and IXMLDOMDocument2
I receive "An invalid character was found in text content" error when loading XML into IXMLDOMDocument2. The character is 1B (in Hex) and is present within a ...
1
vote
1answer
148 views
Getting runtime error information from IXMLDOMDocument::transformNode function
I'm using IXMLDOMDocument::transformNode to apply an XSLT transform using C++ code that looks a little bit like this:
CComPtr<IXMLDOMDocument2> spXMLDoc;
// load spXMLDoc
...
1
vote
1answer
107 views
Merging two XMLDOMDocuments
Is there any easy way in msxml to merge two xml documents (IXMLDomDocuments)?
I want to make one of the trees embedded as a child of the second one.
I saw that IXMLDomDocument3 offers importNode, but ...
1
vote
1answer
588 views
Where does out-of-process MSXML IXMLDOMDocument::save save?
Where does MSXML IXMLDOMDocument::save save? I mean when it's called with a file name argument.
CComPtr< IXMLDOMDocument > doc;
p->get_doc( &doc );
doc->save( CComVariant( ...
1
vote
1answer
846 views
Saving a IXMLDOMDocument without end tag
Using MSXML via C++, when I call IXMLDOMDocument::save, empty XML elements will get an end tag, like this:
<root>
<child name="first">
</child>
</root>
But I want it ...
0
votes
0answers
70 views
How to create a IXMLDOMDocument2, or otherwise add one of it's IXMLDOMElements to a [Object, Document]?
I'm getting an HIERARCHY_REQUEST_ERR (3) in IE9 only when I try to add an element from one document to the other.
I'm creating my document as follows:
var xmlDoc = ...
0
votes
1answer
52 views
Remove XML declaration using msxml6/IXMLDOMDocument2
I want to remove XML declaration only from an XML using C++/COM-
<?xml version="1.0" encoding="UTF-8" ?>
using the IXMLDOMDocument2 interface of msxml6
How can I achieve this ?
0
votes
1answer
50 views
Setting a path on an IXMLDOMDocument that is loaded from RAM
I am using classic ASP. I have a stylesheet that is loaded into RAM already. What my problem is, is my XSLT has an
<xsl:include href="../path to file/file.xslt" />
in it.
When I load it ...
0
votes
1answer
459 views
How to get IXmlDomDocument2.XML to escape quotes properly?
I'm working on a problem where XML exported from our program doesn't escape quotes, (turning " into ",) leading to problems on the receiving end. It escapes &s and angle brackets just ...
0
votes
1answer
397 views
Remove xsi:nil attibute using IXMLDOMDOCUMENT in Delphi
I have many xml nodes in an xmldocument that have xsi:nil="true" attributes. If I set values on these nodes, the nil attribute remains and it becomes invalid against my xsd. How do I remove the ...
0
votes
3answers
515 views
Save XML like XmlTextWriter but with DOM
When I build a XML in C# using XmlDocument, and I want to save to XML to file, including the encoding information, I use XmlTextWriter, as below:
using (StringWriter swr = new StringWriter())
...
0
votes
3answers
402 views
How to Validate an XML Node against an XSD in C++?
Please note that I'm asking for validation against a particular node and not the whole file.
For examples
<somexmldoc>
<someNode>
<UserDefinedNode> </>
...