You are viewing a plain text version of this content. The canonical link for it is here.
Posted to j-dev@xerces.apache.org by bu...@apache.org on 2001/09/15 04:56:09 UTC

DO NOT REPLY [Bug 3621] New: - cannot refer to model group that contains xsd:all model

DO NOT REPLY TO THIS EMAIL, BUT PLEASE POST YOUR BUG 
RELATED COMMENTS THROUGH THE WEB INTERFACE AVAILABLE AT
<http://nagoya.apache.org/bugzilla/show_bug.cgi?id=3621>.
ANY REPLY MADE TO THIS MESSAGE WILL NOT BE COLLECTED AND 
INSERTED IN THE BUG DATABASE.

http://nagoya.apache.org/bugzilla/show_bug.cgi?id=3621

           Summary: cannot refer to model group that contains xsd:all model
           Product: Xerces2-J
           Version: 2.0.0 [beta]
          Platform: PC
        OS/Version: Windows NT/2K
            Status: NEW
          Severity: Critical
          Priority: Other
         Component: Other
        AssignedTo: xerces-j-dev@xml.apache.org
        ReportedBy: karthik@infravio.com


cannot refer to a model group that contains xsd:all as a part of its content.

For example the following would fail to parse.
<xsd:schema xmlns:xsd ="http://www.w3.org/2001/XMLSchema" targetNamespace 
="www.me.com">
<xsd:group name="grp">
 <xsd:all>
   <xsd:element name="a" type="xsd:string/>
   <xsd:element name="b" type="xsd:string/>
 </xsd:all>
<xsd:group>

<xsd:complexType>
  <xsd:sequence>
    <xsd:group ref="grp"/>
  </xsd:sequence>
</xsd:complexType>
</xsd:schema>

---------------------------------------------------------------------
To unsubscribe, e-mail: xerces-j-dev-unsubscribe@xml.apache.org
For additional commands, e-mail: xerces-j-dev-help@xml.apache.org