ietf
[Top] [All Lists]

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

2007-11-08 00:50:44
Scott,
Thanks for catching it. 
Roni

-----Original Message-----
From: Hollenbeck, Scott [mailto:shollenbeck(_at_)verisign(_dot_)com]
Sent: Wednesday, November 07, 2007 7:19 PM
To: ietf(_at_)ietf(_dot_)org
Subject: RE: Last Call: draft-levin-mmusic-xml-media-control (XML
Schema
forMedia Control) to Informational RFC

-----Original Message-----
From: The IESG [mailto:iesg-secretary(_at_)ietf(_dot_)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(_at_)ietf(_dot_)org
https://www1.ietf.org/mailman/listinfo/ietf

_______________________________________________
Ietf mailing list
Ietf(_at_)ietf(_dot_)org
https://www1.ietf.org/mailman/listinfo/ietf

<Prev in Thread] Current Thread [Next in Thread>