You are currently viewing the XML section of the Wrox Programmer to Programmer discussions. This is a community of software programmers and website developers including Wrox book authors and readers. New member registration was closed in 2019. New posts were shut off and the site was archived into this static format as of October 1, 2020. If you require technical support for a Wrox book please contact http://hub.wiley.com
is there a way to make an all attribute and also to put the attribute as unbounded (and not with sequence)? for example
this is the original line
<xs:sequence>
<xs:element name="field" type="fieldType" maxOccurs="unbounded"/>
</xs:sequence>
and I would like to change the sequence to be all, and also to keep maxOccures as unbounded. what is the way to do it, if there is one?