Hi Ilker, Did you also put in the following line (which is also in the felix.config.properties.append file): org.osgi.framework.startlevel.beginning=81 This is needed to automatically start bundles with felix.auto.start.XX where XX can be up to 81 in this case.
BTW having two instances of Spring-DM active at the same time is a recipe for disaster as they will potentially both instantiate your Spring beans, so you'll get them twice. This is why the multibundle distro is generally better to use than the singlebundle distro. The singlebundle one is only really provided as a way get started easily... Hope this helps, David On 15 April 2010 14:23, olamalam <[email protected]> wrote: > > Hi David, > > I tried to install multi-bundle distribution according to this url: > http://cxf.apache.org/dosgi-multi-bundle-setup.html > > I've appended those lines to etc\config.properties file like: > ... > felix.auto.start.51=file:C:/apache-cxf-dosgi-ri-1.1/dosgi_bundles/geronimo-annotation_1.0_spec-1.1.1.jar > felix.auto.start.52=file:C:/apache-cxf-dosgi-ri-1.1/dosgi_bundles/geronimo-activation_1.1_spec-1.0.2.jar > felix.auto.start.53=file:C:/apache-cxf-dosgi-ri-1.1/dosgi_bundles/geronimo-javamail_1.4_spec-1.2.jar > ... > > > But those bundles weren't installed at start up even if I tweak file paths > to have correct cxf-dosgi installation path. > > Do you have any idea what did I do wrong? > > ps. I guess it also should have worked with single-bundle distribution. > http://cxf.apache.org/dosgi-spring-dm-demo-page.html says that: > It uses the CXF/DOSGi multi bundle distribution since that provides > Spring-DM as a dependency. > > I've already installed Spring-DM to karaf when I was trying to run this demo > with single-bundle dist. > > Kind regards > Ilker > > > > -- > View this message in context: > http://old.nabble.com/CXF-DOSGI-problem-while-running-Spring-DM-demo-tp28244542p28255215.html > Sent from the cxf-user mailing list archive at Nabble.com. > >
