February 2019
Intermediate to advanced
626 pages
15h 51m
English
XML documents can use one or more namespaces, which can be used to provide uniquely named elements within a document.
XML namespaces are declared in an attribute with a name prefixed by xmlns:, for example:
<?xml version="1.0"?>
<rootElement xmlns:item="http://namespaces/item">
<item:child>1</item:child>
</rootElement>
The XML namespace uses a URL as a unique identifier. The identifier is often used to describe an element as belonging to a schema.
Read now
Unlock full access