Forum Discussion
SmartBear_Suppo
16 years agoSmartBear Alumni (Retired)
Hi Mary,
thank you.
Ok.. try adding a SubmitListener.afterSubmit handler to your project (in the Project/Events tab);
This should change the response internally in soapUI so that the contained xml document is seen as xml and not as a string.
Tell me how it works!
regards,
/Ole
eviware.com
thank you.
Ok.. try adding a SubmitListener.afterSubmit handler to your project (in the Project/Events tab);
if( submit.response == null )
return
def content = submit.response.responseContent
content = content.replaceAll( "<", "<" )
content = content.replaceAll( ">", ">" )
submit.response.responseContent = content
This should change the response internally in soapUI so that the contained xml document is seen as xml and not as a string.
Tell me how it works!
regards,
/Ole
eviware.com
Related Content
- 11 years ago
Recent Discussions
- 10 days ago