Currently, the code looks like
ByteArrayOutputStream baos = new ByteArrayOutputStream();
exporter.setParameter(JRExporterParameter.OUTPUT_STREAM,baos);
exporter.exportReport();
response.current().print(baos);
I've tried passing response.out directly to JRExporter as well but
with no luck.
Still end up with the wrapper HTML and Body tags :(