Forum Discussion
SmartBear_Suppo
Alumni
17 years agoYou will have to use Groovy for this. I think you'll need to do something along the lines of this:
Good luck!
Regards,
Dain
eviware.com
def groovyUtils = new com.eviware.soapui.support.GroovyUtils( context )
def holder = groovyUtils.getXmlHolder("Your Request#Response")
def.encoded = holder.getNodeValue("<get the base64 node content>")
def decoded = new String(encoded.decodeBase64(), "utf-8")
log.info decoded
Good luck!
Regards,
Dain
eviware.com