Not a guess, but some instructions.
iReport
Create a new report in iReport:
- Set the query to:
SELECT 1 AS unused.
- Click Read Fields.
- Close the Report query dialog.
- Add an image to the report.
- Change the Image Expression to:
"repo:logo.png".
- 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:
- Add an
OS_WINDOWS parameter:
new Boolean(
System.getProperty( "os.name" ).toLowerCase().indexOf( "win" ) >= 0
)
- Add a
ROOT_DIR parameter:
$P{OS_WINDOWS}.booleanValue() ?
"/path/to/reports/" :
"repo:"
- Add an
IMAGES_DIR parameter:
$P{OS_WINDOWS}.booleanValue() ?
"images/" : ""
- 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:
- Login as a user that can create reports.
- Right-click on a folder (e.g.,
Canned Reports -- create it if you need to) for your reports.
- Select Add Folder.
- Name the new folder
images.
- Right-click the images folder.
- Select Add Resource » Image.
- Click Browse.
- Find and select an image (e.g.,
logo.png).
- Click Next.
- Set Name to: logo.png
- Set Label to: logo.png
- Click Save.
- Right-click on Canned Reports (see step 2).
- Select Add Resource » JasperServer Report.
This will open the Report Wizard Dialog.
- Set Name to: report1
- Set Label to: report1
- Click Next.
- Click Browse.
- Find and select report1.jrxml.
- Click Open.
- Click Next.
- Click Add Resource.
- Click From the Repository.
- Select logo.png.
- Click Next.
- Set Name to: logo.png
- Set Label to: logo.png
- Click Next.
- Click Next again.
- Choose your data source (from the repository).
- Click Finish.
- Click Save. (However redundant...)
Run the report.
The image should appear.