You are viewing a plain text version of this content. The canonical link for it is here.
Posted to users@servicemix.apache.org by gnanda1 <gi...@hotmail.com> on 2010/09/21 23:58:55 UTC

smx 4.2:installing camel features by creating features.xml file

Hi All, 
  I am trying to install following camel components by doing hot deployment
of a features.xml file (by dropping camel_features.xml file under deploy
directory) with no success

camel-jms
camel-nmr
camel-http


here is the content of my camel_features.xml file

<?xml version="1.0" encoding="UTF-8"?>
<features>
  <feature name="camel-bundle">
   
<bundle>mvn:org.apache.camel.karaf/apache-camel/2.2.0/xml/features</bundle>
     <feature>camel-http</feature>
    <feature>camel-jms</feature>
    <feature>camel-nmr</feature>
  </feature>
</features>

Any suggestion will be highly appreciated.

I am able to install the above features by running following command from
karaf console
osgi:install camel-nmr
osgi:install camel-jms
osgi:install camel-http

I would like to wrap these as one feature and install them by dropping a
file in deploy directory to automate the process

-- 
View this message in context: http://servicemix.396122.n5.nabble.com/smx-4-2-installing-camel-features-by-creating-features-xml-file-tp2848920p2848920.html
Sent from the ServiceMix - User mailing list archive at Nabble.com.

Re: smx 4.2:installing camel features by creating features.xml file

Posted by gnanda1 <gi...@hotmail.com>.
the camel features got loaded by using following syntax in the features.xml
file

<?xml version="1.0" encoding="UTF-8"?>
<features>
  <feature name="camel-bundle">
   
<repository>mvn:org.apache.camel.karaf/apache-camel/2.2.0/xml/features</repository>
     <feature>camel-http</feature>
    <feature>camel-jms</feature>
    <feature>camel-nmr</feature>
  </feature>
</features>

Thanks
-- 
View this message in context: http://servicemix.396122.n5.nabble.com/smx-4-2-installing-camel-features-by-creating-features-xml-file-tp2848920p2849819.html
Sent from the ServiceMix - User mailing list archive at Nabble.com.