Hello,

I'm trying to navigate the following XML source ins AS3:
<?xml version="1.0" encoding="UTF-8"?>
<config>
<book xmlns="http://anamespace.com";>
  <title>Hello</title>
</book>

with the following code :
{
...
hs = new HTTPService();
hs.concurrency = "last";
hs.resultFormat = "e4x";
hs.addEventListener("result",dataReceived);
hs.send();
}

private function dataReceived(e:ResultEvent):void
{
  xmlContent = XML(e.result);
  trace(xmlContent) // Ok dump all xml content
  trace(xmlContent.book) // dump nothing
}

With no namespace, this code works.

How can I do?







------------------------ Yahoo! Groups Sponsor --------------------~--> 
Check out the new improvements in Yahoo! Groups email.
http://us.click.yahoo.com/6pRQfA/fOaOAA/yQLSAA/nhFolB/TM
--------------------------------------------------------------------~-> 

--
Flexcoders Mailing List
FAQ: http://groups.yahoo.com/group/flexcoders/files/flexcodersFAQ.txt
Search Archives: http://www.mail-archive.com/flexcoders%40yahoogroups.com 
Yahoo! Groups Links

<*> To visit your group on the web, go to:
    http://groups.yahoo.com/group/flexcoders/

<*> To unsubscribe from this group, send an email to:
    [EMAIL PROTECTED]

<*> Your use of Yahoo! Groups is subject to:
    http://docs.yahoo.com/info/terms/
 



Reply via email to