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 "Michael Glavassevich (JIRA)" <xe...@xml.apache.org> on 2011/05/06 19:06:03 UTC

[jira] [Resolved] (XERCESJ-1507) Identity constraint does not work if field refers to attribute defined as simple type of list

     [ https://issues.apache.org/jira/browse/XERCESJ-1507?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel ]

Michael Glavassevich resolved XERCESJ-1507.
-------------------------------------------

    Resolution: Invalid

I agree with Mukul's assessment and also doubled checked with a member of the XML Schema working group. Atomic types and list types are not comparable in XML Schema 1.0.

> Identity constraint does not work if field refers to attribute defined as simple type of list
> ---------------------------------------------------------------------------------------------
>
>                 Key: XERCESJ-1507
>                 URL: https://issues.apache.org/jira/browse/XERCESJ-1507
>             Project: Xerces2-J
>          Issue Type: Bug
>          Components: SAX
>    Affects Versions: 2.11.0
>         Environment: Windows, Java 1.6
>            Reporter: Damir Sulomar
>
> When a keyref field element refers to attribute defined as simple type of list the identity constraint does not work.  Schema and data below.
> <?xml version="1.0" encoding="utf-8"?>
> <xs:schema xmlns:xs="http://www.w3.org/2001/XMLSchema"  >
> 	<xs:element name="Data">
> 		<xs:complexType>
> 			<xs:all>
> 				<xs:element name="Data1">
> 					<xs:complexType>
> 						<xs:attribute name="keydata" type="xs:string" use="required"/>
> 					</xs:complexType>
> 				</xs:element>
> 				<xs:element name="Data2">
> 					<xs:complexType>
> 						<xs:attribute name="keyref" type="keyreftypes" use="required"/>
> 					</xs:complexType>
> 				</xs:element>
> 			</xs:all>
> 		</xs:complexType>
> 		<xs:key name="Keys">
> 			<xs:selector xpath=".//Data1"/>
> 			<xs:field xpath="@keydata"/>
> 		</xs:key>
> 		<xs:keyref name="KeyRefs" refer="Keys">
> 			<xs:selector xpath=".//Data2"/>
> 			<xs:field xpath="@keyref"/>
> 		</xs:keyref>
> 	</xs:element>
> 	<xs:simpleType name="keyreftypes">
> 		<xs:list itemType="xs:string"/>
> 	</xs:simpleType>
> </xs:schema>
> <?xml version="1.0" encoding="utf-8" ?> 
> <Data>
> 	<Data1 keydata="1"/>
> 	<Data2 keyref="1"/>
> </Data>

--
This message is automatically generated by JIRA.
For more information on JIRA, see: http://www.atlassian.com/software/jira

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