The xercesxmldom tag has no wiki summary.
3
votes
1answer
99 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
1answer
156 views
DOM elements memory allocation management on Xerces-C
It has been two days for me to struggle on xml parsing problems and it still hasn't finished yet :)
Well, After many trils I finally decided to use Xerces-C to parse xml in my c++ application.
...
2
votes
2answers
518 views
No more xercesxmldom unit in Delphi XE?
I'm wondering what happened to the xercesxmldom unit as one of the XML DOM implementations.
It seems to have disappeared in Delphi XE.
Why?
(I searched the docs; couldn't find any relevant info on ...
0
votes
1answer
52 views
How to compare document objects in java with XERCES?
I am trying to compare two Document objects and try to make operation according to result.
For example I will have a Document object like,
<head>
<value> </value>
</head>
...
0
votes
1answer
543 views
Passing from a DOMNode* to a DOMElement* in Xerces-C
I have a c++ application that manipulates xml.
Well, at a certain point of my application I get a DOMNode* and then I attach it to an element as a child.
Well the problem is that I would like to add ...