Rss Feed Java MVC
- by GigaPr
Hi,
i would like to create some RSS Feeds for my website. I managed to crate the XML file but
How do i display it in a nice format like
http://newsrss.bbc.co.uk/rss/newsonline_uk_edition/front_page/rss.xml
and how do i crate the little icon in the url box?
by the way my XML file looks like
    <?xml version='1.0' encoding='UTF-8'?>
<rss version="2.0">
    <channel>
        <title>title</title>
        <description>desciption</description>
        <link>LINK</link>
        <dateCreated>2010-05-31 00:00:00.0</dateCreated>
        <language>Italian</language>
        <item>
            <title>pojpoj</title>
            <description>pojpojpoj</description>
            <link>ojpojpoj</link>
            <dateCreated>2010-06-03 00:00:00.0</dateCreated>
            <pubDate>2010-06-03 00:00:00.0</pubDate>
        </item>
        <item>
            <title>dfojp</title>
            <description>pojpojpoj</description>
            <link>pojpoj</link>
            <dateCreated>2010-06-03 00:00:00.0</dateCreated>
            <pubDate>2010-06-03 00:00:00.0</pubDate>
        </item>
    </channel>
</rss>
Thanks