Previous | Next
WireHose Developers Guide

Sample feeds list

The first step is to add the sample feeds list to the Hello World project.

  1. Expand the Resources group in the Files pane.
  2. Choose Add Files... from Project menu.
  3. Select SampleRSSFeeds.xml in the WireHoseExtras/SampleData/data/ folder, and click Add.
  4. Check "Copy items into destination group's folder (if needed)", add it to the Application Server target, and click Add.

The sample feeds file looks like this:

<?xml version="1.0" encoding="ISO-8859-1" ?>
<rss version="2.0">
<channel>
<title>WireHose Hello World RSS Feed List (from Syndic8.com)</title>
<link></link>
<description>Sample RSS feed list for WireHose Hello World tutorial</description>
<webMaster>support@wirehose.com</webMaster>
<pubDate>2003-07-01</pubDate>
<buildDate>2003-07-01</buildDate>

<item>
    <title>About.com Botany</title>
    <link>http://www.growinglifestyle.com/h117/index.rss</link>
    <description>Latest articles at About.com Botany (from Growing Lifestyle).</description>
    <category>Consumer/Gardening</category>
</item>
<item>
    <title>About.com Gardening</title>
    <link>http://www.growinglifestyle.com/h106/index.rss</link>
    <description>Latest articles at About.com Gardening (from Growing Lifestyle).</description>
    <category>Consumer/Gardening</category>
</item>
...
</channel>
</rss>

Previous | Next