Problem storing an RSS feed in Flex 4
Posted
by ben
on Stack Overflow
See other posts from Stack Overflow
or by ben
Published on 2010-05-11T03:06:37Z
Indexed on
2010/05/11
3:14 UTC
Read the original article
Hit count: 266
Hey guys,
I'm having some trouble storing the results of an RSS feed in my Flex 4 app. Here is the variables view, showing the result of the HTTPService which gets the feed:
And here is the code I use to store the result:
public var rssXML:XML;
rssXML = event.result as XML;
But after this code is run, rssXML is still null. What am I doing wrong? Thanks for reading.
© Stack Overflow or respective owner