I have created a simple RSS feed in XML which is generated via an ASP file for updated feeds. This seems to work fine except I want to add a company logo on each feed but cannot get it to appear. Can someone look at my XML output and see where I am going wrong. The links are all using the localhost path at the moment for development.
<?xml version="1.0" encoding="iso-8859-1" ?>
- <rss version="2.0">
- <channel>
<title>Company Name</title>
<link> <description>Living Money Loans</description>
<language>en-us</language>
- <item>
<title>This is RNS 1</title>
<link>- <image>
<url> <width>160</width>
<height>67</height>
<description>Living Money Loans</description>
</image>
- <description>
- <![CDATA[ test
]]>
</description>
<pubDate>08/09/2006</pubDate>
</item>
- <item>
<title>This is RNS 2</title>
<link>- <image>
<url> <width>160</width>
<height>67</height>
<description>Living Money Loans</description>
</image>
+ <description>
- <![CDATA[ test copy 2
]]>
</description>
<pubDate>11/09/2006</pubDate>
</item>
- <item>
<title>This is RNS 3</title>
<link>- <image>
<url> <width>160</width>
<height>67</height>
<description>Living Money Loans</description>
</image>
- <description>
- <![CDATA[ test copy 3
]]>
</description>
<pubDate>12/09/2006</pubDate>
</item>
</channel>
</rss>
<?xml version="1.0" encoding="iso-8859-1" ?>
- <rss version="2.0">
- <channel>
<title>Company Name</title>
<link> <description>Living Money Loans</description>
<language>en-us</language>
- <item>
<title>This is RNS 1</title>
<link>- <image>
<url> <width>160</width>
<height>67</height>
<description>Living Money Loans</description>
</image>
- <description>
- <![CDATA[ test
]]>
</description>
<pubDate>08/09/2006</pubDate>
</item>
- <item>
<title>This is RNS 2</title>
<link>- <image>
<url> <width>160</width>
<height>67</height>
<description>Living Money Loans</description>
</image>
+ <description>
- <![CDATA[ test copy 2
]]>
</description>
<pubDate>11/09/2006</pubDate>
</item>
- <item>
<title>This is RNS 3</title>
<link>- <image>
<url> <width>160</width>
<height>67</height>
<description>Living Money Loans</description>
</image>
- <description>
- <![CDATA[ test copy 3
]]>
</description>
<pubDate>12/09/2006</pubDate>
</item>
</channel>
</rss>