
|
If you were logged in you would be able to see more operations.
|
|
|
|
In JasperReportsResult.java, line 64 reads
protected String IMAGES_URI = "/images/";
This is a bug, because WW search images in /images at the servlet container's root directory. A possible solution is:
protected String IMAGES_URI = request.getContextPath() + "/images/";
|
|
Description
|
In JasperReportsResult.java, line 64 reads
protected String IMAGES_URI = "/images/";
This is a bug, because WW search images in /images at the servlet container's root directory. A possible solution is:
protected String IMAGES_URI = request.getContextPath() + "/images/";
|
Show » |
|