-1

When i tried to install camel-hazelcast 2.15.2 feature in apache karaf 3.0.4 it gives the below error, how to resolve it kindly help to resolve this

karaf@root()> feature:install camel-hazelcast

Error executing command: Can't install feature camel-hazelcast/0.0.0: Manifest not present in the zip mvn:org.apache.aries.transaction/org.apache.aries.transaction.blueprint/1.0.2

Community
  • 1
  • 1
Satiz
  • 17
  • 6
  • A good idea is to tell us exactly which versions of what you are using, in case anyone want to try to reproduce this, and help you. – Claus Ibsen Aug 03 '15 at 07:41
  • I'm Using apache karaf 3.0.4 and camel-hazelcast 2.15.2 – Satiz Aug 04 '15 at 08:50
  • Any Updates on this issue ? – Satiz Aug 10 '15 at 07:01
  • Delete karaf and try again. Maybe the downloaded zip is corrupt. – Claus Ibsen Aug 10 '15 at 09:40
  • Steps I followed to install camel-hazelcast D:\Working\tools\apache-karaf-3.0.4\bin>karaf karaf@root()> list START LEVEL 100 , List Threshold: 50 ID | State | Lvl | Version | Name --------------------------------- karaf@root()> feature:list | grep camel karaf@root()> feature:repo-add camel 2.15.2 Adding feature url mvn:org.apache.camel.karaf/apache-camel/2.15.2/xml/features – Satiz Aug 10 '15 at 10:45
  • karaf@root()> feature:install camel-hazelcast Error executing command: Can't install feature camel-hazelcast/0.0.0: Manifest not present in the zip mvn:org.apache.aries.transaction/org.apache.aries.transaction.blueprint/1.0.2 karaf@root()> feature:install camel-core karaf@root()> list START LEVEL 100 , List Threshold: 50 ID | State | Lvl | Version | Name -------------------------------------------------- 81 | Active | 50 | 2.15.2 | camel-core 82 | Active | 50 | 2.15.2 | camel-catalog 83 | Active | 50 | 2.15.2 | camel-commands-core 84 | Active | 50 | 2.15.2 | camel-karaf-commands – Satiz Aug 10 '15 at 10:47
  • @ClausIbsen Am I following the right way please kindly guide me . – Satiz Aug 10 '15 at 10:48

1 Answers1

1

It must be a problem on your end. Maybe the downloaded zip is corrupt.

Delete karaf and install it again.

Also try install other Camel components to see if they work. It may be a problem if your computer uses HTTP proxy to access the internet, then you need to configure this.

karaf@root()> feature:repo-add camel 2.15.2 Adding feature url mvn:org.apache.camel.karaf/apache-camel/2.15.2/xml/features karaf@root()> feature:install camel-hazelcast karaf@root()> la | grep -i camel 70 | Active | 50 | 2.15.2 | camel-core 71 | Active | 50 | 2.15.2 | camel-catalog 72 | Active | 50 | 2.15.2 | camel-commands-core 73 | Active | 50 | 2.15.2 | camel-karaf-commands 80 | Active | 50 | 2.15.2 | camel-hazelcast

Claus Ibsen
  • 56,060
  • 7
  • 50
  • 65