XML 2
XML 2
XML
1
What is XML?
2
XML Does not DO Anything
Maybe it is a little hard to understand, but XML does not DO
anything. XML was created to structure, store, and transport
information.
The following example is a note to Sam from Kandy, stored as
XML:
<note>
<to>Nimal</to>
<from>Kamal</from>
<heading> Note</heading>
<body>Coming home this week</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.
3
XML is Just Plain Text
4
With XML You Invent Your Own Tags
The tags in the example above (like <to> and <from>) are
not defined in any XML standard. These tags are "invented"
by the author of the XML document.
That is because the XML language has no predefined tags.
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.
5
XML is Not a Replacement for HTML
6
How Can XML be Used?
7
XML Separates Data from HTML
8
XML Simplifies Data Sharing
9
XML Simplifies Data Transport
10
XML Simplifies Platform Changes
11
XML Makes Your Data More Available
12
XML is Used to Create New Internet Languages
13
XML Tree
XML documents form a tree structure that starts at "the root" and
branches to "the leaves".
An Example XML Document
XML documents use a self-describing and simple syntax:
The first line is the XML declaration.
It defines the XML version (1.0) and the encoding used (ISO-
8859-1 = Latin-1/West European character set).
<?xml version="1.0" encoding="ISO-8859-1"?>
<note>
<to>Nimal</to>
<from>Kamal</from>
<heading>Note</heading>
<body>Coming home this week</body>
</note>
14
XML Tree …
The next line describes the root element of the document (like
saying: "this document is a note"):
<note>
The next 4 lines describe 4 child elements of the root (to, from,
heading, and body):
<to>Nimal</to>
<from>Kamal</from>
<heading>Note</heading>
<body>Coming home this week</body>
15
XML Tree …
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 Sam from Kandy.
Don't you agree that XML is pretty self-descriptive?
16
XML Documents Form a Tree Structure
17
XML Documents Form a Tree Structure
XML documents must contain a root element. This element is
"the parent" of all other elements.
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.
All elements can have sub elements (child elements):
<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).
18
Example:
19
The image above represents one book in the XML below:
<library>
The root element in the example is
<book category=“Marketing">
<title lang="en">Principles of <bookstore>.
Marketing</title> All <book> elements in the document
<author>Philip Kotler </author> are contained within <bookstore>.
<year>2010</year> The <book> element has 4 children:
<ISBN>978-81-317-3101-7</ISBN>
<title>,< author>, <year>, <price>.
</book>
<book category=“Management">
<title lang="en">Enterpreneurship</title>
<author>Donald F. Kuratko</author>
<year>2009</year>
<ISBN>978-81-315-0561-8</ISBN>
</book>
<book category=" Management ">
<title lang="en"> Management </title>
<author>James A.F. stoner</author>
<year>2009</year>
<ISBN>978-81-317-0704-3</ISBN>
</book>
20 </library>
XML Syntax Rules
The syntax rules of XML are very simple and logical. The rules are
easy to learn, and easy to use.
All XML Elements Must Have a Closing Tag
In XML, it is illegal to omit the closing tag. All elements must have a closing tag:
<Message>This is incorrect</message>
<message>This is correct</message>
"Opening and closing tags" are often referred to as "Start and end tags". Use
whatever you prefer. It is exactly the same thing.
21
XML Syntax Rules …
XML Elements Must be Properly Nested
In HTML, you might see improperly nested elements:
<b><u>This text is bold and italic</b></u>
22
XML Syntax Rules …
XML documents must contain one element that is the parent of all
other elements. This element is called the root element.
<root>
<child>
<subchild>.....</subchild>
</child>
</root>
23
XML Syntax Rules …
XML Attribute Values Must be Quoted
<note date=12/12/2013>
<to>Nimal</to>
<from>Kamal</from>
</note>
<note date="12/12/2013">
<to>Nimal</to>
<from>Kamal</from>
</note>
•The error in the first document is that the date attribute in the note
element is not quoted.
24
XML Syntax Rules …
Comments in XML
The syntax for writing comments in XML is similar to that of HTML.
<!-- This is a comment -->
White-space is Preserved in XML
HTML truncates multiple white-space characters to one single white-
space:
25
What is an XML Element?
An XML element is everything from (including) the element's start tag to
(including) the element's end tag.
An element can contain other elements, simple text or a mixture of both.
Elements can also have attributes.
<library>
<book category="Marketing"> In the example above, <bookstore>
<title>Principles of and <book> have element contents,
Marketing</title>
<author>Philip Kotler</author>
because they contain other elements.
<year>2010</year> <author> has text content because it
<ISBN>978-81-317-3101-7</ISBN> contains text.
</book>
<book category="WEB"> In the example above only <book>
<title>Learning XML</title> has an attribute (category=" WEB ").
<author>Erik T. Ray</author>
<year>2003</year>
<price>39.95</price>
26
</book>
</bookstore>
XML Naming Rules
XML elements must follow these naming rules:
Names can contain letters, numbers, and other characters
Names cannot start with a number or punctuation character
Names cannot start with the letters xml (or XML, or Xml, etc)
Names cannot contain spaces
Any name can be used, no words are reserved.
27
Best Naming Practices
Make names descriptive. Names with an underscore separator are nice: <first_name>,
<last_name>.
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.
28
XML Elements are Extensible
XML elements can be extended to carry more information.
Look at the following XML example:
<note>
<to>Nimal</to>
<from>Kamal</from>
<body> Coming home this week </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: Nimal
From: Kamal
Coming home this week
29
XML Elements are Extensible …
Imagine that the author of the XML document added some extra
information to it:
<note>
<date>2013-11-10</date>
<to>Nimal</to>
<from>Kamal</from>
<heading>Notice</heading>
< Coming home this week </body>
</note>
30
XML Attributes
XML elements can have attributes in the start tag, just like HTML.
Attributes provide additional information about elements.
Attributes often provide information that is not a part of the data.
In the example below, the file type is irrelevant to the data, but important
to the software that wants to manipulate the element:
<file type="gif">computer.gif</file>
31
XML Attributes Must be Quoted
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:
<person sex="female">
or like this:
<person sex='female'>
If the attribute value itself contains double quotes you can use single quotes,
like in this example:
<gangster name='George "Shotgun" Ziegler'>
32
XML Elements vs. Attributes
Take a look at these examples:
<person sex="female">
<firstname>Namal</firstname>
<lastname>Perera</lastname>
</person>
<person>
<sex>female</sex>
<firstname>Chamari</firstname>
<lastname>Weerasena</lastname>
</person>
33
Avoid XML Attributes?
Some of the problems with using attributes are:
attributes cannot contain multiple values (elements can)
attributes cannot contain tree structures (elements can)
attributes are not easily expandable (for future changes)
Attributes are difficult to read and maintain. Use elements for data.
Use attributes for information that is not relevant to the data.
34
XML Attributes for Metadata
Sometimes ID references are assigned to elements. These IDs can be used
to identify XML elements in much the same way as the ID attribute in
HTML. This example demonstrates this:
<messages> The ID above is just an
<note id="501"> identifier, to identify the
<to>Nimal</to>
<from>Kamal</from> different notes. It is not a
<heading>Reminder</heading> part of the note itself.
<body> Coming home this week </body>
</note> What I'm trying to say here
<note id="502"> is that metadata (data about
<to>Kamal</to> data) should be stored as
<from>Nimal</from>
<heading>Re: Reminder</heading> attributes, and that data itself
<body>I will not</body> should be stored as elements.
</note>
</messages>
35
Well Formed XML Documents
A "Well Formed" XML document has correct XML syntax.
The syntax rules were described in the previous chapters:
XML documents must have a root element
XML elements must have a closing tag
XML tags are case sensitive
XML elements must be properly nested
XML attribute values must be quoted
36
Valid XML Documents
A "Valid" XML document is a "Well Formed" XML document, which
also conforms to the rules of a Document Type Definition (DTD):
<?xml version="1.0" encoding="ISO-8859-1"?>
<!DOCTYPE note SYSTEM "Note.dtd">
<note>
<to>Nimal</to>
<from>Kamal</from>
<heading>Reminder</heading>
<body> Coming home this week </body>
</note>
37
XML DTD
The purpose of a DTD is to define the structure of an XML document. It
defines the structure with a list of legal elements:
<!DOCTYPE note
[
<!ELEMENT note (to,from,heading,body)>
<!ELEMENT to (#PCDATA)>
<!ELEMENT from (#PCDATA)>
<!ELEMENT heading (#PCDATA)>
<!ELEMENT body (#PCDATA)>
]>
38