home *** CD-ROM | disk | FTP | other *** search
/ PC World Komputer 2010 April / PCWorld0410.iso / WindowsServerTrial / server.iso / sources / install.wim / 2 / Windows / Provisioning / schemas / eapconnectionpropertiesv1.xsd < prev    next >
Extensible Markup Language  |  2006-09-18  |  1KB  |  30 lines

  1. <?xml version="1.0" ?>
  2. <xs:schema 
  3.       targetNamespace="http://www.microsoft.com/provisioning/EapConnectionPropertiesV1"
  4.       elementFormDefault="qualified" 
  5.       xmlns="http://www.microsoft.com/provisioning/EapConnectionPropertiesV1" 
  6.       xmlns:xs="http://www.w3.org/2001/XMLSchema" 
  7.       xmlns:baseEap="http://www.microsoft.com/provisioning/BaseEapConnectionPropertiesV1" 
  8.       version="1.0"
  9.    >
  10.    <xs:import 
  11.          namespace="http://www.microsoft.com/provisioning/BaseEapConnectionPropertiesV1" 
  12.          schemaLocation="BaseEapConnectionPropertiesV1.xsd" 
  13.    />
  14.    <xs:element name="Connections">
  15.       <xs:complexType>
  16.          <xs:sequence>
  17.             <xs:element name="Connection" minOccurs="0" maxOccurs="unbounded">
  18.                <xs:complexType>
  19.                   <xs:sequence>
  20.                      <xs:element name="Name" type="xs:string" />               
  21.                      <xs:element ref="baseEap:Eap" maxOccurs="unbounded" />
  22.                   </xs:sequence>
  23.                </xs:complexType>
  24.             </xs:element>
  25.          </xs:sequence>
  26.       </xs:complexType>
  27.    </xs:element>
  28. </xs:schema>
  29.  
  30.