Tagged Questions

The tag has no wiki summary.

learn more… | top users | synonyms

3
votes
1answer
94 views

how to find the elements name in the xml file using DOM xerces c++..?

i want to know how to read the all the elements name in the following xml file..? "<"fruits> "<"apple>...."<"/apple> "<"banana>... "<"/banana> "<"grapes>... ...
2
votes
0answers
381 views

MSXML2.DOMDocument.xml give me malformed xml

We have an old legacy system that where a component is writter in VB6. One method returns a string that is xml data. The xml data is created with msxml3.dll MSXML2.DOMDocument and returns the data of ...
1
vote
1answer
467 views

Selectsinglenode in IXMLDOMElement?

can i perform select single node from IXMLDOMElement ,if its possible give me one example for that using MSXML
1
vote
2answers
5k views

How can I access element attributes from an IXMLDOMNode?

I'm building an XML DOM document in C++. My problem is this: I execute an XPATH query from an Element in my Document, which I know will return another Element. The elementPtr->selectSingleNode call ...
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
128 views

DOMElement in Delphi

how i can use .getElementsByTagName in DOMNodeList Object ? Like: procedure TForm1.selecionarClick(Sender: TObject); var DOMDocument: iXMLDOMDocument; DOMNodeList: iXMLDOMNodeList; ...
0
votes
1answer
220 views

How to extend IXMLDOMElement using 'prototype'?

I have some code, which was written couple of years ago and works only in IE. I would like, to make it work with browser now. So, code receives XML by XHR, and then reading its content. And I have a ...