Forum Discussion
- SmartBear_SuppoSmartBear Alumni (Retired)Hi,
You have increased the size of the editor by going in Preferences > SoapUI Pro > Click OK. Close and open SoapUI Pro and check if the content is displayed. This should work. Can you attach the screenshots?
Thanks,
Jeshtha - smadjiContributor
- SmartBear_SuppoSmartBear Alumni (Retired)Hi,
Can you upgrade to the latest version? I would suggest you to download the latest version from this link,
http://www.soapui.org/Downloads/soapui-pro-nightly-builds.html
Also if this does not resolve the issue please open a support ticket,
http://www.soapui.org/Support/support-overview.html
Attach your project, Right click on Project > Export project so we can investigate further.
Thanks,
Jeshtha - smadjiContributorI have downloaded the latest snapshot and installed. This did not fix my problem.
I am going to open a ticket, thanks - SmartBear_SuppoSmartBear Alumni (Retired)Hi,
Remove the CDATA in the response tab follow this link,
http://www.soapui.org/Functional-Testin ... the-rescue
This link will remove CDATA and update the response,
Open the Project window, select the "Events" tab and add a RequestFilter.afterRequest handler. Set its content to:
//Script if( request.response == null )
return
def content = context.httpResponse.responseContent
content = content.replaceAll( "<!\\[CDATA\\[", "" )
content = content.replaceAll( "]]>", "" )
//log.info( content )
context.httpResponse.responseContent = content
This will fix the issue.
Thanks,
Jeshtha - smadjiContributorthis worked! thanks!
- SmartBear_SuppoSmartBear Alumni (Retired)Hi,
Make sure CDATA contents are XML or you need to convert it to XML by adding a query parameter at Resource level and set it to XML so it will work.
Thanks,
Jeshtha - smadjiContributorproblem happens because my requests were coming in as json. When I converted each request to xml all the data was showing and available for assertion.
Related Content
- 3 years ago
Recent Discussions
- 6 days ago
- 10 days ago