• Post Reply Bookmark Topic Watch Topic
  • New Topic
programming forums Java Mobile Certification Databases Caching Books Engineering Micro Controllers OS Languages Paradigms IDEs Build Tools Frameworks Application Servers Open Source This Site Careers Other Pie Elite all forums
this forum made possible by our volunteer staff, including ...
Marshals:
  • Campbell Ritchie
  • Jeanne Boyarsky
  • Ron McLeod
  • Paul Clapham
  • Liutauras Vilda
Sheriffs:
  • paul wheaton
  • Rob Spoor
  • Devaka Cooray
Saloon Keepers:
  • Stephan van Hulst
  • Tim Holloway
  • Carey Brown
  • Frits Walraven
  • Tim Moores
Bartenders:
  • Mikalai Zaikin

Help with choice & group tags

 
Greenhorn
Posts: 6
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Quote
  • Report post to moderator
Hi All,

Need some help with XML validation. A valid xml file should look like (a) or (b) or (c)..

(a)
<root>
<apples/>
</root>

(b)
<root>
<oranges/>
</root>

(c)
<root>
<apples/>
<oranges/>
</root>

That is, either it should be <apples> tag or <oranges> tag or (<apples> AND <oranges> tags).

I tried the following xsd schema, but one test case fails (two <apples> is valid with this xsd, which is incorrect)

<choice minOccurs="1" maxOccurs="2">
<element name="apples"/>
<element name="oranges"/>
</choice>

Can this requirement be met using any other tags ? Any help is appreciated.

Regards,
Philip
 
Don't get me started about those stupid light bulbs.
reply
    Bookmark Topic Watch Topic
  • New Topic