- From: Michael Kay <mike@saxonica.com>
- Date: Mon, 15 Jan 2007 17:02:23 -0000
- To: "'Antoli, Leo'" <Leo.Antoli@Misys.com>, <Nicholas.Ardlie@ga.gov.au>, <xmlschema-dev@w3.org>
- Message-ID: <019201c738c6$edb01b10$6401a8c0@turtle>
Are you sure you are running 8.8.0.4? Use the -t option to check. This is a very product-specific thread, so as a courtesy to other readers of the list it might be better to move it to the saxon-help list at sourceforge.net Michael Kay http://www.saxonica.com/ _____ From: Antoli, Leo [mailto:Leo.Antoli@Misys.com] Sent: 15 January 2007 16:49 To: Michael Kay; Nicholas.Ardlie@ga.gov.au; xmlschema-dev@w3.org Subject: RE: Length facet illegal in restriction of list type I'm still having the same error with 8.8.0.4. However it's valid for Saxon 8.6 and XML Spy. I'm defining: <xsd:complexType name="MyType"> <xsd:simpleContent> <xsd:extension base="xsd:string"> <xsd:attributeGroup ref="myAttrb"/> </xsd:extension> </xsd:simpleContent> </xsd:complexType> And then I try to use it but I get an error about the length facet: <xsd:complexType> <xsd:simpleContent> <xsd:restriction base="MyType"> <xsd:length value="3"/> </xsd:restriction> </xsd:simpleContent> </xsd:complexType> The length facet is not applicable to types derived from MyType_anonymous_type_7_at_line_14_of_MySchema.xsd_37 Regards, Leo Antoli _____ From: Michael Kay [mailto:mike@saxonica.com] Sent: 15 January 2007 10:05 To: Nicholas.Ardlie@ga.gov.au; xmlschema-dev@w3.org Subject: RE: Length facet illegal in restriction of list type This appears to be a bug in Saxon-SA 8.8 which is fixed in the latest patch release at http://www.saxonica.com/download/patched/saxon-saj-8804.zip I haven't actually been able to identify which of the various reported bugs causes the problem. Michael Kay http://www.saxonica.com/ _____ From: xmlschema-dev-request@w3.org [mailto:xmlschema-dev-request@w3.org] On Behalf Of Nicholas.Ardlie@ga.gov.au Sent: 15 January 2007 06:57 To: xmlschema-dev@w3.org Subject: Length facet illegal in restriction of list type The schema listed below contains a simplification of a construct found in the GML 3.1.1 schemas. Saxon-SA produces the following error message about the length facet: "The length facet is not applicable to types derived from codeAndTwoIntegersType_anonymous_type_2_at_line_7_of_ListTest1.xsd_36 Any pointers on why the length facet is illegal in this situation? Regards, Nick Ardlie. <?xml version="1.0" encoding="UTF-8"?> <schema xmlns:xs="http://www.w3.org/2001/XMLSchema" xmlns="http://www.w3.org/2001/XMLSchema" targetNamespace="http://ns1.com" xmlns:ns1="http://ns1.com"> <element name="codeAndInteger" type="ns1:codeAndTwoIntegersType"/> <complexType name="codeAndTwoIntegersType"> <simpleContent> <restriction base="ns1:codeAndIntegerListType"> <length value="2"/> </restriction> </simpleContent> </complexType> <complexType name="codeAndIntegerListType"> <simpleContent> <extension base="ns1:integerList"> <attribute name="code" type="anyURI" use="required"/> </extension> </simpleContent> </complexType> <simpleType name="integerList"> <list itemType="int"/> </simpleType> </schema> This email message is intended for the named recipient only. It may be privileged and/or confidential. If you are not the named recipient of this email please notify us immediately and do not copy it or use it for any purpose, nor disclose its contents to any other person. Misys Banking Systems is a trading name of Misys International Banking Systems Limited which is registered in England and Wales under company registration number 00971479 and with its registered office address at Burleigh House, Chapel Oak, Salford Priors, Evesham WR11 8SP. THIS E-MAIL DOES NOT CONSTITUTE THE COMMENCEMENT OF LEGAL RELATIONS BETWEEN YOU AND MISYS INTERNATIONAL BANKING SYSTEMS LIMITED. PLEASE REFER TO THE EXECUTED CONTRACT BETWEEN YOU AND THE RELEVANT MEMBER OF THE MISYS GROUP FOR THE IDENTITY OF THE CONTRACTING PARTY WITH WHICH YOU ARE DEALING.
Received on Monday, 15 January 2007 17:03:03 UTC