[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index] [Newsgroup Home]
[news.eclipse.birt] Re: Report internationalization in RCP application

Are you using the report engine api or viewer urls?
If you are using the RE API, try


config = new EngineConfig();
HashMap hm = config.getAppContext();
hm.put( EngineConstants.APPCONTEXT_CLASSLOADER_KEY, MyClass.class.getClassLoader());
config.setAppContext(hm);


Where my MyClass is the class that is starting/using the engine. This will set the parent classloader for the report engine to the classloader of this class and should find your properties.

Jason

Loïc Bertholet wrote:
Anyone can help me on this topic please ?
Thanks.