Hi,
I'm using DM 2.0.0 release.
My application runs as web bundle and I'm trying to read resource from external JAR which was added to Bundle-Classpath and it does not work.
I added to MANIFEST.MF:
The resource is a clientinit.0 file in client-config.jar.Code:Bundle-ClassPath: .,/tmp/client-config.jar
The in bundle code:
I get null for 'in' variable.Code:ClassLoader cl = this.getClass().getClassLoader(); InputStream in = cl.getResourceAsStream("clientinit.0"); in = cl.getResourceAsStream("/clientinit.0");
When debugging, I see that 'cl' has the /tmp/client-config.jar in its' classpath member.
Please help !!!
Thanks,
Pavel


