Defining the XML Schema Namespace as the Default : targetNamespace « Namespace « XML Tutorial

Home
XML Tutorial
1.Introduction
2.Namespace
3.XML Schema
4.XPath
5.XSLT stylesheet
XML Tutorial » Namespace » targetNamespace 
2.2.4.Defining the XML Schema Namespace as the Default
<?xml version="1.0"?>
<schema xmlns="http://www.w3.org/2001/XMLSchema"
  targetNamespace="http://www.java2s.com/namespaces/pub"
  xmlns:pub="http://www.java2s.com/namespaces/pub"
  elementFormDefault="qualified">
  <include schemaLocation="book.xsd"/>
  <element name="products">
   <complexType>
    <sequence>
     <element name="publications">
      <complexType>
       <sequence>
        <element ref="pub:book" maxOccurs="unbounded"/>
       </sequence>
      </complexType>
     </element>
    </sequence>
   </complexType>
  </element>
</schema>
2.2.targetNamespace
2.2.1.Specify a target namespace
2.2.2.Referencing Components with Namespaces
2.2.3.Use targetNamespace as the Default Namespace
2.2.4.Defining the XML Schema Namespace as the Default
2.2.5.Document Models with a Namespace
java2s.com  | Contact Us | Privacy Policy
Copyright 2009 - 12 Demo Source and Support. All rights reserved.
All other trademarks are property of their respective owners.