Java Reference
In-Depth Information
The contents of this URL are shown in Listing 12.1.
Listing 12.1: A RSS 1.0 File
<?xml version="1.0"?>
<rdf:RDF
xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
xmlns="http://purl.org/rss/1.0/">
<channel rdf:about="http://www.httprecipes.com/1/12/rss1.xml">
<title>HTTP Recipes</title>
<link>http://www.httprecipes.com/</link>
<description>
A collection of HTTP programming recipes.
</description>
</channel>
<item rdf:about="http://www.httprecipes.com/1/1/">
<title>Chapter 1: The Structure of HTTP Requests</title>
<link>http://www.httprecipes.com/1/1/</link>
<description>
Learn about the structure of HTTP requests.
</description>
</item>
<item rdf:about="http://www.httprecipes.com/1/2/">
<title>Chapter 2: Using Network Analyzers</title>
<link>http://www.httprecipes.com/1/2/</link>
<description>
Learn to use Network Analyzers to make bot programming
easier.
</description>
</item>
<item rdf:about="http://www.httprecipes.com/1/3/">
<title>Chapter 3: Simple Requests</title>
<link>http://www.httprecipes.com/1/3/</link>
<description>
Learn to construct simple HTTP requests in Java.
</description>
</item>
... Chapters 4-13 continue here ...
Search WWH ::




Custom Search