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

  1. <?xml version="1.0" ?>
  2. <xs:schema 
  3.       targetNamespace="http://www.microsoft.com/provisioning/EapTlsUserPropertiesV1" 
  4.       elementFormDefault="qualified" 
  5.       xmlns="http://www.microsoft.com/provisioning/EapTlsUserPropertiesV1" 
  6.       xmlns:xs="http://www.w3.org/2001/XMLSchema" 
  7.       xmlns:baseEap="http://www.microsoft.com/provisioning/BaseEapUserPropertiesV1" 
  8.       version="1.0"
  9.    >
  10.    <xs:import 
  11.          namespace="http://www.microsoft.com/provisioning/BaseEapUserPropertiesV1" 
  12.          schemaLocation="BaseEapUserPropertiesV1.xsd" 
  13.    />
  14.    <xs:element name="Username" substitutionGroup="baseEap:Identity"/>
  15.    <xs:element name="EapType" substitutionGroup="baseEap:EapType">
  16.       <xs:complexType>
  17.          <xs:complexContent>
  18.             <xs:extension base="baseEap:BaseEapTypeParameters">
  19.                <xs:sequence>
  20.                   <xs:element ref="Username" minOccurs="0" maxOccurs="1"/>
  21.                   <xs:element name="UserCert" type="xs:hexBinary"/>
  22.  
  23.                   <!-- extension point for other namespaces -->
  24.                   <xs:any processContents="lax" minOccurs="0" maxOccurs="unbounded" namespace="##other"/>
  25.                </xs:sequence>
  26.             </xs:extension>
  27.          </xs:complexContent>
  28.       </xs:complexType>
  29.    </xs:element>   
  30. </xs:schema>
  31.  
  32.