Separate DLL and native call in different plugin - Stack Overflow most recent 30 from stackoverflow.com 2009-12-10T14:39:47Z http://stackoverflow.com/feeds/question/649785 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/649785/separate-dll-and-native-call-in-different-plugin 1 Separate DLL and native call in different plugin Markus Lausberg 2009-03-16T09:49:54Z 2009-07-21T14:21:39Z <p>I want to separate some DLLs from the associated native JNI classes.</p> <p>Plugins:</p> <ul> <li>In plugin A the dlls are placed and loaded when the plugin is loaded. </li> <li>In plugin B (depend on A) the JNI classes are placed which include the native method calls for the DLLs in A.</li> </ul> <p>At runtime i get a UnsatisfiedLinkError because the JNI class can't be found. I try to update the classloader logic by updating the MANIFEST files:</p> <p>Plugin A:</p> <pre><code>Eclipse-BuddyPolicy: registered </code></pre> <p>Plugin B:</p> <pre><code>Eclipse-RegisterBuddy: A </code></pre> <p>But this is also not working. Do you know a solution?</p> <p>EDIT:</p> <p>MANIFEST A:</p> <pre><code>Manifest-Version: 1.0 Bundle-ManifestVersion: 2 Bundle-Name: %plugin.name Bundle-SymbolicName: xxx ;singleton:=true Bundle-Version: 1.0.0 Bundle-Activator: xxx.Plugin Bundle-Vendor: xxx Bundle-Localization: plugin Bundle-NativeCode: native/dll/x1.dll; native/dll/x2.dll; native/dll/x3.dll; native/dll/x4.dll; native/dll/x5.dll; native/dll/x76.dll; native/dll/x.dll; native/dll/x7.dll;osname = win32; processor = x86 Require-Bundle: org.eclipse.core.runtime, org.eclipse.ui, org.apache.commons.logging Bundle-ClassPath: . Eclipse-AutoStart: true Eclipse-LazyStart: true Bundle-ActivationPolicy: lazy Eclipse-BuddyPolicy: registered Export-Package: xxx </code></pre> <p>MANIFEST B:</p> <pre><code>Manifest-Version: 1.0 Bundle-ManifestVersion: 2 Bundle-Name: %plugin.name Bundle-SymbolicName: xxx;singleton:=true Bundle-Version: 2.1.16 Bundle-Vendor: xxx Bundle-Localization: plugin Require-Bundle: org.eclipse.core.runtime, org.eclipse.ui, org.apache.commons.lang, org.apache.commons.logging, A Export-Package: xxx Bundle-ClassPath: . Bundle-Activator: xxx Eclipse-RegisterBuddy: A Eclipse-AutoStart: true Eclipse-LazyStart: true Bundle-ActivationPolicy: lazy </code></pre> http://stackoverflow.com/questions/649785/separate-dll-and-native-call-in-different-plugin/656132#656132 1 Answer by Chamelaeon for Separate DLL and native call in different plugin Chamelaeon 2009-03-17T21:36:18Z 2009-03-17T21:36:18Z <p>My immediate suggestion is to turn plugin B into a fragment for plugin A rather than a separate plugin, which would eliminate the issues.</p> <p>That said, I think you have your manifests switched; plugin B which is attempting to perform the JNI calls should have <code>Eclipse-BuddyPolicy:registered</code>, and plugin A should be depending on and registering with plugin B.</p> <p>That said, after reading <a href="http://wiki.eclipse.org/index.php/Context_Class_Loader_Enhancements" rel="nofollow">the buddyloading docs</a>, I'm not certain that the buddyloading policy works for non-Java class files.</p>