LoadingByteArrayOutputStream bos = new LoadingByteArrayOutputStream();
InputStream is = method.getResponseBodyAsStream();
IOUtils.copy(is, bos);
bos.flush();
is.close();
out.setBody(bos.createInputStream());
} finally {
method.releaseConnection();
}
// lets set the headers