MBAE 스키마

MBAE(모바일 광대역 계정 환경) 스키마는 모바일 네트워크 운영자 및 소매 파트너가 고객에게 가치 있는 추가 서비스를 제공하는 데 사용하는 요소를 정의합니다. 모든 요소는 네임스페이스에 http://schemas.microsoft.com/windows/2010/12/DeviceMetadata/MobileBroadbandInfo있습니다. 일부 요소는 선택 사항이므로 모든 요소가 모든 프로필에 있는 것은 아닙니다.

다음 표에서는 이 스키마의 모든 요소를 이름별로 사전순으로 정렬하여 나열합니다.

요소 Description
인터넷
참고인터넷 요소는 더 이상 사용되지 않습니다. Windows 8 및 Windows Server 2012 시작하여 통신사는 APN(액세스 지점 이름) 데이터베이스를 사용하여 인터넷 APN 정보를 제공해야 합니다.
 

모바일 네트워크에 사용할 모바일 광대역 인터넷 프로필을 정의합니다.

IssuerName

신뢰할 수 있는 인증서의 발급자 이름을 정의합니다.

MobileBroadbandInfo

모바일 네트워크에서 프로비전하는 데 필요한 모바일 광대역 정보를 정의합니다.

MobileBroadbandProfiles
참고MobileBroadbandProfiles 요소는 더 이상 사용되지 않습니다. Windows 8 및 Windows Server 2012 시작하여 통신사는 APN(액세스 지점 이름) 데이터베이스를 사용하여 인터넷 및 구매 APN 정보를 제공해야 합니다.
 

모바일 네트워크에 사용할 모바일 광대역 구매 및 인터넷 프로필을 정의합니다.

NetworkConfiguration
참고NetworkConfiguration 요소는 더 이상 사용되지 않습니다. Windows 8 및 Windows Server 2012 시작하여 통신사는 APN(액세스 지점 이름) 데이터베이스를 사용하여 구매 및 인터넷 APN 정보를 제공해야 합니다.
 

모바일 네트워크에 사용할 모바일 광대역 구매 및 인터넷 프로필에 대한 네트워크 구성을 정의합니다.

ProvisioningEngine

모바일 네트워크에서 프로비전하는 데 필요한 주체 이름 및 발급자 이름에 대한 신뢰할 수 있는 인증서 값을 정의합니다.

구매
참고Purchase 요소는 더 이상 사용되지 않습니다. Windows 8 및 Windows Server 2012 시작하여 통신사는 APN(액세스 지점 이름) 데이터베이스를 사용하여 구매 APN 정보를 제공해야 합니다.
 

모바일 네트워크에 사용할 모바일 광대역 구매 프로필을 정의합니다.

SubjectName

신뢰할 수 있는 인증서의 주체 이름을 정의합니다.

TrustedCertificate

모바일 네트워크에서 프로비전하는 데 필요한 신뢰할 수 있는 인증서의 주체 이름 및 발급자 이름을 정의합니다.

TrustedCertificates

모바일 네트워크에서 프로비전하는 데 필요한 신뢰할 수 있는 보안 인증서 목록을 정의합니다.

 

전체 MBAE(모바일 광대역 계정 환경) 스키마는 다음과 같습니다.

<?xml version="1.0" encoding ="utf-16" ?>
<xs:schema
    targetNamespace="http://schemas.microsoft.com/windows/2010/12/DeviceMetadata/MobileBroadbandInfo"
    xmlns:tns="http://schemas.microsoft.com/windows/2010/12/DeviceMetadata/MobileBroadbandInfo"
    xmlns:xs="http://www.w3.org/2001/XMLSchema" elementFormDefault="qualified" blockDefault="#all">

  <xs:element name="MobileBroadbandInfo" type="tns:MobileBroadbandInfoType" />

  <xs:complexType name="MobileBroadbandInfoType">
    <xs:sequence>
      <xs:element name="NetworkConfiguration" type="tns:NetworkConfigType" minOccurs="0" />
      <xs:element name="ProvisioningEngine" type="tns:ProvisioningEngineType" minOccurs="0" />
      <xs:any namespace="##other" processContents="lax" minOccurs="0" maxOccurs="unbounded" />
    </xs:sequence>
  </xs:complexType>

  <xs:complexType name="NetworkConfigType">
    <xs:sequence>
      <xs:element name="MobileBroadbandProfiles" type="tns:MobileBroadbandProfilesType" minOccurs="0" />
      <xs:any namespace="##other" processContents="lax" minOccurs="0" maxOccurs="unbounded" />
    </xs:sequence>
  </xs:complexType>

  <xs:complexType name="MobileBroadbandProfilesType">
    <xs:sequence>
      <xs:element name="Purchase" type="tns:FileType" minOccurs="0" />
      <xs:element name="Internet" type="tns:FileType" minOccurs="0" />
      <xs:any namespace="##other" processContents="lax" minOccurs="0" maxOccurs="unbounded" />
    </xs:sequence>
  </xs:complexType>

  <xs:simpleType name="FileType">
    <xs:restriction base="xs:string">
      <xs:whiteSpace value="preserve"/>
      <xs:pattern value="[\p{L}\p{N}\.\-_ ]+" />
      <xs:minLength value="1" />
      <xs:maxLength value="260" />
    </xs:restriction>
  </xs:simpleType>

  <xs:complexType name="ProvisioningEngineType">
    <xs:sequence>
      <xs:element name="TrustedCertificates" type="tns:TrustedCertificateListType" minOccurs="0" />
      <xs:any namespace="##other" processContents="lax" minOccurs="0" maxOccurs="unbounded" />
    </xs:sequence>
  </xs:complexType>

  <xs:complexType name="TrustedCertificateListType">
    <xs:sequence>
      <xs:element name="TrustedCertificate" type="tns:TrustedCertificateType"
                  minOccurs="0" maxOccurs="256" />
      <xs:any namespace="##other" processContents="lax" minOccurs="0" maxOccurs="unbounded" />
    </xs:sequence>
  </xs:complexType>

  <xs:complexType name="TrustedCertificateType">
    <xs:sequence>
      <xs:element name="SubjectName" type="xs:string" />
      <xs:element name="IssuerName" type="xs:string" />
      <xs:any namespace="##other" processContents="lax" minOccurs="0" maxOccurs="unbounded" />
    </xs:sequence>
  </xs:complexType>

</xs:schema>