1
vote
1answer
25 views
How to create XML from MSXML DOM
I've loaded an XML into a MSXML DOM node hierarchy, manipulated some of the nodes, and now I'd like to create an XML as a string from the node hierarchy. I know MSXML exposes a sav …
0
votes
1answer
36 views
Large Xml files are being truncated by MSXML4 / FreeThreadedDOMDocument40 (COM string Interop issue)
I'm using the following code to load a large Xml document (~5 MB):
int _tmain(int argc, _TCHAR* argv[])
{
::CoInitialize(NULL);
HRESULT hr;
CComPtr< IXMLDOMDocument > sp …
0
votes
1answer
37 views
How do I append elements with duplicate names using MSXML & C++?
I am write some code to update a XML DOM using MSXML4 & C++. I need a method that appends a child element to a parent element. The code I have written below works until the t …
2
votes
2answers
59 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 solu …
0
votes
2answers
52 views
Change NodeName of an XML tag element using MSXML
I'd like to change the tag name of a MSXML XMLDOMElement, but unfortunately the nodeName property is read-only. Is there any straightforward way to do it, or have I to work around …
2
votes
1answer
98 views
MSXML2.XMLHTTP Request to validate entered URL in ASP Classic
Hi guys. Thanks in advance for any help received.
I want to allow our client to enter a URL into a text field which then checks whether the URL exists and works.
There are 3 poss …
1
vote
3answers
128 views
EOutOfMemory Creating Large XML Using Delphi
I'm using Delphi to create an XML document from data in a relational database. It tests fine with small datasets, but when I try to expand the size of the data set to production le …
0
votes
1answer
22 views
Schema validation error “Duplicate named <element> : 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 <element> : name …
1
vote
1answer
108 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 file …
4
votes
3answers
122 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 xmlns:xsi='http://www.w3. …
1
vote
2answers
31 views
IXMLDOMDocument2 to string javascript
I have a IXMLDOMDocument2 type document. I would like to see the xml for this document. How can I turn it in to a string so I can view it? I am using javascript. The .text properit …
0
votes
1answer
42 views
msxml fails to correctly close <link> tags during XSLT transformation
Hi,
I'm trying to parse a RSS feed using C#, and I need to transform it with XSLT. Here's a snippet of my XSLT:
<xsl:output encoding="UTF-8" method="html" omit-xml-declaration …
0
votes
0answers
39 views
Validate a remote schema (http) with include schemas and specific proxy server settings
Validate a remote schema (http) with include schemas and specific proxy server settings
I can access the schemas on the other server via http, it resolves the include schemas (.xs …
1
vote
2answers
154 views
Parsing UTF-8-encoded XML in MSXML/ASP
I'm at the receiving end of a HTTP POST (x-www-form-urlencoded), where one of the fields contains an XML document. I need to receive that document, look at a couple of elements, an …
0
votes
1answer
88 views
set an attribute in XML node usig MSXML. I am struck
I try to set an attribute in a XML node using MSXML. IXMLDOMElement alone has the member function setatrribute. So i got the document element.
pXMLDocumentElement -> get_docume …
