BREW RSS Reader - 2 / 9 -
About RSS
RSS contents are described in XML, but can be implemented in a straightforward way using the XML parser of SophiaFramework UNIVERSE.
* In order to keep the tutorial simple, RSS Reader is only compatible with RSS version 1.0. The source code can be easily modified to function with other RSS versions.
Related Information : RSS (file format) - Wikipedia
Data that RSS Reader will Handle
- Page title
- Page description
- Item title
- Item description
- Item date
- Item category
Data Format that RSS Reader will Handle ( RSS 1.0 )
<?xml version="1.0" encoding="utf-8"?>
<rdf:RDF>
<channel>
<title>Page title</title>
<description>Page explanation</description>
</channel>
<item>
<title>Title 1</title>
<description>Explanation of title 1 </description>
<dc:date>Date of creation 1 </dc:date>
<dc:subject>Topic 1 </dc:subject>
</item>
<item>
<title>Title 2</title>
<description>Explanation of Title 2</description>
<dc:date>Date of creation 2 </dc:date>
<dc:subject>Topic 2 </dc:subject>
</item>
<item>
....
</rdf:RDF>
* Use the following RSS file to test RSS Reader: RSS test file.







