Erroneous Handlers - BIRT 3.7.1 [message #799822] |
Thu, 16 February 2012 06:03  |
Eclipse User |
|
|
|
Hi,
I am migrating from BIRT 2.6.1 to BIRT 3.7.1
I have removed old jar files from my lib directory (js.jar, commons-cli-1.0.jar and engineapi.jar)
and copied org.eclipse.birt.runtime_3.7.1.v20110913-1734.jar to the lib directory.
Other jar files were kept in CLASSPATH in Weblogic 10 server while starting up (startWebLogic.cmd) as below.
set BIRTENGINE=C:/birt-runtime-3_7_1/ReportEngine/lib
set BIRT_CLASSPATH=%BIRT_CLASSPATH%;%BIRTENGINE%\com.ibm.icu_4.4.2.v20110208.jar;%BIRTENGINE%\org.apache.commons.codec_1.3.0.v201101211617.jar;%BIRTENGINE%\*.jar;
set CLASSPATH=.;%CLASSPATH%;%BIRT_CLASSPATH%;
I have a BIRT utilities Java file which creates the report engine.
The code is as follows.
// Configure the BIRT Engine and start the BIRT Platform
EngineConfig config = new EngineConfig();
try {
Platform.startup(config);
IReportEngineFactory factory = (IReportEngineFactory) Platform
.createFactoryObject(IReportEngineFactory.EXTENSION_REPORT_ENGINE_FACTORY);
engine = factory.createReportEngine(config);
} catch (Exception exception) {
exception.printStackTrace();
throw new WrapperedException("ERROR during report engine start up", exception);
}
Platform.startup(config) is throwing the following exception always.
erroneous handlers
java.lang.InternalError: erroneous handlers
at org.eclipse.birt.core.framework.Platform.startup(Platform.java:75)
Please kindly let me know what changes I should make to make this work.
Thanks,
Sravan
|
|
|
|
|
|
|
Powered by
FUDForum. Page generated in 0.06348 seconds