massimo65New Contributor7 years agoSolvedHow to extract a value from a SOAP response I am new with SoapUI tool. I need to extract the values of "resultOperation" and "errorCode" from the following SOAP response: HTTP/1.1 200 OK Server: Apache-Coyote/1.1 Content-Type: text/xml...Show More
Shivani1Occasional Contributor7 years agoCopy LinkHi, You can try the following solution: def resOper,errorCode Response="Your XML" ResParsed= new XmlSlurper().parseText(Response) resOper=ResParsed.resultOperation err=ResParsed.errorCode log.info resOper,err
Recent DiscussionsShared workspaceNo Fluff Just Real Stuff - latest newsletter from the DevRel Team at SmartBearWhich current version of POI bin files is compatible with SOAP UI 5.5 free version ?
Related ContentGroovyScript - Extract specific number of attribute values from variable content responseExtracting child node from JSON ResponseHow to extract value from xml response in script assertion