Reading an RSS feed with Flex 2
RSS feeds are a common way for Web site owners to provide information to the public, usually as a series of news items. Each news item is provided using a standard XML language so it can be read with an RSS reader or aggregator. In this article, I want to show you how to create a Flex 2 application that consumes an RSS feed.
We'll grab the feed from the Adobe xml news aggregator at http://weblogs.macromedia.com/mxna/. This aggregator displays news items from several different sources. We'll display a list of headlines from the news feed in a List control. When we click a headline, we'll see further details about that news item. We'll also be able to open the item in a Web browser to see the full details.
Read More