I have an XML file (simplified below) and I am unable to read the contents of the nodes:
<List xmlns="Default" xmlns:st="ST" xmlns:lc="LC">
<Main>
<st:ID>10</st:ID>
<Info>
<st:One>One</st:One>
<st:Two>Two</st:Two>
<st:Three>Three</st:Three>
</Info>
</Main>
</List>
If I try: trace(xmlOne.Main.Info.One.toString());
it does not return anything. I know it has something to do with the namespaces however I do not create the XML and cannot remove them. I tried:
namespace theDefault = "Default";
use namespace theDefault;
but no luck actually reading the node contents. So without altering the XML what is the best way to read the contents of the nodes?