K
kosaraju.puneeth
hello,
I need to represent recursive relationship in xml which will be
validated by defined xml schema.
example: check.xml
<a>
<testgroup name="first" result ="pass">
<testgroup name="second">
<test name="OPEN" spec = "0"/>
</testgroup>
<test name="SHORT" spec ="1"/>
</testgroup>
<test name="CLOSE" spec ="1"/>
<testgroup name="third" result ="fail">
<test name="OPEN" spec = "1"/>
</testgroup>
</a>
so i have to write a xml schema which can validate "check.xml"
Thanks in advance.
I need to represent recursive relationship in xml which will be
validated by defined xml schema.
example: check.xml
<a>
<testgroup name="first" result ="pass">
<testgroup name="second">
<test name="OPEN" spec = "0"/>
</testgroup>
<test name="SHORT" spec ="1"/>
</testgroup>
<test name="CLOSE" spec ="1"/>
<testgroup name="third" result ="fail">
<test name="OPEN" spec = "1"/>
</testgroup>
</a>
so i have to write a xml schema which can validate "check.xml"
Thanks in advance.