| [news.eclipse.platform] Re: RCP, JasperReports and classloader |
Hi Dara,
I had the same problem. I added following lines to my code.
Thread cur = Thread.currentThread(); ClassLoader save = cur.getContextClassLoader(); cur.setContextClassLoader(JasperCompileManager.class.getClassLoader());
I found this solution on this group (or on the eclipse.platform.rcp)
Later, PW