How do I choose between to elements with the same name
How will a schema for this xml code look like?
<AAA>
<CCC>
<DDD/>
<EEE/>
</CCC>
<CCC>
<DDD/>
<EEE/>
</CCC>
<CCC>
<FFF/>
<GGG/>
</CCC>
<CCC>
<FFF/>
<GGG/>
</CCC>
</AAA>
I.e. CCC can contain either DDD and EEE or FFF and GGG!
Thanks
//Daniel

