Using Prefixes : Namespace « Namespace « XML Tutorial

XML Tutorial
1. Introduction
2. Namespace
3. XML Schema
4. XPath
5. XSLT stylesheet
Java
XML
Java Tutorial
Java Source Code / Java Documentation
Java Open Source
Jar File Download
Java Articles
Java Products
Java by API
C# / C Sharp
C# / CSharp Tutorial
ASP.Net
ASP.NET Tutorial
JavaScript DHTML
JavaScript Tutorial
JavaScript Reference
HTML / CSS
HTML CSS Reference
C / ANSI-C
C Tutorial
C++
C++ Tutorial
Ruby
PHP
Python
SQL Server / T-SQL
SQL Server / T-SQL Tutorial
Oracle PL / SQL
Oracle PL/SQL Tutorial
PostgreSQL
SQL / MySQL
MySQL Tutorial
VB.Net
VB.Net Tutorial
Flash / Flex / ActionScript
VBA / Excel / Access / Word
Microsoft Office PowerPoint 2007 Tutorial
Microsoft Office Excel 2007 Tutorial
Microsoft Office Word 2007 Tutorial
XML Tutorial » Namespace » Namespace 
2. 1. 7. Using Prefixes
URIs must be used for the prefix names. 
A URI (Uniform Resource Identifieris a string of characters that identifies a resource. 
It can be URL (Uniform Resource Locatoror URN (Universal Resource Name)
The URL we're using is simply used as a name, for the namespace.
XML parser won't try to pull back any resources from that location.
XML parser uses it for naming the namespaces in the document. 

<html xmlns="http://www.w3.org/1999/xhtml">
  <head>
   <title>Book List</title>
  </head>
  <body>
   <pub:publications
   xmlns:pub="http://www.java2java.com/namespaces/pub">
    <pub:book>
     <pub:title>Mastering XHTML</pub:title>
     <pub:author>Ed Tittel</pub:author>
    </pub:book>
    <pub:book>
     <pub:title>Java Developer?Guide to E-Commerce
     with XML and JSP</pub:title>
     <pub:author>William Brogden</pub:author>
    </pub:book>
   </pub:publications>
  </body>
</html>
2. 1. Namespace
2. 1. 1. Why We Need Namespaces
2. 1. 2. How XML Namespaces Work
2. 1. 3. Default Namespaces
2. 1. 4. Declaring Namespaces on Descendants
2. 1. 5. Understanding URIs
2. 1. 6. Change URI of namespace
2. 1. 7. Using Prefixes
www.java2java.com | Contact Us
Copyright 2010 - 2030 Java Source and Support. All rights reserved.
All other trademarks are property of their respective owners.