OASIS Mailing List ArchivesView the OASIS mailing list archive below
or browse/search using MarkMail.

 


Help: OASIS Mailing Lists Help | MarkMail Help

sca-policy message

[Date Prev] | [Thread Prev] | [Thread Next] | [Date Next] -- [Date Index] | [Thread Index] | [List Home]


Subject: [NEW ISSUE] sca-policy-1.1-cd03.xsd has an error in the declaration ofQualifier complex type



Raiser:                Mike Edwards

Target:                sca-policy-1.1-spec-cd02-rev2.doc

Description:

The current declaration of the Qualifier complex type has an error in the way it is declared:

        <complexType name="Qualifier">
                <any namespace="##other" processContents="lax"/>
                <attribute name="name" type="string" use="required"/>
                <anyAttribute namespace="##other" processContents="lax"/>
        </complexType>

The inclusion of the <any/> element directly within the <complexType/> element is not allowed.
The <any/> must be contained within a <sequence/> or <choice/> or <all/>.

Proposal:

Change the Qualifier complex type declaration to contain the <any/> within a sequence:

        <complexType name="Qualifier">
                <sequence minOccurs="0" maxOccurs="unbounded">
                        <any namespace="##other" processContents="lax"/>
                </sequence>
                <attribute name="name" type="string" use="required"/>
                <anyAttribute namespace="##other" processContents="lax"/>
        </complexType>


Yours,  Mike.

Strategist - Emerging Technologies, SCA & SDO.
Co Chair OASIS SCA Assembly TC.
IBM Hursley Park, Mail Point 146, Winchester, SO21 2JN, Great Britain.
Phone & FAX: +44-1962-818014    Mobile: +44-7802-467431  
Email:  mike_edwards@uk.ibm.com





Unless stated otherwise above:
IBM United Kingdom Limited - Registered in England and Wales with number 741598.
Registered office: PO Box 41, North Harbour, Portsmouth, Hampshire PO6 3AU








[Date Prev] | [Thread Prev] | [Thread Next] | [Date Next] -- [Date Index] | [Thread Index] | [List Home]