HttpResponse response = this.getResponse(uri);
Long content_length = response.getHeaders().getContentLength();
if (content_length == null || content_length.intValue() <= 0) {
throw new HttpException("Received a 200 response for " + uri
+ " but there was no message body.", 200, uri.toURL());
}
String body = WebServiceClient.getSuccessBody(response, uri);
InjectableValues inject = new InjectableValues.Std().addValue(