I am currently using a JasperServer repository to hold reports. I would like to include an image of a logo in the upper-right hand corner of the report. However, every time I attempt to add an image to the resources I get an error that says:

Error:
1 - 0

Any guesses?

link|improve this question

65% accept rate
feedback

3 Answers

up vote 1 down vote accepted

The most likely reason for the error that you are seeing is that there's a problem with the web services configuration. The most likely problem is that the image is greater than 16Kb, so Axis needs to save the attachment to a temporary directory. A useful test is to make sure that images smaller than 16Kb work with no problems.

Your quickest workaround is to upload the picture via the JasperServer web UI. Then your report should work as expected. If so, it's also validation that the problem is with web services (not with the repository database or some other component).

The most likely permanent solution is to recursively change ownership of the directory .../webapps/jasperserver/. Or you might prefer to only chown .../webapps/jasperserver/WEB-INF/attachments. Or you could change the attachments directory by editing this line in server-config.wsdd:

<parameter name="attachments.Directory" value="attachments"/>
link|improve this answer
Uploaded via web ui worked. – Chris Mar 22 '11 at 16:39
feedback

Not a guess, but some instructions.

iReport

Create a new report in iReport:

  1. Set the query to: SELECT 1 AS unused.
  2. Click Read Fields.
  3. Close the Report query dialog.
  4. Add an image to the report.
  5. Change the Image Expression to: "repo:logo.png".
  6. Save the report as report1.jrxml.


Extracurricular Activities

There is an issue here. Running the same JRXML file in both iReport and JasperServer is not possible if both iReport and JasperServer are on the same operating system. If they are on different operating systems, you can use the following technique:

  1. Add an OS_WINDOWS parameter:
    new Boolean(
    System.getProperty( "os.name" ).toLowerCase().indexOf( "win" ) >= 0
    )
    
  2. Add a ROOT_DIR parameter:
    $P{OS_WINDOWS}.booleanValue() ?
    "/path/to/reports/" :
    "repo:"
    
  3. Add an IMAGES_DIR parameter:
    $P{OS_WINDOWS}.booleanValue() ?
    "images/" : ""
    
  4. Change Image Expression from "repo:logo.png" to:
    $P{ROOT_DIR} + $P{IMAGES_DIR} + "logo.png"
    

As long as you have logo.png at "/path/to/reports/images/logo.png", iReport will find the image. As long as JasperServer is installed on a non-Windows machine, JasperServer will look for the image in its repository. Architecturally, I believe this is a shortcoming of JasperServer.

JasperSoft is aware of the situation. You can probably call a custom Java class to determine the environment, rather than depending on the operating system type. I did not investigate that possibility. Moving along, then...


JasperServer

Browse to your JasperServer installation:

  1. Login as a user that can create reports.
  2. Right-click on a folder (e.g., Canned Reports -- create it if you need to) for your reports.
  3. Select Add Folder.
  4. Name the new folder images.
  5. Right-click the images folder.
  6. Select Add Resource » Image.
  7. Click Browse.
  8. Find and select an image (e.g., logo.png).
  9. Click Next.
  10. Set Name to: logo.png
  11. Set Label to: logo.png
  12. Click Save.
  13. Right-click on Canned Reports (see step 2).
  14. Select Add Resource » JasperServer Report.

This will open the Report Wizard Dialog.

  1. Set Name to: report1
  2. Set Label to: report1
  3. Click Next.
  4. Click Browse.
  5. Find and select report1.jrxml.
  6. Click Open.
  7. Click Next.
  8. Click Add Resource.
  9. Click From the Repository.
  10. Select logo.png.
  11. Click Next.
  12. Set Name to: logo.png
  13. Set Label to: logo.png
  14. Click Next.
  15. Click Next again.
  16. Choose your data source (from the repository).
  17. Click Finish.
  18. Click Save. (However redundant...)

Run the report.

The image should appear.

link|improve this answer
feedback

This is how I did it:

  1. Create a report on Ireport with a picture on it (e.g. logo.jpg)
  2. Edit the .jrxml file using a text editor.
  3. Search for the image file name. You will find the file name (with full path) in a cdata tag
  4. Change it to <![CDATA["repo:logo.jpg"]]>
  5. Save and Upload the report to the JasperServer
  6. Edit the report and choose Controls & Resources.
  7. Add a resource, select the image file (e.g. logo.jpg) and name it exactly as logo.jpg.
  8. Submit and... run... the report :) When you open the file again on iReport, it will only show an image generic icon...
link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.