[ https://issues.apache.org/jira/browse/XMLBEANS-377?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=12616013#action_12616013 ]
Matt Bucknam commented on XMLBEANS-377: --------------------------------------- Radu, Thanks for looking at this. It appears to be number 1. from your comment but it does not work when compiling the schema against XMLBeans 2.4.0 (latest stable release I got from the website). Here is the xsd for DecimalType: <xs:complexType name="DecimalType"> <xs:annotation> <xs:documentation>A decimal value that has limited associated metadata</xs:documentation> </xs:annotation> <xs:simpleContent> <xs:extension base="xs:decimal"> <xs:annotation> <xs:documentation>A decimal value that has limited associated metadata</xs:documentation> </xs:annotation> <xs:attribute ref="ucore:errorBound"> <xs:annotation> <xs:documentation>This describes the error bound associated with the value. At the moment, it is a single number that represents the uncertainty in terms of + or - from the number.</xs:documentation> </xs:annotation> </xs:attribute> <xs:attributeGroup ref="ICISM:SecurityAttributesOptionGroup"/> </xs:extension> </xs:simpleContent> </xs:complexType> It doesn't seem to me that DecimalType has simpleContent though. Even though it is declared as such. Please let me know if I can provide more information. It's not out of the question that this schema could be wrong -- it is very nested and complicated and using it is a pain in the *** even with XMLBeans... > exception in thread "main" org.apache.xmlbeans.SchemaTypeLoaderException: > Simple type does not have a recognized variety > ------------------------------------------------------------------------------------------------------------------------ > > Key: XMLBEANS-377 > URL: https://issues.apache.org/jira/browse/XMLBEANS-377 > Project: XMLBeans > Issue Type: Bug > Components: Tools > Affects Versions: TBD > Environment: Ubuntu 8.0.4, jdk1.5.14, XMLBeans 2.4.0 > Reporter: Matt Bucknam > > I'm having the same issue as with XMLBEANS-356. I can provide more > information if necessary but hope that something similar to what fixed that > issue will fix this too. The schema fragment that does not work is: > <xs:complexType name="AngleMeasureType"> > <xs:annotation> > <xs:documentation>An angle measurement, with an > associated error bound. The units on the error bound are assumed to be the > same as those on the measurement.</xs:documentation> > </xs:annotation> > <xs:complexContent> > <xs:extension base="xxxxx:DecimalType"> > <xs:attribute name="angleUOM" > type="xxxxx:AngleUOMType"> > <xs:annotation> > <xs:documentation>A unit of > measurement assigned to this angle.</xs:documentation> > </xs:annotation> > </xs:attribute> > </xs:extension> > </xs:complexContent> > </xs:complexType> > Similar to the suggested workaround given in XMLBEANS-356, if I change the > xs:complexContent to xs:simpleContent and recompile the schema, I can use it > just fine. But, also similar to XMLBEANS-356, I am a consumer of the schema > and am not able to easily change it. If a sample xsd and java program to > duplicate the problem are necessary or more information please let me know > and I'll try to provide. The fragment is part of a very large complex set of > schemas and is proprietary so I am trying to be diligent in what I post. > Thanks. -- 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: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PROTECTED]