ContributionsMost RecentMost LikesSolutionsRe: API Docs location for Ready API. Thanks! /R API Docs location for Ready API. Hello! I was wondering where to find the API-docs for Ready API. I have this url but that is for SoapUI 5.1.2: http://www.soapui.org/apidocs/index.html?overview-summary.html)&_ga=1.117057669.2003774971.1436173085 Is there a newer version anywhere?? Best Regards Robert SolvedRe: pretty print trimming white space solution? Hello. I'm sorry but the solution in the linked thread doesn't help. The problem is that SoapUI already removes spaces inside the node. Hence, the response presented in SoapUI does not equal the reponse sent from the server. Is smartbear planning to fix the mentioned issue where pretty print trims node content? Best Regards Robert Re: pretty print trimming white space solution? Hello Tanya! The issue is that pretty print trims the content inside nodes in the XML. E.g. I receive a response from the application: <Person> <Surname>Smith </Surname> </Person> The value for surname in the database is "Smith " and I wan't to compare the value in the XML with the value in the db using GroovyUtils. However due to the trimming issue in pretty print the XML that is stored inside the XmlHolder is: <Person> <Surname>Smith</Surname> </Person> Hence, when I compare the values the assertion failes because "Smith" != "Smith ". If I disable pretty print the correct value is returned, but the XML is not very readable (a typical response in my application is +5000 chars). As I see it, pretty print altering the content of a node is a defect since the actual content of the response changes. Best Regards Robert pretty print trimming white space solution? Hello! Is there a solutions for this problem (http://community.smartbear.com/t5/SoapUI-NG/Pretty-Print-trimming-spaces/m-p/27345#U27345)? //Best Regard Robert Re: open wsdlproject using groovy Thanks, that did it! Re: open wsdlproject using groovy E.g. In my workspace I have two WsdlProjects: - Project A - Open - Project B - Closed From a groovy-script-teststep (groovy-script 1) in Project A I want to get the interfacelist from project B. While project B is closed I can't get the list, hence I need to open the project before I get the list. I want to open the project using the groovy-script 1. Can this be done? Best Regards Robert Re: Getting CData "ERROR:org.apache.xmlbeans.XmlException: error: Unexpected element: CDATA" error. BTW, have you seen this thread: http://community.smartbear.com/t5/SoapUI-Open-Source/error-Unexpected-element-CDATA/m-p/43983#U43983 Re: open wsdlproject using groovy I just want to open (just open, not run it or anything else) a project from within another project like: testRunner.testCase.testSuite.project.workspace.projects[ "other_project" ].open = true; But the above doesn't work because the open-attribute is read-only. This because the interfaceList is not available for a closed project. Best Regards Robert Re: Getting CData "ERROR:org.apache.xmlbeans.XmlException: error: Unexpected element: CDATA" error. I'd guess it's because no Xml-data was found. What are you trying to do when the error occurs?