Hi!
looks correct to me, but maybe you need to adjust the xpath to be
"//clientSession/text()" ?
the log.info( .. ) writes to the groovy log tab at the bottom of the soapUI window.. you could also add a
log.info( "Found " + items.length + " items.." )
before the for-loop, so your whole script would be
def items = holder.getNodeValues( "//clientSession/text()")
log.info( "Found " + items.length + " items.." )
for (item in items)
{
log.info( item )
}
Hope this helps!
/Ole
eviware.com