Hello, I have issues on using Camel in Eclipse Equinox (my goal is to create Eclipse plugin with Camel support). First of all, I'm trying to run camel-example-osgi. I managed to run it under Apache Karaf, but not Eclipse.
I ran Eclipse, opened it's host OSGi console and installed necessary bundles (i tried to use pax-url-mvn bundle but it worked too long, so I have installed them manually through *install file:///...* ). In results of *ss* comand I can see: 1575 ACTIVE com.springsource.org.aopalliance_1.0.0 1576 ACTIVE commons-management_1.0.0 1580 ACTIVE org.apache.camel.camel-context_2.7.0 1581 ACTIVE org.apache.camel.camel-core_2.7.0 1582 ACTIVE org.apache.camel.camel-spring_2.7.0 1597 ACTIVE org.springframework.aop_3.0.5.RELEASE 1598 ACTIVE org.springframework.beans_3.0.5.RELEASE 1599 ACTIVE org.springframework.context_3.0.5.RELEASE 1600 ACTIVE org.springframework.core_3.0.5.RELEASE 1601 ACTIVE org.springframework.expression_3.0.5.RELEASE 1602 ACTIVE org.springframework.osgi.core_1.2.1 1603 ACTIVE org.springframework.osgi.io_1.2.1 1604 ACTIVE org.springframework.transaction_3.0.5.RELEASE 1613 ACTIVE org.springframework.asm_3.0.5.RELEASE 1614 ACTIVE org.apache.camel.camel-example-osgi_2.7.0 But there's no timed messages from Camel. I also tried to create custom Bundle-Activator and start CamelContext manually but still no result. What is the right way to launch Camel context? I'm not very experienced in OSGi and haven't found in equinox such way like *feature:install* in Karaf. Thanks, Vladimir.