You are viewing a plain text version of this content. The canonical link for it is here.
Posted to dev@xmlbeans.apache.org by "kombi (JIRA)" <xm...@xml.apache.org> on 2007/07/23 20:58:31 UTC

[jira] Commented: (XMLBEANS-340) "derivation-ok-restriction.5.1" failure thrown incorrectly

    [ https://issues.apache.org/jira/browse/XMLBEANS-340?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel#action_12514726 ] 

kombi commented on XMLBEANS-340:
--------------------------------

I reviewed that document, and it does not seem that my schema violates any restrictions listed. Which violation is being thrown from your reference document for:

[xmlbean] schemas/dcterms.xsd:130:3: error: derivation-ok-restriction.5.1: A complex type with a simple content model can only restrict a complex type with simple or mixed content model. 

for the schema, I listed above.  I am able to validate schema with other tools such as OxygenXML.

> "derivation-ok-restriction.5.1" failure thrown incorrectly 
> -----------------------------------------------------------
>
>                 Key: XMLBEANS-340
>                 URL: https://issues.apache.org/jira/browse/XMLBEANS-340
>             Project: XMLBeans
>          Issue Type: Bug
>    Affects Versions:  Version 2.3
>         Environment: MacOSX, Java1.5
>            Reporter: kombi
>            Assignee: Jacob Danner
>            Priority: Minor
>
> I downloaded the DublinCore xml schemas and tried to create xmlbeans of them and got several "derivation-ok-restriction.5.1" error messages:
> [xmlbean] schemas/dcterms.xsd:130:3: error: derivation-ok-restriction.5.1: A complex type with a simple content model can only restrict a complex type with simple or mixed content model.
> The problem is here is the line in question:
>   <xs:complexType name="MESH">
>    <xs:simpleContent>
>     <xs:restriction base="dc:SimpleLiteral">
>         <xs:simpleType>
>           <xs:restriction base="xs:string"/>
>         </xs:simpleType>
>         <xs:attribute ref="xml:lang" use="prohibited"/>
>     </xs:restriction>
>    </xs:simpleContent>
>   </xs:complexType>
> Here is the base for the restriction:
>   <xs:complexType name="SimpleLiteral">
>    <xs:complexContent mixed="true">
>     <xs:restriction base="xs:anyType">
>      <xs:sequence>
>       <xs:any processContents="lax" minOccurs="0" maxOccurs="0"/>
>      </xs:sequence>
>      <xs:attribute ref="xml:lang" use="optional"/>
>     </xs:restriction>
>    </xs:complexContent>
>   </xs:complexType>
> As you can see, the complex type with a simple content model is restricting a complex type with mixed content model.
> This seems like an error.

-- 
This message is automatically generated by JIRA.
-
You can reply to this email to add a comment to the issue online.


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