Safari Books Online is a digital library providing on-demand subscription access to thousands of learning resources.
The best way to explain how an XML document is composed is to present one. Example A-1 shows an XML document you might use to describe two authors.
<?xml version="1.0" encoding="us-ascii"?>
<authors>
<person id="lear">
<name>Edward Lear</name>
<nationality>British</nationality>
</person>
<person id="asimov">
<name>Isaac Asimov</name>
<nationality>American</nationality>
</person>
<person id="mysteryperson"/>
</authors> |