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

Mukul Gandhi updated XERCESJ-1608:
----------------------------------
    Fix Version/s: 2.12.0

> Error when validating sum duration
> ----------------------------------
>
>                 Key: XERCESJ-1608
>                 URL: https://issues.apache.org/jira/browse/XERCESJ-1608
>             Project: Xerces2-J
>          Issue Type: Bug
>          Components: XML Schema 1.1 Structures
>    Affects Versions: 2.11.0
>            Reporter: Jorge L. Williams
>            Assignee: Mukul Gandhi
>             Fix For: 2.12.0
>
>
> Tried the following in latest XSD 1.1 branch:
> Schema:
> <schema
>     elementFormDefault="qualified"
>     attributeFormDefault="unqualified"
>     xmlns="http://www.w3.org/2001/XMLSchema";
>     xmlns:xsd="http://www.w3.org/2001/XMLSchema";
>     xmlns:tst="http://www.rackspace.com/test/duration";
>     targetNamespace="http://www.rackspace.com/test/duration";>
>     <element name="test" type="tst:SumDuration24H"/>
>     <complexType name="SumDuration24H">
>         <sequence>
>             <element name="d" type="xsd:dayTimeDuration" 
> maxOccurs="unbounded"/>
>         </sequence>
>         <assert test="xsd:dayTimeDuration('PT24H') = sum(for $d in 
> element(tst:d) return xsd:dayTimeDuration($d))"/>
>     </complexType>
> </schema>
> good.xml
> <test xmlns="http://www.rackspace.com/test/duration";>
>     <d>PT22H</d>
>     <d>PT1H</d>
>     <d>PT1H</d>
> </test>
> bad.xml
> <test xmlns="http://www.rackspace.com/test/duration";>
>     <d>PT24H</d>
>     <d>PT1H</d>
>     <d>PT1H</d>
> </test>
> I expect good.xml to validate correctly and bad.xml to fail validation.  
> However, both of these fail validation with the message:
> cvc-assertion: Assertion evaluation ('xsd:dayTimeDuration('PT24H') = sum(for 
> $d in element(tst:d) return xsd:dayTimeDuration($d))') for element 'test' on 
> schema type 'SumDuration24H' did not succeed. 



--
This message was sent by Atlassian JIRA
(v6.3.4#6332)

---------------------------------------------------------------------
To unsubscribe, e-mail: [email protected]
For additional commands, e-mail: [email protected]

Reply via email to