[flexcoders] parse XML and get unknow tag as String

2006-06-28 Thread iloirdnam
Hello, I've got an XML file with unknow structure like WhoRU id='50' othertag... With the following e4x expression, I can get an XMLList with WhoRU tag as first element : [EMAIL PROTECTED]() How can i isolate the WhoRU tag to compare it to other string? Thanks, M. Iloirdna

[flexcoders] XML with namespaces HTTPService

2006-06-27 Thread iloirdnam
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; titleHello/title /book with the following code : { ... hs = new HTTPService(); hs.concurrency = last; hs.resultFormat = e4x;