Xml loading problem

Hello you,

I’ve got a question about using my loaded xml. The loading proces is going oke. But after that there comes the problem. The structure of the XML what is produced by another program lookt like this


Code:
     <?xml version="1.0" encoding="UTF-8"?>
<page qid="194" xmlns="http://ns.fredhopper.com/XML/output/6.1.0">
  <info>
    <locale mlvalue="nl_NL">nl_NL</locale>
    <current-universe>products</current-universe>
    <view>lister</view>
    <mode>user</mode>
  </info>
</page> 

to load this i use the next code.


     ActionScript Code:
     [LEFT][COLOR=#993300]var[/COLOR] xmlLoader:URLLoader = [COLOR=#993300]new[/COLOR] URLLoader[COLOR=#000000]([/COLOR][COLOR=#000000])[/COLOR];
[COLOR=#993300]var[/COLOR] xmlData:[COLOR=#993300]XML[/COLOR] = [COLOR=#993300]new[/COLOR] [COLOR=#993300]XML[/COLOR][COLOR=#000000]([/COLOR][COLOR=#000000])[/COLOR];
[COLOR=#993300]var[/COLOR] xmlContent:[COLOR=#993300]XML[/COLOR] = [COLOR=#993300]new[/COLOR] [COLOR=#993300]XML[/COLOR][COLOR=#000000]([/COLOR][COLOR=#000000])[/COLOR];

xmlLoader.[COLOR=#000000]addEventListener[/COLOR][COLOR=#000000]([/COLOR]Event.[COLOR=#000000]COMPLETE[/COLOR], LoadXML[COLOR=#000000])[/COLOR];
 
xmlLoader.[COLOR=#993300]load[/COLOR][COLOR=#000000]([/COLOR][COLOR=#993300]new[/COLOR] URLRequest[COLOR=#000000]([/COLOR][COLOR=#0000ff]"data.xml"[/COLOR][COLOR=#000000])[/COLOR][COLOR=#000000])[/COLOR];
 
[COLOR=#993300]function[/COLOR] LoadXML[COLOR=#000000]([/COLOR][COLOR=#993300]e[/COLOR]:Event[COLOR=#000000])[/COLOR]:[COLOR=#993300]void[/COLOR] [COLOR=#000000]{[/COLOR]
    xmlData = [COLOR=#993300]new[/COLOR] [COLOR=#993300]XML[/COLOR][COLOR=#000000]([/COLOR][COLOR=#993300]e[/COLOR].[COLOR=#993300]target[/COLOR].[COLOR=#993300]data[/COLOR][COLOR=#000000])[/COLOR];
    products[COLOR=#000000]([/COLOR][COLOR=#000000])[/COLOR];
[COLOR=#000000]}[/COLOR]

[COLOR=#993300]function[/COLOR] products[COLOR=#000000]([/COLOR][COLOR=#000000])[/COLOR]:[COLOR=#993300]void[/COLOR] [COLOR=#000000]{[/COLOR]

    [COLOR=#993300]trace[/COLOR][COLOR=#000000]([/COLOR]xmlData[COLOR=#000000])[/COLOR]
[COLOR=#000000]}[/COLOR]
[/LEFT]
 

this works fine. the problam lies with taking out some information out of the different nodes. for example.


     ActionScript Code:
     [LEFT][COLOR=#993300]trace[/COLOR][COLOR=#000000]([/COLOR]xmlData.[COLOR=#000000]info[/COLOR][COLOR=#000000])[/COLOR]
[/LEFT]
 

i saw that he automatic skips the first node. So I do not use the node. But this is where the problem is. The tag in the xml says:


     XML Code:
     <page qid="194" xmlns="http://ns.fredhopper.com/XML/output/6.1.0">


if i use this the trace on info is not showing anything. If i make is only <page> the tracing just works fine. But because he skips the first Node i can do anything with it. Maybe somebody allready faced this problem or can tell me a fix. Maybe the first node can not include info and has to be clean. I don’t know.

I hope you can help me

Greets Ruben