I can't seem to get a simple jar to load in my report. It works locally in Birt Designer, as I set the classpath to it. But when I upload to iHub, it can't seem to find it. I've put it in several locations:
/home/admin/BIRTiHubVisualization/modules/BIRTiHub/iHub/web/iportal/scriptlib
/home/admin/BIRTiHubVisualization/modules/BIRTiHub/iHub/resources
/home/admin/BIRTiHubVisualization/modules/BIRTiHub/iHub/jar
/home/admin/BIRTiHubVisualization/modules/BIRTiHub/iHub/jar/BIRT/lib
And always get...
ReferenceError: "ReportVerify" is not defined. (/report/method[@name="beforeFactory"]#7)
Also have tried to attach it to the report and put it the resources folder, nothing works. Attached report design, won't let me upload jar but its just a simple:
package birt.report.reportverify2;
public class ReportVerify {
public ReportVerify() {
System.out.println("test");
}
}
Any help would be super appreciated.