Re: [osgi-dev] Integration with Karaf

2016-11-10 Thread David Leangen
> For anybody else confused by this thread, there are now two Tim Wards > apparently! Ahh! Now I understand!! :-) Hehehe. Thanks for pointing this out. The disadvantage of “David” is that there are too many of us. But I have an unusual last name, so at least there are not two of me

Re: [osgi-dev] Integration with Karaf

2016-11-10 Thread Tim Ward
On 10/11/2016 11:05, Tim Ward wrote: On 10/11/2016 10:26, Tim Verbelen wrote: Hi Tim, If you want to use some of the eclipse equinox bundles (such as org.eclipse.equinox.coordinator), you are kind of bound to the equinox framework since they depend on the org.eclipse.osgi.util package that

Re: [osgi-dev] Integration with Karaf

2016-11-10 Thread Tim Ward
On 10/11/2016 10:31, Neil Bartlett wrote: For anybody else confused by this thread, there are now two Tim Wards apparently! Oh yes, I had spotted that there was one already here, and had intended to say "this is a different one" in my first post to the list, but forgot to do so - sorry for

Re: [osgi-dev] Integration with Karaf

2016-11-10 Thread Tim Ward
On 10/11/2016 10:26, Tim Verbelen wrote: Hi Tim, If you want to use some of the eclipse equinox bundles (such as org.eclipse.equinox.coordinator), you are kind of bound to the equinox framework since they depend on the org.eclipse.osgi.util package that is provided by the equinox framework.

Re: [osgi-dev] Integration with Karaf

2016-11-10 Thread Tim Verbelen
Hi Tim, If you want to use some of the eclipse equinox bundles (such as org.eclipse.equinox.coordinator), you are kind of bound to the equinox framework since they depend on the org.eclipse.osgi.util package that is provided by the equinox framework. If you do want to run these on a

Re: [osgi-dev] Integration with Karaf

2016-11-10 Thread Christian Schneider
On 10.11.2016 10:55, Tim Ward wrote: Insofar as I understand any of what is going on, which is not very much, this sounds plausible - there does look like a bizarre mixture of equinox and felix components (although one of my colleagues says "that's not a problem as they all just implement

Re: [osgi-dev] Integration with Karaf

2016-11-10 Thread Guillaume Nodet
You asked how to solve the problem, I'm just answering. If you don't want to depend on Equinox framework, do not deploy bundles that do depend on it ;-) In this case, osgi.enroute.configurer.simple.provider depends on the equinox coordinator which depends on org.eclipse.equinox.util package

Re: [osgi-dev] Integration with Karaf

2016-11-10 Thread Tim Ward
On 10/11/2016 09:44, Christian Schneider wrote: It looks like you are installing a lot of bundles that are already present in apache karaf. These can conflict with the ones already present. The actual resolve problems you get are because you are missing some equinox bundles the bundle you try

Re: [osgi-dev] Integration with Karaf

2016-11-10 Thread Tim Ward
On 10/11/2016 09:43, Guillaume Nodet wrote: It seems you have a strong dependency on the Equinox OSGi framework. In Karaf, run the "framework equinox ;shutdown --reboot --force " commands and see if this is better. Thanks, but we are specifically and deliberately wanting to use Felix, and I

Re: [osgi-dev] Integration with Karaf

2016-11-10 Thread Christian Schneider
It looks like you are installing a lot of bundles that are already present in apache karaf. These can conflict with the ones already present. The actual resolve problems you get are because you are missing some equinox bundles the bundle you try to install need. Installing these will not fully

Re: [osgi-dev] Integration with Karaf

2016-11-10 Thread Guillaume Nodet
It seems you have a strong dependency on the Equinox OSGi framework. In Karaf, run the "framework equinox ; shutdown --reboot --force " commands and see if this is better. 2016-11-10 10:32 GMT+01:00 Tim Ward : > So, I've gone through the enRoute tutorials, which worked fine,