Hi Sumit,
I am just doing the xml parsing part in the script assertion out of the response xml obtained. I am doing the same way as you showed here, but getting the order number as empty even I followed the same way of
def on = holder1.getNodeValue("//ns:XData/ns:OrderNumber");
//Start parsing of xml_data
def groovyUtils = new com.eviware.soapui.support.GroovyUtils(context);
def holder1 = groovyUtils.getXmlHolder(xml_data);
holder1.namespaces["ns"] = "
http://www.xxx.com/xx/yy;//Pull out the field 'OrderNumber' from the nested xml
def on = holder1.getNodeValue("//ns:XData/OrderNumber");
log.info("xml_data: " + xml_data);
log.info("orderNumber: " + on);
Could you please help me with this error?