XML




CS174

Chris Pollett

Oct. 27, 2010

Outline

Introduction to XML

The Syntax of XML

XML Document Structure and Entities

Document Type Definitions

<!ELEMENT ..>

<!ATTLIST ..>

<!ENTITY ..>

Example DTD

<?xml version = "1.0" encoding ="utf-8" ?>
<!-- plane.dtd fragment -->
<!ELEMENT planes_for_sale (ad+)>
<!ELEMENT ad (year, make, model, color, price?, seller) >
...
<!ELEMENT seller (#PCDATA)>

<!ATTLIST seller phone CDATA #REQUIRED>

<!ENTITY c "cessna" >

Internal versus External DTDs

Namespaces

XML Schemas

More on Schemas