ContributionsMost RecentMost LikesSolutionsRe: Trying to use RequestFilter.filterRequest event to convert CDATA SOAP Response to XML. Not working Thanks for the information Rao. The script was really simple, and works fine! def rootNode = new XmlSlurper().parseText('My CData Text') assert rootNode.name() == 'The Root node in my CData' assert rootNode.State.text() == AZ (State being one of the nodes in the CData). Thanks! Re: Trying to use RequestFilter.filterRequest event to convert CDATA SOAP Response to XML. Not working Thanks! I will try that out. Re: Trying to use RequestFilter.filterRequest event to convert CDATA SOAP Response to XML. Not working So, here is part of my request and response in the CData format ... I would like the response to be displayed in the xml format. If not possible, is there an easy way to write assertions for the data returning in the CData format? I couldn't find anything except 'Contains' assertion. I would like to use XPath. Request: <soapenv:Body> <web:CalculateQuote> <!--Optional:--> <web:QuoteXML><![CDATA[<QuoteObject> <Insured> <Quote> <EffectiveDate>08/10/2011</EffectiveDate> <OriginalEffectiveDate>08/10/2011</OriginalEffectiveDate> Response: <CalculateQuoteResult><![CDATA[<QuoteObject><Insured UnitNumber=""><Quote UnitNumber=""><EffectiveDate>08/10/2011</EffectiveDate> Thanks. Re: Trying to use RequestFilter.filterRequest event to convert CDATA SOAP Response to XML. Not working Hi, That does not help in any way. Thanks. Trying to use RequestFilter.filterRequest event to convert CDATA SOAP Response to XML. Not working I have a SOAP request which returns the complete response in CDATA. I am trying to convert it to XML using the RequestFilter.filterRequest event handler. But it is not working. The response is still coming back as CDATA. I am using the following help document (which is no help at all obviously)... http://readyapi.smartbear.com/readyapi/events/handlers My code: def content = context.httpResponse.responseContent content = content.replaceAll("<![CDATA[<QuoteObject>", "") content = content.replaceAll( "]]>", "") log.info( content ) context.httpResponse.responseContent = content Please help. Ready API overwrites other user's work in Composite Project I am facing the following problem. Is there a work around or a solution? Thanks. Saving issues due to overwritten files Following scenario: I have a project with 1 suite with 2 test cases. Workstation 1 adds a step to test case 1 Workstation 2 adds a step to test case 2 Workstation 1 saves. --> OK: Only "element.order" and the file of test case 1 are changed and saved. Workstation 2 saves. --> NOT OK: For some reason SoapUI tries to save "element.order" and both test case files, even though this workstation has only changed test case 2. The result is that workstation 2 gets asked if the file for test case 1 should be overwritten, which in my eyes is wrong. If user 2 does confirm, the changes of workstation 1 are reverted. Is this a known bug? Or is there something I can do to avoid this behaviour? (I use Ready API 1.3.1) Re: Duplicate Testcases Hello, I don't have special characters in my Project or Test case names. I am still getting the full test suite duplicated when I Refresh. One time the who project vanished from the work space after I right-clicked and selected Refresh. I had to import the project again and, of course all the changes made by me are gone. Please let me know if a feasible work around exists. I am using Ready API 1.3.1. Build Date: 20150605-1328 a2f2659f82b3614dc8cd882757ce1675f8bfa2b2 Never worked with a worse product than SoapUI or ReadyAPI in terms of Memory Management. Improve it? Have to End Task through Task Manager almost twice every hour. This is the worst product in terms of Memory Management and I don't understand how it passed quality control. Re: Global Datagen Ok, so I tweaked the code a bit: import demo.Greet (removed the soapui), and now I am getting a blank dialog box (attached). Thanks, Meera Re: Global Datagen Forgot to mention that the Greet.groovy is in the path: C:\ReadyAPI131\ReadyAPI-1.3.1\bin\scripts\soapui\demo Thanks.