XML Tutorial/Namespace/elementFormDefault — различия между версиями

Материал из Web эксперт
Перейти к: навигация, поиск
 
м (1 версия)
 
(нет различий)

Текущая версия на 11:27, 26 мая 2010

Adding All Locally Declared Elements

   <source lang="xml">

To add all the locally declared elements to the target namespace: In the xsd:schema element, type elementFormDefault="qualified". To add all the locally declared attributes to the target namespace: In the xsd:schema element, type attributeFormDefault="qualified"

<?xml version="1.0" ?> <xsd:schema xmlns:xsd="http://www.w3.org/2000/10/XMLSchema"

 targetNamespace="http://www.wbex.ru"
 elementFormDefault="qualified">
 <xsd:element name="employees">
   <xsd:complexType>
     <xsd:sequence>
       <xsd:element name="animal" type="animalType"
         maxOccurs="unbounded" />
     </xsd:sequence>
   </xsd:complexType>
 </xsd:element>
 <xsd:complexType name="animalType">
   <xsd:sequence>
     <xsd:element name="name" type="nameType" minOccurs="2" />
     <xsd:element name="projects" type="projectsType" />
     <xsd:element name="weight" type="xsd:string" minOccurs="0"
       maxOccurs="1" />
   </xsd:sequence>
 </xsd:complexType>

</xsd:schema></source>


Adding Particular Locally Declared Elements

   <source lang="xml">

<?xml version="1.0" ?> <xsd:schema xmlns:xsd="http://www.w3.org/2001/10/XMLSchema"

 targetNamespace="http://www.wbex.ru"
 elementFormDefault="qualified">
 <xsd:element name="employees">
   <xsd:complexType>
     <xsd:sequence>
       <xsd:element name="animal" type="animalType"
         maxOccurs="unbounded" />
     </xsd:sequence>
   </xsd:complexType>
 </xsd:element>
 <xsd:complexType name="animalType">
   <xsd:sequence>
     <xsd:element name="name" type="nameType" minOccurs="2" />
     <xsd:element name="projects" type="projectsType"
       form="unqualified" />
     <xsd:element name="weight" type="xsd:string" minOccurs="0"
       maxOccurs="1" form="unqualified" />
   </xsd:sequence>
 </xsd:complexType>

</xsd:schema></source>