Hi!!

I generated a file jrxml using the iReport 3.0.0 and when I try to print the
report in a servlet the html doesn't show the images of a 3D Chart,

This is the code in my servlet

         JasperReport jasperReport =
JasperCompileManager.compileReport(jrxmlPath);
         JasperPrint jasperPrint =
JasperFillManager.fillReport(jasperReport, parameters, getConnection());
         JRHtmlExporter exporter = new JRHtmlExporter();

request.getSession().setAttribute(ImageServlet.DEFAULT_JASPER_PRINT_SESSION_ATTRIBUTE,
jasperPrint);
         exporter.setParameter(JRExporterParameter.JASPER_PRINT,
jasperPrint);
         exporter.setParameter(JRExporterParameter.OUTPUT_WRITER, out);

exporter.setParameter(JRHtmlExporterParameter.IS_OUTPUT_IMAGES_TO_DIR,Boolean.FALSE);
         exporter.exportReport();


My project uses the library 3.1.3

Thanks

Esau
------------------------------------------------------------------------------
Create and Deploy Rich Internet Apps outside the browser with Adobe(R)AIR(TM)
software. With Adobe AIR, Ajax developers can use existing skills and code to
build responsive, highly engaging applications that combine the power of local
resources and data with the reach of the web. Download the Adobe AIR SDK and
Ajax docs to start building applications today-http://p.sf.net/sfu/adobe-com
_______________________________________________
jasperreports-questions mailing list
jasperreports-questions@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/jasperreports-questions

Reply via email to