ContributionsMost RecentMost LikesSolutionsreplace > in xml response <SourceClass>R</SourceClass><Source> How do I get rid/ convert < >: in xml response when using the JBDC to fetch the data from DB in REST API Re: Saving the response results which is more than 1KB only I am using the SOAP UI, but REST services. I don't see the option 'TestRequest Property' Can you pl share more info on this Re: Saving the response results which is more than 1KB only I have Test Suite something like below TestSuite1 a. Add Delay1 b. Update Delay2 c. Delete d. Savetofile (This will save all the above request and response to a xml) I would like to save only Add, Delete, Update and not Delay 1 & 2 Re: Saving the response results which is more than 1KB only Hi Richie, I am using Soap 5.5. As I mentioned, I have couple of Delay Statements which will not generate response, when I save the Test Suite I don't want to save these Thank's for look into this issue Saving the response results which is more than 1KB only Hi All, I have Test Suite which has couple of Delay statements, when I saving the response of the Test Suite to a external / local folder I do have bunch of xml response which are of 0KB. Appreciate if you can provide solution to drop or ignore any response which is less then 0 KB Re: Blank JDBC response when saved to a file I was able to resolve the issue Re: Blank JDBC response when saved to a file Step 1: I am able to fetch the results using JDBC query Step 2: Able to export the file to local machine Step3. My file is blank with no data Below is the snippet I am using def ReqFile ="C:/Test/ReqFile1.xml" def Req = context.expand( '${JDBC#Request}' ) def i = new File(ReqFile ) i.write(Req, "UTF-8") def ResFile ="C:/Test/Response1.xml" def Res = context.expand( '${JDBC#Response}' ) def j = new File(ResFile) j.write(Res, "UTF-8") Below is the JDBC request and output Note: Important I need the Results/Response set to be stored in local Blank JDBC response when saved to a file The JDBC results are blank when saved in SOAP/REST UI 5.5. The result set has only is 1 or 2 lines Looking for solutions.