RE: Last Call: draft-levin-mmusic-xml-media-control (XML Schema for Media Control) to Informational RFC

"Hollenbeck, Scott" <shollenbeck@verisign.com> Wed, 07 November 2007 17:18 UTC

Return-path: <ietf-bounces@ietf.org>
Received: from [127.0.0.1] (helo=stiedprmman1.va.neustar.com) by megatron.ietf.org with esmtp (Exim 4.43) id 1IpoXg-00065j-BF; Wed, 07 Nov 2007 12:18:16 -0500
Received: from [10.91.34.44] (helo=ietf-mx.ietf.org) by megatron.ietf.org with esmtp (Exim 4.43) id 1IpoXf-00065F-3V for ietf@ietf.org; Wed, 07 Nov 2007 12:18:15 -0500
Received: from osprey.verisign.com ([216.168.239.75]) by ietf-mx.ietf.org with esmtp (Exim 4.43) id 1IpoXa-0000Zr-Dc for ietf@ietf.org; Wed, 07 Nov 2007 12:18:15 -0500
Received: from dul1wnexcn03.vcorp.ad.vrsn.com (dul1wnexcn03.vcorp.ad.vrsn.com [10.170.12.113]) by osprey.verisign.com (8.13.6/8.13.4) with ESMTP id lA7HBm08030526 for <ietf@ietf.org>; Wed, 7 Nov 2007 12:11:48 -0500
Received: from dul1wnexmb01.vcorp.ad.vrsn.com ([10.170.12.134]) by dul1wnexcn03.vcorp.ad.vrsn.com with Microsoft SMTPSVC(6.0.3790.3959); Wed, 7 Nov 2007 17:17:31 +0000
X-MimeOLE: Produced By Microsoft Exchange V6.5
Content-class: urn:content-classes:message
MIME-Version: 1.0
Content-Type: text/plain; charset="us-ascii"
Content-Transfer-Encoding: quoted-printable
Date: Wed, 07 Nov 2007 12:18:44 -0500
Message-ID: <046F43A8D79C794FA4733814869CDF07020FD157@dul1wnexmb01.vcorp.ad.vrsn.com>
In-Reply-To: <E1IpnSl-0000OJ-Um@stiedprstage1.ietf.org>
X-MS-Has-Attach:
X-MS-TNEF-Correlator:
Thread-Topic: Last Call: draft-levin-mmusic-xml-media-control (XML Schema for Media Control) to Informational RFC
Thread-Index: AcghWJzvy81d4SKrQjG3wcGyAbe0lwACB5Ig
From: "Hollenbeck, Scott" <shollenbeck@verisign.com>
To: ietf@ietf.org
X-OriginalArrivalTime: 07 Nov 2007 17:17:31.0704 (UTC) FILETIME=[14A6B380:01C82162]
X-Spam-Score: -4.0 (----)
X-Scan-Signature: e8a67952aa972b528dd04570d58ad8fe
Subject: RE: Last Call: draft-levin-mmusic-xml-media-control (XML Schema for Media Control) to Informational RFC
X-BeenThere: ietf@ietf.org
X-Mailman-Version: 2.1.5
Precedence: list
List-Id: IETF-Discussion <ietf.ietf.org>
List-Unsubscribe: <https://www1.ietf.org/mailman/listinfo/ietf>, <mailto:ietf-request@ietf.org?subject=unsubscribe>
List-Post: <mailto:ietf@ietf.org>
List-Help: <mailto:ietf-request@ietf.org?subject=help>
List-Subscribe: <https://www1.ietf.org/mailman/listinfo/ietf>, <mailto:ietf-request@ietf.org?subject=subscribe>
Errors-To: ietf-bounces@ietf.org

> -----Original Message-----
> From: The IESG [mailto:iesg-secretary@ietf.org] 
> Sent: Wednesday, November 07, 2007 11:09 AM
> To: IETF-Announce
> Subject: Last Call: draft-levin-mmusic-xml-media-control (XML 
> Schema for Media Control) to Informational RFC 
> 
> The IESG has received a request from an individual submitter 
> to consider the following document:
> 
> - 'XML Schema for Media Control '
>    <draft-levin-mmusic-xml-media-control-12.txt> as an 
> Informational RFC

The XML Schema found in section 5 is mildly broken.  It mixes use of two
prefixes, "xs" and "xsd".  One or the other needs to be used
consistently for the Schema to be valid.  Here's a fix using "xs":

<?xml version="1.0" encoding="utf-8" ?>

<xs:schema id="TightMediaControl"
 elementFormDefault="qualified"
 xmlns:xs="http://www.w3.org/2001/XMLSchema">

 <xs:element name="media_control">
   <xs:complexType>
     <xs:sequence>
       <xs:element name="vc_primitive"
         type="vc_primitive"
         minOccurs="0"
         maxOccurs="unbounded" />
       <xs:element name="general_error"
         type="xs:string"
         minOccurs="0"
         maxOccurs="unbounded" />
     </xs:sequence>
   </xs:complexType>
 </xs:element>

 <!-- Video control primitive.  -->

 <xs:complexType name="vc_primitive">
   <xs:sequence>
     <xs:element name="to_encoder" type="to_encoder" />
     <xs:element name="stream_id"
       type="xs:string"
       minOccurs="0"
       maxOccurs="unbounded" />
   </xs:sequence>
 </xs:complexType>

 <!-- Encoder Command:
      Picture Fast Update
 -->

 <xs:complexType name="to_encoder">
   <xs:choice>
     <xs:element name="picture_fast_update"/>
   </xs:choice>
 </xs:complexType>
</xs:schema>

-Scott-

_______________________________________________
Ietf mailing list
Ietf@ietf.org
https://www1.ietf.org/mailman/listinfo/ietf