I want to use DOM functionality of Xerces-C++ API to parse and get values from a XML file. e.g.
<data name="quote" src="www.example.org/files/quote.xml"/>
<script><![CDATA[
var price =
quote.documentElement.getElementsByTagNameNS("http://www.example.org",
"last").item(0).firstChild.data;
]]></script>
Can I use Xerces API (DOM) to fetch values from quote.xml and give values
to <script> here ?
