Hello,
I am trying to validate a response from a webservice that contains 3 tables with the same name:
...
<SUBTABLE3>
content
</SUBTABLE3>
...
<SUBTABLE3>
content
</SUBTABLE3>
...
<SUBTABLE3>
content
</SUBTABLE3>
...
I am using the example on:
http://www.soapui.org/Functional-Testing/xpath-and-xquery-assertions.html
The problem, the way I see it is when I use
declare namespace sam='http://www.example.org/sample/';
//some tag/some tag/SUBTABLE3
I get erro because it cannot distinguish between the nodes when there are several nodes with the same name (SUBTABLE3).
Is there way to solve this problem?
Cheers
Magnus