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

  1. <?xml version="1.0" encoding="UTF-8" ?>
  2. <xs:schema targetNamespace="http://www.microsoft.com/networking/LAN/profile/v1"
  3.     xmlns="http://www.microsoft.com/networking/LAN/profile/v1" 
  4.     xmlns:xs="http://www.w3.org/2001/XMLSchema"
  5.     elementFormDefault="qualified" >
  6.  
  7.   <!-- element definitions -->
  8.   <xs:element name="LANProfile">
  9.     <xs:complexType>
  10.       <xs:sequence>
  11.         <!-- LAN network settings -->
  12.         <xs:element name="MSM">
  13.           <xs:complexType>
  14.             <xs:sequence>
  15.               <xs:element name="security">
  16.                 <xs:complexType>
  17.                   <xs:sequence>
  18.                     <!-- 
  19.                          Flag to indicate whether 802.1X shall be used for security 
  20.                     -->
  21.                     <xs:element name="OneXEnforced" type="xs:boolean" />
  22.                     <!--
  23.                         Flag to indicate whether 802.1X shall be tried before
  24.                         falling back to no security. 
  25.                     -->
  26.                     <xs:element name="OneXEnabled" type="xs:boolean" />        
  27.                     
  28.                     <!--
  29.                         Extension point for other namespaces, including the OneX
  30.                         namespace currently used for optional IEEE802.1X configuration.
  31.                         The OneX configuration parameters must be present if the 
  32.                         <OneXEnforced> flag is set to "true" or
  33.                         the <OneXEnabled> flag is set to "true" 
  34.                     -->
  35.                     <xs:any namespace="##other" processContents="lax" minOccurs="0" maxOccurs="unbounded" />
  36.                   </xs:sequence>
  37.                 </xs:complexType>
  38.               </xs:element>
  39.  
  40.               <!-- extension point for other namespaces -->
  41.               <xs:any namespace="##other" processContents="lax" minOccurs="0" maxOccurs="unbounded" />
  42.             </xs:sequence>
  43.           </xs:complexType>
  44.         </xs:element>
  45.  
  46.         <!-- extension point for other namespaces -->
  47.         <xs:any namespace="##other" processContents="lax" minOccurs="0" maxOccurs="unbounded" />
  48.       </xs:sequence>
  49.     </xs:complexType>
  50.   </xs:element>
  51. </xs:schema>
  52.  
  53.