Re: Duplicate attribute uses (Xerces bug?)

Hi,

On Mon, 2005-09-12 at 16:00 +0200, Kasimier Buchcik wrote:
> Hi,

[...]

> > Now, the error reported by Xerces is wrong but do you see a benefit of 
> > allowing this? IMO a duplicate attribute element should be an error.
> 
> Yes, you are right; I see no benefit, although I would tend to generate
> a warning instead of an error.

[...]

Additionally generating a warning if prohibition is used with
extensions would be good. The following does not produce neither
a warning nor an error with Xerces-J and XSV:

<xsd:complexType name="base">
	<xsd:attribute name="boo" use="optional"/>
</xsd:complexType>

<xsd:complexType name="type-1">
	<xsd:complexContent>
		<xsd:extension base="f:base">				
			<xsd:attribute name="boo" use="prohibited"/>
		</xsd:extension>
	</xsd:complexContent>
</xsd:complexType>

Regards,

Kasimier

Received on Monday, 12 September 2005 14:45:14 UTC