What is the recommended way of parsing an XML feed with multiple namespaces with ActionScript 3.0?
- by dafko
I have seen the following methods to be used in several online examples, but haven't found any documentation on the recommended way of parsing an XML feed.
Method 1:
protected function xmlResponseHandler(event:ResultEvent):void
{
var atom:Namespace = new Namespace("http://www.w3.org/2005/Atom");
var microsoftData:Namespace = new…