Forum Discussion
Sandeepss
13 years agoOccasional Contributor
Hi,
The below code may help You
The below code may help You
// Read All response XML Using Xml Holder
context.utils = new com.eviware.soapui.support.GroovyUtils(context)
def response = context.expand( '${Your Operation Name here#Response}' )
context.holder = context.utils.getXmlHolder(response)
// context.holder.getNodeValues("//Put the tagname as below")
context.Dueval = context.holder.getNodeValues("//dsml:value")
def sVal = context.Dueval.toString()
log.info sVal // you will get your result.