003 XMLHandout
003 XMLHandout
XML Basic
XML HOME
XML Tutorial
XML Introduction
XML How to use « W3Schools Home Next Chapter »
XML Tree
XML Syntax XML stands for eXtensible Markup Language.
XML Elements
XML Attributes
XML Validation
XML is designed to transport and store data.
XML Validator
XML Viewing XML is important to know, and very easy to learn.
XML CSS
XML XSLT _
XML JavaScript
XML HTTP Request XML Document Example
XML Parser
XML DOM
XML to HTML
<?xml version="1.0"?>
XML Application <note>
<to>Tove</to>
XML Advanced <from>Jani</from>
XML Namespaces <heading>Reminder</heading>
XML CDATA <body>Don't forget me this weekend!</body>
XML Encoding
XML Server
</note>
XML DOM Advanced
XML Don't
XML Technologies
XML in Real Life
XML Editors
XML Summary
XML Examples
XML Examples
XML Quiz
XML Exam
Page 1
http://www.w3schools.com/xml/default.asp
XML Introduction - What is XML?
XML Basic
XML HOME
Introduction to XML
XML Introduction
XML How to use « Previous Next Chapter »
XML Tree
XML Syntax
XML was designed to transport and store data.
XML Elements
XML Attributes
XML Validation HTML was designed to display data.
XML Validator
XML Viewing
XML CSS What You Should Already Know
XML XSLT
Before you continue you should have a basic understanding of the following:
XML JavaScript
• HTML
XML HTTP Request • JavaScript
XML Parser
XML DOM If you want to study these subjects first, find the tutorials on our Home page.
XML to HTML
XML Application
What is XML?
XML Advanced
XML Namespaces • XML stands for EXtensible Markup Language
XML CDATA • XML is a markup language much like HTML
XML Encoding • XML was designed to carry data, not to display data
XML Server • XML tags are not predefined. You must define your own tags
XML DOM Advanced • XML is designed to be self-descriptive
XML Don't • XML is a W3C Recommendation
XML Technologies
XML in Real Life
XML Editors The Difference Between XML and HTML
XML Summary
XML is not a replacement for HTML.
XML Examples
XML and HTML were designed with different goals:
XML Examples
XML Quiz • XML was designed to transport and store data, with focus on what data is.
XML Exam • HTML was designed to display data, with focus on how data looks.
<note>
<to>Tove</to>
<from>Jani</from>
<heading>Reminder</heading>
<body>Don't forget me this weekend!</body>
</note>
The note above is quite self descriptive. It has sender and receiver information, it also has a
heading and a message body.
But still, this XML document does not DO anything. It is just pure information wrapped in tags.
Someone must write a piece of software to send, receive or display it.
However, XML-aware applications can handle the XML tags specially. The functional meaning of the
tags depends on the nature of the application.
Page 2
http://www.w3schools.com/xml/xml_whatis.asp
XML Introduction - What is XML?
The tags used in HTML (and the structure of HTML) are predefined. HTML documents can only use
tags defined in the HTML standard (like <p>, <h1>, etc.).
XML allows the author to define his own tags and his own document structure.
It is important to understand that XML is not a replacement for HTML. In most web applications,
XML is used to transport data, while HTML is used to format and display the data.
To read more about the XML activities at W3C, please read our W3C Tutorial.
XML is Everywhere
We have been participating in XML development since its creation. It has been amazing to see how
quickly the XML standard has developed, and how quickly a large number of software vendors has
adopted the standard.
XML is now as important for the Web as HTML was to the foundation of the Web.
XML is everywhere. It is the most common tool for data transmissions between all sorts of
applications, and is becoming more and more popular in the area of storing and describing
information.
Page 3
http://www.w3schools.com/xml/xml_whatis.asp
<?xmlversion="1.0"?>
<?xml version "1 0"?>
<diningͲroom>
<manufacturer>TheWoodShop</manufacturer>
<tabletype="round"wood="maple">
<price>$199 99</price>
<price>$199.99</price>
</table>
<chairwood="maple">
<quantity>6</quantity>
<price>$39 99</price>
<price>$39.99</price>
</chair>
</diningͲroom>
<?xmlversion="1.0"?>
<SONG>
<TITLE>Mambo</TITLE>
<COMPOSER>EnriqueGarcia</COMPOSER>
<PRODUCER>EnriqueGarcia</PRODUCER>
<PUBLISHER>Sony Music Entertainment</PUBLISHER>
<PUBLISHER>SonyMusicEntertainment</PUBLISHER>
<LENGTH>3:46</LENGTH>
<YEAR>1991</YEAR>
<ARTIST>Azucar Moreno</ARTIST>
</SONG>
Page 4
<?xmlversion="1.0"encoding="UTFͲ8"?>
<DOCUMENT>
<GREETING>HellofromXML</GREETING>
<MESSAGE>WelcometoPrograming XMLinJava</MESSAGE>
</DOCUMENT>
</DOCUMENT>
<?xmlversion="1.0"?>
<SCHOOL>
<CLASStype="seminar">
<CLASS_TITLE>XMLInTheRealWorld</CLASS_TITLE>
h l ld /
<CLASS_NUMBER>6.031</CLASS_NUMBER>
<SUBJECT>XML</SUBJECT>
<START_DATE>6/1/2002</START_DATE>
STUDENTS
<STUDENTS>
<STUDENTstatus="attending">
<FIRST_NAME>Edward</FIRST_NAME>
<LAST_NAME>Samson</LAST_NAME>
</STUDENT>
<STUDENTstatus="withdrawn">
STUDENT " i hd "
<FIRST_NAME>Ernestine</FIRST_NAME>
<LAST_NAME>Johnson</LAST_NAME>
</STUDENT>
</STUDENTS>
/S U S
</CLASS>
</SCHOOL>
Page 5
<InitialOrder>
<From>SalwaCoop</From><To>FadelKhudadeh</To>
<Items>
<Item><name>Pepsi</name><Qty>10</Qty><UnitPrice>??</UnitPrice></Item>
<Item><name>Choco.</name><Qty>8</Qty><UnitPrice>??</UnitPrice></Item>
</Items>
</InitialOrder>
1
2
4
SalwaCoop’s
Computer
FFadel
d l
Khudadeh’s
Computer
<InitialOrder> 3
<From>FadelKhudadeh</From><To>SalwaCoop</To>
<Items>
<Item><name>Pepsi</name><Qty>10</Qty><UnitPrice>.095</UnitPrice></Item>
<Item><name>Choco.</name><Qty>8</Qty><UnitPrice>.660</UnitPrice></Item>
</Items>
</InitialOrder>
Page 6
XML Usage
XML Basic
XML HOME
How Can XML be Used?
XML Introduction
XML How to use « Previous Next Chapter »
XML Tree
XML Syntax
XML is used in many aspects of web development, often to simplify data storage
XML Elements
XML Attributes and sharing.
XML Validation
XML Validator
XML Viewing XML Separates Data from HTML
XML CSS
XML XSLT If you need to display dynamic data in your HTML document, it will take a lot of work to edit the
HTML each time the data changes.
XML JavaScript
With XML, data can be stored in separate XML files. This way you can concentrate on using HTML for
XML HTTP Request layout and display, and be sure that changes in the underlying data will not require any changes to
XML Parser the HTML.
XML DOM
XML to HTML With a few lines of JavaScript, you can read an external XML file and update the data content of
XML Application your HTML.
XML Advanced You will learn more about this in a later chapter of this tutorial.
XML Namespaces
XML CDATA
XML Encoding XML Simplifies Data Sharing
XML Server
XML DOM Advanced In the real world, computer systems and databases contain data in incompatible formats.
XML Don't
XML data is stored in plain text format. This provides a software- and hardware-independent way of
XML Technologies
storing data.
XML in Real Life
XML Editors This makes it much easier to create data that different applications can share.
XML Summary
Exchanging data as XML greatly reduces this complexity, since the data can be read by different
incompatible applications.
XML data is stored in text format. This makes it easier to expand or upgrade to new operating
systems, new applications, or new browsers, without losing data.
Different applications can access your data, not only in HTML pages, but also from XML data
sources.
With XML, your data can be available to all kinds of "reading machines" (Handheld computers, voice
machines, news feeds, etc), and make it more available for blind people, or people with other
disabilities.
Page 7
http://www.w3schools.com/xml/xml_usedfor.asp
XML Usage
The future might give us word processors, spreadsheet applications and databases that can read
each other's data in a pure text format, without any conversion utilities in between.
We can only pray that all the software vendors will agree.
Page 8
http://www.w3schools.com/xml/xml_usedfor.asp
XML Tree
XML Basic
XML HOME
XML Tree
XML Introduction
XML How to use « Previous Next Chapter »
XML Tree
XML Syntax
XML documents form a tree structure that starts at "the root" and branches to "the
XML Elements
XML Attributes leaves".
XML Validation
XML Validator
XML Viewing An Example XML Document
XML CSS
XML XSLT XML documents use a self-describing and simple syntax:
And finally the last line defines the end of the root element:
</note>
You can assume, from this example, that the XML document contains a note to Tove from Jani.
The elements in an XML document form a document tree. The tree starts at the root and branches
to the lowest level of the tree.
<root>
<child>
<subchild>.....</subchild>
</child>
</root>
The terms parent, child, and sibling are used to describe the relationships between elements. Parent
elements have children. Children on the same level are called siblings (brothers or sisters).
All elements can have text content and attributes (just like in HTML).
Page 9
http://www.w3schools.com/xml/xml_tree.asp
XML Tree
Example:
<bookstore>
<book category="COOKING">
<title lang="en">Everyday Italian</title>
<author>Giada De Laurentiis</author>
<year>2005</year>
<price>30.00</price>
</book>
<book category="CHILDREN">
<title lang="en">Harry Potter</title>
<author>J K. Rowling</author>
<year>2005</year>
<price>29.99</price>
</book>
<book category="WEB">
<title lang="en">Learning XML</title>
<author>Erik T. Ray</author>
<year>2003</year>
<price>39.95</price>
</book>
</bookstore>
The root element in the example is <bookstore>. All <book> elements in the document are
contained within <bookstore>.
Page 10
http://www.w3schools.com/xml/xml_tree.asp
XML Syntax
XML Basic
XML HOME
XML Syntax Rules
XML Introduction
XML How to use « Previous Next Chapter »
XML Tree
XML Syntax
The syntax rules of XML are very simple and logical. The rules are easy to learn,
XML Elements
XML Attributes and easy to use.
XML Validation
XML Validator
XML Viewing All XML Elements Must Have a Closing Tag
XML CSS
XML XSLT In HTML, you will often see elements that don't have a closing tag:
Note: "Opening and closing tags" are often referred to as "Start and end tags". Use whatever you
prefer. It is exactly the same thing.
In the example above, "Properly nested" simply means that since the <i> element is opened inside
the <b> element, it must be closed inside the <b> element.
<root>
<child>
<subchild>.....</subchild>
</child>
</root>
Page 11
http://www.w3schools.com/xml/xml_syntax.asp
XML Syntax
In XML the attribute value must always be quoted. Study the two XML documents below. The first
one is incorrect, the second is correct:
<note date=12/11/2007>
<to>Tove</to>
<from>Jani</from>
</note>
<note date="12/11/2007">
<to>Tove</to>
<from>Jani</from>
</note>
The error in the first document is that the date attribute in the note element is not quoted.
Entity References
Some characters have a special meaning in XML.
If you place a character like "<" inside an XML element, it will generate an error because the parser
interprets it as the start of a new element.
To avoid this error, replace the "<" character with an entity reference:
Note: Only the characters "<" and "&" are strictly illegal in XML. The greater than character is legal,
but it is a good habit to replace it.
Comments in XML
The syntax for writing comments in XML is similar to that of HTML.
Page 12
http://www.w3schools.com/xml/xml_syntax.asp
XML Elements
XML Basic
XML HOME
XML Elements
XML Introduction
XML How to use « Previous Next Chapter »
XML Tree
XML Syntax
An XML document contains XML Elements.
XML Elements
XML Attributes
XML Validation
XML Validator What is an XML Element?
XML Viewing
XML CSS An XML element is everything from (including) the element's start tag to (including) the element's
XML XSLT end tag.
An element can contain other elements, simple text or a mixture of both. Elements can also have
XML JavaScript attributes.
XML HTTP Request
XML Parser
XML DOM
<bookstore>
XML to HTML <book category="CHILDREN">
XML Application <title>Harry Potter</title>
<author>J K. Rowling</author>
XML Advanced <year>2005</year>
<price>29.99</price>
XML Namespaces </book>
XML CDATA <book category="WEB">
XML Encoding <title>Learning XML</title>
XML Server
<author>Erik T. Ray</author>
XML DOM Advanced
<year>2003</year>
XML Don't
<price>39.95</price>
XML Technologies
</book>
XML in Real Life
</bookstore>
XML Editors
XML Summary
In the example above, <bookstore> and <book> have element contents, because they contain
XML Examples other elements. <author> has text content because it contains text.
XML Examples
XML Quiz In the example above only <book> has an attribute (category="CHILDREN").
XML Exam
Names should be short and simple, like this: <book_title> not like this: <the_title_of_the_book>.
Avoid "-" characters. If you name something "first-name," some software may think you want to
subtract name from first.
Avoid "." characters. If you name something "first.name," some software may think that "name" is
a property of the object "first."
Avoid ":" characters. Colons are reserved to be used for something called namespaces (more later).
XML documents often have a corresponding database. A good practice is to use the naming rules of
your database for the elements in the XML documents.
Non-English letters like éòá are perfectly legal in XML, but watch out for problems if your software
vendor doesn't support them.
Page 13
http://www.w3schools.com/xml/xml_elements.asp
XML Elements
<note>
<to>Tove</to>
<from>Jani</from>
<body>Don't forget me this weekend!</body>
</note>
Let's imagine that we created an application that extracted the <to>, <from>, and <body>
elements from the XML document to produce this output:
MESSAGE
To: Tove
From: Jani
Imagine that the author of the XML document added some extra information to it:
<note>
<date>2008-01-10</date>
<to>Tove</to>
<from>Jani</from>
<heading>Reminder</heading>
<body>Don't forget me this weekend!</body>
</note>
No. The application should still be able to find the <to>, <from>, and <body> elements in the XML
document and produce the same output.
One of the beauties of XML, is that it can often be extended without breaking applications.
Page 14
http://www.w3schools.com/xml/xml_elements.asp
XML Attributes
XML Basic
XML HOME
XML Attributes
XML Introduction
XML How to use « Previous Next Chapter »
XML Tree
XML Syntax
XML elements can have attributes in the start tag, just like HTML.
XML Elements
XML Attributes
XML Validation Attributes provide additional information about elements.
XML Validator
XML Viewing
XML CSS XML Attributes
XML XSLT
From HTML you will remember this: <img src="computer.gif">. The "src" attribute provides
XML JavaScript additional information about the <img> element.
XML HTTP Request In HTML (and in XML) attributes provide additional information about elements:
XML Parser
XML DOM
XML to HTML <img src="computer.gif">
XML Application <a href="demo.asp">
XML Advanced Attributes often provide information that is not a part of the data. In the example below, the file
XML Namespaces type is irrelevant to the data, but important to the software that wants to manipulate the element:
XML CDATA
XML Encoding
XML Server
<file type="gif">computer.gif</file>
XML DOM Advanced
XML Don't
XML Technologies
XML in Real Life XML Attributes Must be Quoted
XML Editors
XML Summary Attribute values must always be enclosed in quotes, but either single or double quotes can be used.
For a person's sex, the person tag can be written like this:
XML Examples
XML Examples <person sex="female">
XML Quiz
XML Exam
or like this:
<person sex='female'>
If the attribute value itself contains double quotes you can use single quotes, like in this example:
<person sex="female">
<firstname>Anna</firstname>
<lastname>Smith</lastname>
</person>
<person>
<sex>female</sex>
<firstname>Anna</firstname>
<lastname>Smith</lastname>
</person>
Page 15
http://www.w3schools.com/xml/xml_attributes.asp
XML Attributes
In the first example sex is an attribute. In the last, sex is an element. Both examples provide the
same information.
There are no rules about when to use attributes and when to use elements. Attributes are handy in
HTML. In XML my advice is to avoid them. Use elements instead.
My Favorite Way
The following three XML documents contain exactly the same information:
<note date="10/01/2008">
<to>Tove</to>
<from>Jani</from>
<heading>Reminder</heading>
<body>Don't forget me this weekend!</body>
</note>
<note>
<date>10/01/2008</date>
<to>Tove</to>
<from>Jani</from>
<heading>Reminder</heading>
<body>Don't forget me this weekend!</body>
</note>
<note>
<date>
<day>10</day>
<month>01</month>
<year>2008</year>
</date>
<to>Tove</to>
<from>Jani</from>
<heading>Reminder</heading>
<body>Don't forget me this weekend!</body>
</note>
Attributes are difficult to read and maintain. Use elements for data. Use attributes for information
that is not relevant to the data.
<messages>
<note id="501">
<to>Tove</to>
<from>Jani</from>
<heading>Reminder</heading>
<body>Don't forget me this weekend!</body>
</note>
<note id="502">
<to>Jani</to>
<from>Tove</from>
Page 16
http://www.w3schools.com/xml/xml_attributes.asp
XML Attributes
<heading>Re: Reminder</heading>
<body>I will not</body>
</note>
</messages>
The ID above is just an identifier, to identify the different notes. It is not a part of the note itself.
What I'm trying to say here is that metadata (data about data) should be stored as attributes, and
that data itself should be stored as elements.
Page 17
http://www.w3schools.com/xml/xml_attributes.asp
DTD Tutorial
DTD Tutorial
DTD HOME
DTD Tutorial
DTD Introduction
DTD Building Blocks
DTD Elements
DTD Attributes The purpose of a DTD (Document Type Definition) is to define
DTD Elements vs Attr
DTD Entities
the legal building blocks of an XML document.
DTD Validation
DTD Examples A DTD defines the document structure with a list of legal
DTD Summary elements and attributes.
]>
Page 18
http://www.w3schools.com/dtd/default.asp
Introduction to DTD
DTD Tutorial
DTD HOME
Introduction to DTD
DTD Introduction
DTD Building Blocks « Previous Next Chapter »
DTD Elements
DTD Attributes
A Document Type Definition (DTD) defines the legal building blocks of an XML
DTD Elements vs Attr
DTD Entities document. It defines the document structure with a list of legal elements and
DTD Validation attributes.
DTD Examples
DTD Summary A DTD can be declared inline inside an XML document, or as an external reference.
<?xml version="1.0"?>
<!DOCTYPE note [
<!ELEMENT note (to,from,heading,body)>
<!ELEMENT to (#PCDATA)>
<!ELEMENT from (#PCDATA)>
<!ELEMENT heading (#PCDATA)>
<!ELEMENT body (#PCDATA)>
]>
<note>
<to>Tove</to>
<from>Jani</from>
<heading>Reminder</heading>
<body>Don't forget me this weekend</body>
</note>
Open the XML file above in your browser (select "view source" or "view page source" to view the
DTD)
• !DOCTYPE note defines that the root element of this document is note
• !ELEMENT note defines that the note element contains four elements:
"to,from,heading,body"
• !ELEMENT to defines the to element to be of type "#PCDATA"
• !ELEMENT from defines the from element to be of type "#PCDATA"
• !ELEMENT heading defines the heading element to be of type "#PCDATA"
• !ELEMENT body defines the body element to be of type "#PCDATA"
This is the same XML document as above, but with an external DTD (Open it, and select view
source):
<?xml version="1.0"?>
<!DOCTYPE note SYSTEM "note.dtd">
<note>
<to>Tove</to>
<from>Jani</from>
<heading>Reminder</heading>
<body>Don't forget me this weekend!</body>
</note>
Page 19
http://www.w3schools.com/dtd/dtd_intro.asp
Introduction to DTD
With a DTD, independent groups of people can agree to use a standard DTD for interchanging data.
Your application can use a standard DTD to verify that the data you receive from the outside world
is valid.
Page 20
http://www.w3schools.com/dtd/dtd_intro.asp
DTD Building Blocks
DTD Tutorial
DTD HOME
DTD - XML Building Blocks
DTD Introduction
DTD Building Blocks
DTD Elements
DTD Attributes
The main building blocks of both XML and HTML documents are elements.
DTD Elements vs Attr
DTD Entities
DTD Validation
DTD Examples The Building Blocks of XML Documents
DTD Summary
Seen from a DTD point of view, all XML documents (and HTML documents) are made up by the
following building blocks:
• Elements
• Attributes
• Entities
• PCDATA
• CDATA
Elements
Elements are the main building blocks of both XML and HTML documents.
Examples of HTML elements are "body" and "table". Examples of XML elements could be "note" and
"message". Elements can contain text, other elements, or be empty. Examples of empty HTML
elements are "hr", "br" and "img".
Examples:
<body>some text</body>
<message>some text</message>
Attributes
Attributes provide extra information about elements.
Attributes are always placed inside the opening tag of an element. Attributes always come in
name/value pairs. The following "img" element has additional information about a source file:
The name of the element is "img". The name of the attribute is "src". The value of the attribute is
"computer.gif". Since the element itself is empty it is closed by a " /".
Entities
Some characters have a special meaning in XML, like the less than sign (<) that defines the start of
an XML tag.
Most of you know the HTML entity: " ". This "no-breaking-space" entity is used in HTML to
insert an extra space in a document. Entities are expanded when a document is parsed by an XML
parser.
Page 21
http://www.w3schools.com/dtd/dtd_building.asp
DTD Building Blocks
PCDATA
PCDATA means parsed character data.
Think of character data as the text found between the start tag and the end tag of an XML element.
PCDATA is text that WILL be parsed by a parser. The text will be examined by the parser
for entities and markup.
Tags inside the text will be treated as markup and entities will be expanded.
However, parsed character data should not contain any &, <, or > characters; these need to be
represented by the & < and > entities, respectively.
CDATA
CDATA means character data.
CDATA is text that will NOT be parsed by a parser. Tags inside the text will NOT be treated as
markup and entities will not be expanded.
Page 22
http://www.w3schools.com/dtd/dtd_building.asp
DTD Elements
DTD Tutorial
DTD HOME
DTD - Elements
DTD Introduction
DTD Building Blocks « Previous Next Chapter »
DTD Elements
DTD Attributes
In a DTD, elements are declared with an ELEMENT declaration.
DTD Elements vs Attr
DTD Entities
DTD Validation
DTD Examples Declaring Elements
DTD Summary
In a DTD, XML elements are declared with an element declaration with the following syntax:
Empty Elements
Empty elements are declared with the category keyword EMPTY:
Example:
<!ELEMENT br EMPTY>
XML example:
<br />
Example:
Example:
Example:
Page 23
http://www.w3schools.com/dtd/dtd_elements.asp
DTD Elements
When children are declared in a sequence separated by commas, the children must appear in the
same sequence in the document. In a full declaration, the children must also be declared, and the
children can also have children. The full declaration of the "note" element is:
Example:
The example above declares that the child element "message" must occur once, and only once
inside the "note" element.
Example:
The + sign in the example above declares that the child element "message" must occur one or more
times inside the "note" element.
Example:
The * sign in the example above declares that the child element "message" can occur zero or more
times inside the "note" element.
Example:
The ? sign in the example above declares that the child element "message" can occur zero or one
time inside the "note" element.
The example above declares that the "note" element must contain a "to" element, a "from"
element, a "header" element, and either a "message" or a "body" element.
Page 24
http://www.w3schools.com/dtd/dtd_elements.asp
DTD Elements
The example above declares that the "note" element can contain zero or more occurrences of
parsed character data, "to", "from", "header", or "message" elements.
Page 25
http://www.w3schools.com/dtd/dtd_elements.asp
DTD Attributes
DTD Tutorial
DTD HOME
DTD - Attributes
DTD Introduction
DTD Building Blocks
DTD Elements
DTD Attributes
In a DTD, attributes are declared with an ATTLIST declaration.
DTD Elements vs Attr
DTD Entities
DTD Validation
DTD Examples Declaring Attributes
DTD Summary
An attribute declaration has the following syntax:
DTD example:
XML example:
Type Description
CDATA The value is character data
(en1|en2|..) The value must be one from an enumerated list
ID The value is a unique id
IDREF The value is the id of another element
IDREFS The value is a list of other ids
NMTOKEN The value is a valid XML name
NMTOKENS The value is a list of valid XML names
ENTITY The value is an entity
ENTITIES The value is a list of entities
NOTATION The value is a name of a notation
xml: The value is a predefined xml value
Value Explanation
value The default value of the attribute
#REQUIRED The attribute is required
#IMPLIED The attribute is not required
#FIXED value The attribute value is fixed
Valid XML:
<square width="100" />
In the example above, the "square" element is defined to be an empty element with a "width"
attribute of type CDATA. If no width is specified, it has a default value of 0.
Page 26
http://www.w3schools.com/dtd/dtd_attributes.asp
DTD Attributes
#REQUIRED
Syntax
Example
DTD:
<!ATTLIST person number CDATA #REQUIRED>
Valid XML:
<person number="5677" />
Invalid XML:
<person />
Use the #REQUIRED keyword if you don't have an option for a default value, but still want to force
the attribute to be present.
#IMPLIED
Syntax
Example
DTD:
<!ATTLIST contact fax CDATA #IMPLIED>
Valid XML:
<contact fax="555-667788" />
Valid XML:
<contact />
Use the #IMPLIED keyword if you don't want to force the author to include an attribute, and you
don't have an option for a default value.
#FIXED
Syntax
Example
DTD:
<!ATTLIST sender company CDATA #FIXED "Microsoft">
Valid XML:
<sender company="Microsoft" />
Invalid XML:
<sender company="W3Schools" />
Use the #FIXED keyword when you want an attribute to have a fixed value without allowing the
author to change it. If an author includes another value, the XML parser will return an error.
Page 27
http://www.w3schools.com/dtd/dtd_attributes.asp
DTD Attributes
Example
DTD:
<!ATTLIST payment type (check|cash) "cash">
XML example:
<payment type="check" />
or
<payment type="cash" />
Use enumerated attribute values when you want the attribute value to be one of a fixed set of legal
values.
Page 28
http://www.w3schools.com/dtd/dtd_attributes.asp
XML Elements vs. Attributes
DTD Tutorial
DTD HOME
XML Elements vs. Attributes
DTD Introduction
DTD Building Blocks « Previous Next Chapter »
DTD Elements
DTD Attributes
In XML, there are no rules about when to use attributes, and when to use child
DTD Elements vs Attr
DTD Entities elements.
DTD Validation
DTD Examples
DTD Summary Use of Elements vs. Attributes
Data can be stored in child elements or in attributes.
<person sex="female">
<firstname>Anna</firstname>
<lastname>Smith</lastname>
</person>
<person>
<sex>female</sex>
<firstname>Anna</firstname>
<lastname>Smith</lastname>
</person>
In the first example sex is an attribute. In the last, sex is a child element. Both examples provide
the same information.
There are no rules about when to use attributes, and when to use child elements. My experience is
that attributes are handy in HTML, but in XML you should try to avoid them. Use child elements if
the information feels like data.
My Favorite Way
I like to store data in child elements.
The following three XML documents contain exactly the same information:
<note date="12/11/2002">
<to>Tove</to>
<from>Jani</from>
<heading>Reminder</heading>
<body>Don't forget me this weekend!</body>
</note>
<note>
<date>12/11/2002</date>
<to>Tove</to>
<from>Jani</from>
<heading>Reminder</heading>
<body>Don't forget me this weekend!</body>
</note>
<note>
<date>
<day>12</day>
<month>11</month>
<year>2002</year>
</date>
<to>Tove</to>
Page 29
http://www.w3schools.com/dtd/dtd_el_vs_attr.asp
XML Elements vs. Attributes
<from>Jani</from>
<heading>Reminder</heading>
<body>Don't forget me this weekend!</body>
</note>
If you use attributes as containers for data, you end up with documents that are difficult to read
and maintain. Try to use elements to describe data. Use attributes only to provide information that
is not relevant to the data.
Don't end up like this (this is not how XML should be used):
Sometimes I assign ID references to elements. These ID references can be used to access XML
elements in much the same way as the NAME or ID attributes in HTML. This example demonstrates
this:
<messages>
<note id="p501">
<to>Tove</to>
<from>Jani</from>
<heading>Reminder</heading>
<body>Don't forget me this weekend!</body>
</note>
<note id="p502">
<to>Jani</to>
<from>Tove</from>
<heading>Re: Reminder</heading>
<body>I will not!</body>
</note>
</messages>
The ID in these examples is just a counter, or a unique identifier, to identify the different notes in
the XML file, and not a part of the note data.
What I am trying to say here is that metadata (data about data) should be stored as attributes, and
that data itself should be stored as elements.
Page 30
http://www.w3schools.com/dtd/dtd_el_vs_attr.asp
DTD Entities
DTD Tutorial
DTD HOME
DTD - Entities
DTD Introduction
DTD Building Blocks « Previous Next Chapter »
DTD Elements
DTD Attributes
Entities are variables used to define shortcuts to standard text or special
DTD Elements vs Attr
DTD Entities characters.
DTD Validation
DTD Examples • Entity references are references to entities
DTD Summary
• Entities can be declared internal or external
Example
DTD Example:
XML example:
<author>&writer;©right;</author>
Note: An entity has three parts: an ampersand (&), an entity name, and a semicolon (;).
Example
DTD Example:
XML example:
<author>&writer;©right;</author>
Page 31
http://www.w3schools.com/dtd/dtd_entities.asp
DTD Examples
DTD Tutorial
DTD HOME
DTD - Examples from the internet
DTD Introduction
DTD Building Blocks « Previous Next Chapter »
DTD Elements
DTD Attributes
DTD Elements vs Attr TV Schedule DTD
DTD Entities
DTD Validation By David Moisan. Copied from http://www.davidmoisan.org/
DTD Examples
DTD Summary <!DOCTYPE TVSCHEDULE [
<!DOCTYPE NEWSPAPER [
]>
<!DOCTYPE CATALOG [
Page 32
http://www.w3schools.com/dtd/dtd_examples.asp
DTD Examples
<!ELEMENT PRODUCT
(SPECIFICATIONS+,OPTIONS?,PRICE+,NOTES?)>
<!ATTLIST PRODUCT
NAME CDATA #IMPLIED
CATEGORY (HandTool|Table|Shop-Professional) "HandTool"
PARTNUM CDATA #IMPLIED
PLANT (Pittsburgh|Milwaukee|Chicago) "Chicago"
INVENTORY (InStock|Backordered|Discontinued) "InStock">
]>
Page 33
http://www.w3schools.com/dtd/dtd_examples.asp
DTD Summary
DTD Tutorial
DTD HOME
You Have Learned DTD, Now What?
DTD Introduction
DTD Building Blocks « Previous Next Chapter »
DTD Elements
DTD Attributes
DTD Elements vs Attr DTD Summary
DTD Entities
DTD Validation This tutorial has taught you how to describe the structure of an XML document.
DTD Examples
You have learned how to use a DTD to define the legal elements of an XML document, and how a
DTD Summary
DTD can be declared inside your XML document, or as an external reference.
You have learned how to declare the legal elements, attributes, entities, and CDATA sections for
XML documents.
You have also seen how to validate an XML document against a DTD.
XML Schema is used to define the legal elements of an XML document, just like a DTD. We think
that very soon XML Schemas will be used in most Web applications as a replacement for DTDs.
Unlike DTD, XML Schemas has support for data types and namespaces.
If you want to learn more about XML Schema, please visit our XML Schema tutorial.
Page 34
http://www.w3schools.com/dtd/dtd_summary.asp