ContributionsMost RecentMost LikesSolutionsRe: rawResponseData is null in a LoadTest I activated the option "Do not disable the Groovy log when running load test". I see the null value in the log console. For information, I tested on SoapUI 5.0.0 and 5.2.1 Thanks & Regards Julien Re: rawResponseData is null in a LoadTest Hi Rao, I tried your fix, but I still notice the same behavior. Thanks & Regards rawResponseData is null in a LoadTest Hi, I have a TestCase containing a REST Step and Groovy Script Step. The REST Step return a picture (Content-Type: image/png) The script needs to get the full response of the first REST step, including headers, as a byte array. (because i'am using a library later) This is the beginning of the scritp : def image = testRunner.testCase.testSteps['getGrid'].testRequest.response.rawResponseData log.info(image) The test suite works fine on a unitary launch. But when i create a LoadTest the script step fail because image var is null. Is there an other way to get the rawResponseData ? Thanks & Regards