R
Roland Praehofer
Hi!
I'm trying to accomplish the following:
<root xmlns:xsi='http://www.w3.org/2001/XMLSchema-instance'
xsi:noNamespaceSchemaLocation='teaser.xsd'>
<b>
<a>John</a>
<a>Paul/a>
<a>George</a>
<a>Ringo/a>
<b>
<c>
<a>John</a>
<a>Paul</a>
<a>Ringo</a>
</c>
<c>
<a>John</a>
<a>Paul</a>
<a>George</a>
</c>
</root>
I want to make sure not only, that every c/a is equal to one of b/a.
(I can make c/a/. the keyref of b/a)
But also every b/a should be present in every c/a.
To simplify it:
Every c/a/. should have an correspondent b/a/.
Any help would be appreciated.
Thanks.
I'm trying to accomplish the following:
<root xmlns:xsi='http://www.w3.org/2001/XMLSchema-instance'
xsi:noNamespaceSchemaLocation='teaser.xsd'>
<b>
<a>John</a>
<a>Paul/a>
<a>George</a>
<a>Ringo/a>
<b>
<c>
<a>John</a>
<a>Paul</a>
<a>Ringo</a>
</c>
<c>
<a>John</a>
<a>Paul</a>
<a>George</a>
</c>
</root>
I want to make sure not only, that every c/a is equal to one of b/a.
(I can make c/a/. the keyref of b/a)
But also every b/a should be present in every c/a.
To simplify it:
Every c/a/. should have an correspondent b/a/.
Any help would be appreciated.
Thanks.