JMeter: Get HTTP response from Beanshell Post-Processor Feb 26, 2018 Here is a way to get the HTTP response as a String in a Beanshell Post-Processor: String httpResponseBody = new String(ctx.getPreviousResult().getResponseData()); log.info("HTTP Response Body: "+httpResponseBody);