Jump to content
We've recently updated our Privacy Statement, available here ×

pajarokillo

Members
  • Posts

    3
  • Joined

  • Last visited

 Content Type 

Profiles

Forum

Events

Featured Visualizations

Knowledge Base

Documentation (PDF Downloads)

Blog

Documentation (Test Area)

Documentation

Dr. Jaspersoft Webinar Series

Downloads

Everything posted by pajarokillo

  1. yes, i had already exported to a in-memory buffer and set the content length for the response, my portion of code when i do that is the following: byte[] bytes = null; bytes = report.getReport(); if(bytes != null && bytes.length > 0){ response.setContentType("application/pdf"); response.setContentLength(bytes.length); ServletOutputStream outputStream = response.getOutputStream(); outputStream.write(bytes,0,bytes.length); outputStream.flush(); outputStream.close();
  2. Ok, excuse me, i might have detailed more my problem. I execute my report from a servlet, and i set the content type to "application/pdf". Then, from my Jsp page i open a window that call to servlet and display the report in PDF format. I have installed Acrobat 7.0 and it works correctly, i can see my report, but when i try it in other machine that it has installed Acrobat 6.0 or less, it don't work, the report is blank, and it don't give me any exception. I don't know if i explain me better, my english isn't good. Thanks. Post edited by: pajarokillo, at: 2006/09/27 13:25
  3. Hi!, i'm working with jasperreports-1.2.1 library, and i have developed a report that works fine with Acrobat 7.0 but with Acrobat 6.0 it don't work. Somebody knows the problem?. Thank you.
×
×
  • Create New...