1.

What Is The Structure Of Atom Feed Documents?

Answer»

An Atom feed document must have a root element called "feed". WITHIN in the "feed" element, one or more "entry" elements are enclosed. The high level structure of an Atom feed document looks like:

<?xml VERSION="1.0" encoding="utf-8"?>
<feed XMLNS="HTTP://www.w3.org/2005/Atom">
 (other feed sub-elements)
 <entry>
...
 </entry>
 <entry>
...
 </entry>
 (more entry elements)
</feed>

An Atom feed document must have a root element called "feed". Within in the "feed" element, one or more "entry" elements are enclosed. The high level structure of an Atom feed document looks like:

<?xml version="1.0" encoding="utf-8"?>
<feed xmlns="http://www.w3.org/2005/Atom">
 (other feed sub-elements)
 <entry>
...
 </entry>
 <entry>
...
 </entry>
 (more entry elements)
</feed>



Discussion

No Comment Found