does not support multiple IDs
-----------------------------

                 Key: XERCESJ-1440
                 URL: https://issues.apache.org/jira/browse/XERCESJ-1440
             Project: Xerces2-J
          Issue Type: Improvement
          Components: XML Schema 1.1 Structures
    Affects Versions: 2.9.1
            Reporter: Kun Xu
            Priority: Minor
             Fix For: 2.10.0
         Attachments: MULID_patch.txt

Parser doesn't support multiple IDs.

Example

XSD:
<?xml version="1.0"?>
<xs:schema xmlns:xs="http://www.w3.org/2001/XMLSchema";>

        <xs:complexType name="ids">
                <xs:sequence>
                        <xs:element name="idref" type="xs:IDREF" 
maxOccurs="unbounded"/>
                </xs:sequence>
                <xs:attribute name="id1" type="xs:ID"/>
                <xs:attribute name="id2" type="xs:ID"/>
                <xs:attribute name="id3" type="xs:ID"/>
        </xs:complexType>

        <xs:element name="root" type="ids"/>
</xs:schema>

XML:

<?xml version="1.0"?>
<root xsi:noNamespaceSchemaLocation="test_mulID.xsd" 
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance";
        id1="asd87123_" id2="_d8732d" id3="aaaaaa">
        <idref>asd87123_</idref>
        <idref>_d8732d</idref>  
        <idref>aaaaaa</idref>   
</root>

Suggestion:

Maybe we can simply add support for multiple IDs. Please verify the attached 
patch. 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]

Reply via email to