Forum Discussion
deepesh_jain
15 years agoFrequent Contributor
You don't need the property transfer step. You only need directly a properties step or directly soap step.
You can use groovy step to populate the xml tag in soap step or property in properties step.
This is how you can do it assuming your second SOAP step is named as SOAP_2:
Regards,
Deepesh Jain
You can use groovy step to populate the xml tag in soap step or property in properties step.
This is how you can do it assuming your second SOAP step is named as SOAP_2:
// say in your groovy step you have guid stored in [b]sourceGuid[/b].
def gUtils = new com.eviware.soapui.support.GroovyUtils( context );
def holder = gUtils.getXmlHolder("SOAP_2#Request");
holder.setNodeValue("YOUR_XPATH_HERE",sourceGuid);
holder.updateProperty();
Regards,
Deepesh Jain