ContributionsMost RecentMost LikesSolutionsGet the response and request number of bytesHi, I want to get the Number of bytes send and the number of bytes received for the request and response. I want to do it throught groovy script. I get the Response time: testRequest.response.getTimeTaken() but how will i get the bytes received and send using the groovy script. Thanks, Kiran KChange the XML Request tags using the Groovy Scripts.Hi, I have Date node 2009-12-16T00:00:00.000-06:00 which accepts datetime now in some case i want to send the null value to this date tag i pass it like this 2009-12-16T00:00:00.000-06:00 Now this I do manually, but I want to automate my Script and now I want to change the Tag using the Groovy script then how should I acheive it. Regards, Kiran KSave the Raw XML of the Request and Response of the SOAP UIHi, I am using the following code to save the request and the response in the XML file. It works fine but I want to save the Raw data instead of the XML. how can I do this. def testRequest = testRunner.testCase.testSteps["Create"].testRequest def file = new PrintWriter("C:/Request.xml") log.info(testRequest.response.contentAsString) file.println( testRequest.requestContent ) file.println( "==============End of Request=============") file.println( testRequest.response.contentAsString ) file.flush() file.close() This code saves the XML Request and Response, but I want to Save the Raw Data in the File. Regards, Kiran KTesting the Windows Communication Foundation (WCF) servicesHi, I want to test the Windows Communication Foundation (WCF) services using the SOAP UI. Do the SOAP UI supports the WCF services for testing? So any one has tested the WCF services using the SOAP UI? If any one tested then let me know. Thanks Kiran K