[XML-DEV Mailing List Archive Home] [By Thread] [By Date] [Recent Entries] [Reply To This Message]

RE: Problem designing complexType accepting a specified elemen


problem text complextype
John,

Thanks for your answer. Do you mean that there is NO solution to solve my
problem using XML schema ? Are you sure about that because it will have a
big impact on the project I am working on...

Yvan

-----Original Message-----
From: jcowan@r...
To: Hess Yvan
Cc: xml-dev@l...
Sent: 11.03.04 21:54
Subject: Re:  Problem designing complexType accepting a specified
element and a llowing any others.

Hess Yvan scripsit:

> I implemented the following xml schema complexType but it doesn't
work: 
> 
> <xs:element name="metadata">
>   <xs:complexType>
>     <xs:choice minOccurs="0" maxOccurs="unbounded">
>       <xs:element name="identifier" type="xs:string"/>
>       <xs:any processContents="lax" minOccurs="0"
maxOccurs="unbounded"/>
>     </xs:choice>
>   </xs:complexType>
> </xs:element>

First of all, you are specifying a choice between an identifier element
and any number of arbitrary elements, but the choice is itself repeated
any number of times.  So <ident/><ident/><ident/> will match.  But even
if you get past that problem, when an "identifier" element is seen,
the schema validator can't tell if it matches the explicit xs:element
declaration or the xs:any declaration.  This is what the UPA rule means:
an element has to match exactly one of the cases in a choice, and if it
matches more than one, the schema is incorrect.

<propaganda>The RELAX NG schema language doesn't have this problem,
and will handle this pattern correctly:

	metadata = element identifier {xsd:string}
		& element * - identifier {attribute * {text}*, ANY*}*
	ANY = element * {attribute * {text}*, ANY*}

Here we clearly specify that "metadata" means an identifier element
interleaved with any number of elements other than identifier elements
(with the latter allowed to contain any attributes and any child
elements).  The effect of interleaving is that the identifier element
may
appear before, after, or mixed in with the other elements.
</propaganda>

-- 
You are a child of the universe no less         John Cowan
than the trees and all other acyclic
http://www.reutershealth.com
graphs; you have a right to be here.
http://www.ccil.org/~cowan
  --DeXiderata by Sean McGrath                  jcowan@r...

PURCHASE STYLUS STUDIO ONLINE TODAY!

Purchasing Stylus Studio from our online shop is Easy, Secure and Value Priced!

Buy Stylus Studio Now

Download The World's Best XML IDE!

Accelerate XML development with our award-winning XML IDE - Download a free trial today!

Don't miss another message! Subscribe to this list today.
Email
First Name
Last Name
Company
Subscribe in XML format
RSS 2.0
Atom 0.3
 

Stylus Studio has published XML-DEV in RSS and ATOM formats, enabling users to easily subcribe to the list from their preferred news reader application.


Stylus Studio Sponsored Links are added links designed to provide related and additional information to the visitors of this website. they were not included by the author in the initial post. To view the content without the Sponsor Links please click here.

Site Map | Privacy Policy | Terms of Use | Trademarks
Free Stylus Studio XML Training:
W3C Member
Stylus Studio® and DataDirect XQuery ™are products from DataDirect Technologies, is a registered trademark of Progress Software Corporation, in the U.S. and other countries. © 2004-2013 All Rights Reserved.