1 2 Previous Next 17 Replies Latest reply on Jul 2, 2012 6:36 AM by iocanel

    Installing the CBR example using FAB fails

    bvahdat

      Hi

       

      Trying to install the CBR example inside fuse-esb-7.0.0.fuse-061 ends up with:

       

      FuseESB:karaf@root> osgi:install -s fab:mvn:org.fusesource.examples/cbr/7.0.0.fuse-061

      Bundle IDs:

      Error executing command: Error installing bundles:

              Unable to install bundle fab:mvn:org.fusesource.examples/cbr/7.0.0.fuse-061

       

       

      The problem seems to be similar to:

      http://fusesource.com/issues/browse/ECLIPSE-749

       

      As the root cause exception inside fuseesb.log is the same:

       

      org.apache.karaf.shell.console.MultiException: Error installing bundles:

           Unable to install bundle fab:mvn:org.fusesource.examples/cbr/7.0.0.fuse-061

           at org.apache.karaf.shell.console.MultiException.throwIf(MultiException.java:91)

           at org.apache.karaf.shell.osgi.InstallBundle.doExecute(InstallBundle.java:70)[35:org.apache.karaf.shell.osgi:2.2.5.fuse-7-061]

           at org.apache.karaf.shell.console.OsgiCommandSupport.execute(OsgiCommandSupport.java:38)[19:org.apache.karaf.shell.console:2.2.5.fuse-7-061]

           at org.apache.felix.gogo.commands.basic.AbstractCommand.execute(AbstractCommand.java:35)[19:org.apache.karaf.shell.console:2.2.5.fuse-7-061]

           at org.apache.felix.gogo.runtime.CommandProxy.execute(CommandProxy.java:78)[19:org.apache.karaf.shell.console:2.2.5.fuse-7-061]

           at org.apache.felix.gogo.runtime.Closure.executeCmd(Closure.java:474)[19:org.apache.karaf.shell.console:2.2.5.fuse-7-061]

           at org.apache.felix.gogo.runtime.Closure.executeStatement(Closure.java:400)[19:org.apache.karaf.shell.console:2.2.5.fuse-7-061]

           at org.apache.felix.gogo.runtime.Pipe.run(Pipe.java:108)[19:org.apache.karaf.shell.console:2.2.5.fuse-7-061]

           at org.apache.felix.gogo.runtime.Closure.execute(Closure.java:183)[19:org.apache.karaf.shell.console:2.2.5.fuse-7-061]

           at org.apache.felix.gogo.runtime.Closure.execute(Closure.java:120)[19:org.apache.karaf.shell.console:2.2.5.fuse-7-061]

           at org.apache.felix.gogo.runtime.CommandSessionImpl.execute(CommandSessionImpl.java:89)[19:org.apache.karaf.shell.console:2.2.5.fuse-7-061]

           at org.apache.karaf.shell.console.jline.Console.run(Console.java:226)[19:org.apache.karaf.shell.console:2.2.5.fuse-7-061]

           at java.lang.Thread.run(Thread.java:662)[:1.6.0_32]

      Caused by: java.lang.Exception: Unable to install bundle fab:mvn:org.fusesource.examples/cbr/7.0.0.fuse-061

           at org.apache.karaf.shell.osgi.InstallBundle.doExecute(InstallBundle.java:45)[35:org.apache.karaf.shell.osgi:2.2.5.fuse-7-061]

           ... 11 more

      Caused by: org.osgi.framework.BundleException: Unable to cache bundle: fab:mvn:org.fusesource.examples/cbr/7.0.0.fuse-061

           at org.apache.felix.framework.Felix.installBundle(Felix.java:2780)[org.apache.felix.framework-4.0.3.fuse-7-061.jar:]

           at org.apache.felix.framework.BundleContextImpl.installBundle(BundleContextImpl.java:165)[org.apache.felix.framework-4.0.3.fuse-7-061.jar:]

           at org.apache.karaf.shell.osgi.InstallBundle.doExecute(InstallBundle.java:43)[35:org.apache.karaf.shell.osgi:2.2.5.fuse-7-061]

           ... 11 more

      Caused by: java.net.MalformedURLException: Unknown protocol: fab

           at java.net.URL.(HttpClient.java:227)[:1.6.0_32]

           at sun.net.www.http.HttpClient.New(HttpClient.java:300)[:1.6.0_32]

           at sun.net.www.http.HttpClient.New(HttpClient.java:317)[:1.6.0_32]

           at sun.net.www.protocol.http.HttpURLConnection.getNewHttpClient(HttpURLConnection.java:970)[:1.6.0_32]

           at sun.net.www.protocol.http.HttpURLConnection.plainConnect(HttpURLConnection.java:911)[:1.6.0_32]

           at sun.net.www.protocol.http.HttpURLConnection.connect(HttpURLConnection.java:836)[:1.6.0_32]

           at sun.net.www.protocol.http.HttpURLConnection.getInputStream(HttpURLConnection.java:1172)[:1.6.0_32]

           at java.net.HttpURLConnection.getResponseCode(HttpURLConnection.java:379)[:1.6.0_32]

           at org.apache.maven.wagon.providers.http.LightweightHttpWagon.fillInputData(LightweightHttpWagon.java:115)[94:org.fusesource.fabric.fab.fab-osgi:7.0.0.fuse-061]

           ... 7 more

       

       

      My box setup is as following:

       

      Apache Maven 3.0.4 (r1232337; 2012-01-17 09:44:56+0100)

      Maven home: P:\My Documents\dev\env\apache-maven-3.0.4\bin\..

      Java version: 1.6.0_32, vendor: Sun Microsystems Inc.

      Java home: C:\Program Files\Java\jdk1.6.0_32\jre

      Default locale: de_CH, platform encoding: Cp1252

      OS name: "windows xp", version: "5.1", arch: "x86", family: "windows"

       

      Babak

        • 1. Re: Installing the CBR example using FAB fails
          iocanel

          Hi Babak,

           

          In a vanilla Fuse ESB the cbr example using fab, should work without issues, provided that your environment is configured in such a way to allow Fuse ESB to find the artifact (be able to access http://repo.fusesource.com/nexus/content/groups/public/).

           

          Please note, that if you are using Fabric, its recommended to define the fab inside a profile and not use directly the osgi commands.

          • 2. Re: Installing the CBR example using FAB fails
            bvahdat

            Yes that Maven Repo is already defined inside my settings.xml

             

            I followed the README instructions for that example.

             

            And as I've already said I don't try this example using Fuse Fabric BUT Fuse ESB Enterprise including the example being mentioned.

             

            Babak

            • 3. Re: Installing the CBR example using FAB fails
              bvahdat

              Hi again,

               

              I did try running the same example under OS X which worked like a charm

               

              Have got no idea why it didn't work under Windows. Anyway we all know that Windows has been always a special case

               

              BTW looking at:

               

              https://github.com/fusesource/fuse/blob/master/examples/cbr/pom.xml

               

              The Fusesource repos are already defined explicitly so that I would say no extra action should be taken to make the example work (for example defining them by hand inside settings.xml and whatnot). As I assume that as FAB does the Jar => Bundle conversion, somehow it takes over the extra Repo definitions as well so they get considered as well. I'm not familiar with it's implementation though.

               

              Babak

               

              Edited by: bvahdat on Jun 27, 2012 5:19 PM

              • 4. Re: Installing the CBR example using FAB fails
                gertv

                Babak,

                 

                 

                If you want to take a peek at the FAB codebase, you can find that at https://github.com/fusesource/fuse - the current implementation does not look at the POM files for obtaining repository links but looks at the etc/org.ops4j.pax.url.cfg file instead.

                 

                We could make it an option to leverage those repository definitions as well but I don't think we want to enable that by default - while it makes sense to do that on a developer machine, in most production environments you don't want to deploy artifacts that start downloading stuff from the internet directly.

                 

                 

                Wdyt?

                 

                Gert

                • 5. Re: Installing the CBR example using FAB fails
                  bvahdat

                  Hi Gert,

                   

                  Thanks for the hint, I looked at that file you did mention. I think you meant:

                   

                  etc/org.ops4j.pax.url.mvn.cfg

                   

                  Right? Now it becomes a bit more clear to me how it works

                   

                  +1 to provide an option which would leverage those repository definitions inside the given application POMs as well. Maybe through some properties users define inside their POMs like:

                   

                  <org.fusesource.fabric.fab.includes.repo>true</org.fusesource.fabric.fab.includes.repo>

                   

                  making FAB leveraging the extra user Repos as well.

                   

                  Babak

                   

                  Edited by: bvahdat on Jun 28, 2012 9:50 AM

                  • 6. Re: Installing the CBR example using FAB fails
                    bvahdat

                    Hi

                     

                    I just gave a test spin for the same example using another Windows box of mine (Windows Vista). The result is the same: The example doesn't work!

                     

                    Again I went through the steps as described here:

                     

                    https://github.com/fusesource/fuse/blob/master/examples/cbr/README.md

                     

                    The example works on OS X but not on Windows (Windows Vista & Windows XP). See also the screenshot being attached.

                     

                    And my box setup is:

                     

                    c:\dev\fuse-esb-7.0.0.fuse-061\examples\cbr>mvn -version

                    Apache Maven 3.0.4 (r1232337; 2012-01-17 09:44:56+0100)

                    Maven home: C:\dev\maven\bin\..

                    Java version: 1.6.0_32, vendor: Sun Microsystems Inc.

                    Java home: C:\dev\jdk1.6\jre

                    Default locale: de_CH, platform encoding: Cp1252

                    OS name: "windows vista", version: "6.0", arch: "x86", family: "windows"

                     

                    BTW I'm not behind a HTTP-Proxy, Firewall or the likes and I CAN access

                     

                    http://repo.fusesource.com/nexus/content/groups/public

                     

                    Through my browser.

                     

                    Babak

                     

                    Edited by: bvahdat on Jul 1, 2012 10:06 AM

                    • 7. Re: Installing the CBR example using FAB fails
                      iocanel

                      Hi Babak,

                       

                      It seems like the fab url handler is not present in your system. Could you please check if the fabric-bundle feature is installed?

                      • 8. Re: Installing the CBR example using FAB fails
                        bvahdat

                        Just right before did try the EIP example on Windows:

                         

                        https://github.com/fusesource/fuse/tree/master/examples/eip

                         

                        Which doesn't work as well and the root exception is again the same:

                         

                        Caused by: java.net.MalformedURLException: Unknown protocol: fab

                         

                        Babak

                        • 9. Re: Installing the CBR example using FAB fails
                          iocanel

                          Can you please provide the list of installed features?

                          • 10. Re: Installing the CBR example using FAB fails
                            bvahdat

                            Hi Ioannis,

                             

                            I'm a real newbie to OSGi so please be a bit patient with me

                             

                            If I understand you right the following command should show something being installed but it does NOT:

                             

                            FuseESB:karaf@root> osgi:list | grep fabric

                            FuseESB:karaf@root>

                             

                            Is this what you wanted me to check? And what confuses me is that following exactly the same steps on OS X works out of the box!

                             

                            Any idea?

                            • 11. Re: Installing the CBR example using FAB fails
                              bvahdat

                              Is this what you asked for?

                               

                              FuseESB:karaf@root> osgi:list

                              START LEVEL 100 , List Threshold: 50

                                 ID   State         Blueprint      Spring    Level  Name

                              Apache Karaf :: Shell :: Main shell (2.2.5.fuse-7-061)

                              Fuse Fabric :: Maven Proxy (7.0.0.fuse-061)

                              Fuse Fabric :: Core Agent SSH (7.0.0.fuse-061)

                              OPS4J Pax Swissbox - Property (1.2.0)

                              OPS4J Base - Monitors (1.2.2)

                              OPS4J Pax Swissbox :: Optional JCL (1.3.1)

                              Fuse Application Bundles :: OSGi (7.0.0.fuse-061)

                              OPS4J Base - Util - Property (1.2.2)

                              OPS4J Base - Lang (1.2.2)

                              OPS4J Base - Net (1.2.2)

                              Fuse Patch :: Commands (7.0.0.fuse-061)

                              Fuse Patch :: Core (7.0.0.fuse-061)

                              Apache Aries Transaction Manager (0.3.0)

                              kahadb (5.5.1.fuse-7-061)

                              activemq-pool (5.5.1.fuse-7-061)

                              activemq-console (5.5.1.fuse-7-061)

                              activemq-ra (5.5.1.fuse-7-061)

                              activemq-core (5.5.1.fuse-7-061)

                              activemq-karaf (5.5.1.fuse-7-061)

                              geronimo-j2ee-management_1.1_spec (1.0.1)

                              Apache ServiceMix :: Bundles :: xpp3 (1.1.0.4c_5)

                              Commons Pool (1.5.4)

                              Commons Collections (3.2.1)

                              geronimo-jms_1.1_spec (1.1.1)

                              Apache ServiceMix Bundles: dom4j-1.6.1 (1.6.1.2)

                              Apache ServiceMix Bundles: oro-2.0.8 (2.0.8.3)

                              Apache ServiceMix Bundles: xstream-1.3 (1.3.0.3)

                              Apache ServiceMix :: Bundles :: jdom (1.1.0.4)

                              Apache ServiceMix :: Bundles :: velocity (1.7.0.1)

                              activemq-spring (5.5.1.fuse-7-061)

                              Apache XBean :: Spring (3.9.0)

                              Fuse Fabric :: Cluster Groups API (7.0.0.fuse-061)

                              activemq-blueprint (5.5.1.fuse-7-061)

                              Apache XBean :: OSGI Blueprint Namespace Handler (3.9.0)

                              Commons JEXL (2.0.1)

                              Fuse MQ :: Fabric (7.0.0.fuse-061)

                              camel-karaf-commands (2.9.0.fuse-7-061)

                              camel-core (2.9.0.fuse-7-061)

                              camel-spring (2.9.0.fuse-7-061)

                              camel-jms (2.9.0.fuse-7-061)

                              activemq-camel (5.5.1.fuse-7-061)

                              Apache ServiceMix :: Bundles :: opensaml (2.5.1.2)

                              Joda-Time (1.6.2)

                              WSS4J (1.6.5)

                              Apache XML Security for Java (1.5.1)

                              Axiom API (1.2.10)

                              Abdera Parser (1.1.2)

                              Axiom Impl (1.2.10)

                              Abdera Extensions - Main (1.1.2)

                              I18N Libraries (1.1.2)

                              Abdera Core (1.1.2)

                              Apache ServiceMix :: Bundles :: js (1.0.0.7R2_3)

                              jettison (1.3.1)

                              Apache ServiceMix :: Bundles :: xmlbeans (2.5.0.2)

                              Apache CXF Karaf Commands (2.5.0.fuse-7-061)

                              Commons Lang (2.6)

                              Apache ServiceMix :: Bundles :: xmlresolver (1.2.0.5)

                              Apache Neethi (3.0.1)

                              XmlSchema Core (2.0.1)

                              Apache ServiceMix :: Bundles :: wsdl4j (1.6.2.6)

                              camel-cxf (2.9.0.fuse-7-061)

                              camel-cxf-transport (2.9.0.fuse-7-061)

                              camel-blueprint (2.9.0.fuse-7-061)

                              camel-csv (2.9.0.fuse-7-061)

                              Apache ServiceMix Bundles: commons-csv-1.0-r706899 (1.0.0.r706899_3)

                              camel-ftp (2.9.0.fuse-7-061)

                              Commons Net (2.2)

                              camel-bindy (2.9.0.fuse-7-061)

                              camel-jdbc (2.9.0.fuse-7-061)

                              camel-exec (2.9.0.fuse-7-061)

                              Commons Exec (1.0.1)

                              Apache Commons IO Bundle (1.4)

                              camel-jasypt (2.9.0.fuse-7-061)

                              camel-saxon (2.9.0.fuse-7-061)

                              Apache ServiceMix :: Bundles :: saxon (9.1.0.8_2)

                              camel-snmp (2.9.0.fuse-7-061)

                              Apache ServiceMix :: Bundles :: snmp4j (1.8.1.5)

                              camel-ognl (2.9.0.fuse-7-061)

                              Apache ServiceMix :: Bundles :: javassist (3.12.1.GA_2)

                              Apache ServiceMix :: Bundles :: ognl (3.0.2.1)

                              camel-routebox (2.9.0.fuse-7-061)

                              camel-script (2.9.0.fuse-7-061)

                              Groovy Runtime (1.8.6)

                              JRuby 1.6.7 (1.6.7)

                              camel-spring-javaconfig (2.9.0.fuse-7-061)

                              camel-jaxb (2.9.0.fuse-7-061)

                              camel-http (2.9.0.fuse-7-061)

                              Apache ServiceMix :: Bundles :: commons-httpclient (3.1.0.7)

                              camel-jetty (2.9.0.fuse-7-061)

                              camel-jmx (2.9.0.fuse-7-061)

                              camel-mail (2.9.0.fuse-7-061)

                              camel-paxlogging (2.9.0.fuse-7-061)

                              camel-rmi (2.9.0.fuse-7-061)

                              Fuse Fabric :: ZooKeeper ConfigAdmin Bridge (7.0.0.fuse-061)

                              Fuse Fabric :: JAAS (7.0.0.fuse-061)

                              Fuse Fabric :: Karaf Commands (7.0.0.fuse-061)

                              FuseESB:karaf@root>

                               

                              Babak

                              • 12. Re: Installing the CBR example using FAB fails
                                bvahdat

                                Sorry, I think you asked for this, right?

                                 

                                FuseESB:karaf@root> features:list

                                State         Version                Name                                  Repository                        Description

                                cxf-specs                             cxf-2.5.0.fuse-7-061

                                cxf-jaxb                              cxf-2.5.0.fuse-7-061

                                cxf-abdera                            cxf-2.5.0.fuse-7-061

                                opensaml                              cxf-2.5.0.fuse-7-061

                                wss4j                                 cxf-2.5.0.fuse-7-061

                                cxf-saaj-impl                         cxf-2.5.0.fuse-7-061

                                cxf                                   cxf-2.5.0.fuse-7-061

                                cxf-sts                               cxf-2.5.0.fuse-7-061

                                cxf-wsn-api                           cxf-2.5.0.fuse-7-061

                                cxf-wsn                               cxf-2.5.0.fuse-7-061

                                patch                                 patch-7.0.0.fuse-061

                                jclouds-guice                         jclouds-1.3.2_3                   Jclouds - Google Guice

                                jclouds                               jclouds-1.3.2_3                   JClouds

                                jclouds-compute                       jclouds-1.3.2_3                   JClouds Compute

                                jclouds-api-filesystem                jclouds-1.3.2_3                   JClouds - API - FileSystem

                                jclouds-api-eucalyptus                jclouds-1.3.2_3                   JClouds - API - Eucalyptus

                                jclouds-api-elasticstack              jclouds-1.3.2_3                   JClouds - API - Elasticstack

                                jclouds-api-vcloud                    jclouds-1.3.2_3                   JClouds - API - Vcloud

                                jclouds-api-byon                      jclouds-1.3.2_3                   JClouds - API - Byon

                                jclouds-api-nova                      jclouds-1.3.2_3                   JClouds - API - Nova

                                jclouds-driver-jsch                   jclouds-1.3.2_3                   JClouds - Drivers - Jsch

                                jclouds-driver-sshj                   jclouds-1.3.2_3                   JClouds - Drivers - Sshj

                                jclouds-driver-slf4j                  jclouds-1.3.2_3                   JClouds - Drivers - Slf4j

                                jclouds-driver-log4j                  jclouds-1.3.2_3                   JClouds - Drivers - Slf4j

                                jclouds-driver-bouncycastle           jclouds-1.3.2_3                   JClouds - Drivers - Bouncycastle

                                jclouds-aws-cloudwatch                jclouds-1.3.2_3                   Amazon Web Service - Cloudwatch

                                jclouds-aws-ec2                       jclouds-1.3.2_3                   Amazon Web Service - EC2

                                jclouds-aws-s3                        jclouds-1.3.2_3                   Amazon Web Service - S3

                                jclouds-azureblob                     jclouds-1.3.2_3                   Azureblob

                                jclouds-bluelock-vcloud-zone01        jclouds-1.3.2_3                   vCloud implementation targeted to Bluelock vCloud Z

                                one01

                                jclouds-cloudfiles-uk                 jclouds-1.3.2_3                   Cloudfiles UK

                                jclouds-cloudfiles-us                 jclouds-1.3.2_3                   Cloudfiles US

                                jclouds-cloudloadbalancers-us         jclouds-1.3.2_3                   Cloud Load Balancers US

                                jclouds-cloudonestorage               jclouds-1.3.2_3                   Cloud One Storage

                                jclouds-cloudserver-uk                jclouds-1.3.2_3                   Cloudservers UK

                                jclouds-cloudserver-us                jclouds-1.3.2_3                   Cloudservers US

                                jclouds-cloudsigma-zrh                jclouds-1.3.2_3                   CloudSigma ZRH

                                jclouds-cloudsigma-lvs                jclouds-1.3.2_3                   CloudSigma ZRH

                                jclouds-elastichosts-lon-b            jclouds-1.3.2_3                   Elastichosts Bluesquare London

                                jclouds-elastichosts-lon-p            jclouds-1.3.2_3                   Elastichosts Peer1 London

                                jclouds-elastichosts-sat-p            jclouds-1.3.2_3                   Elastichosts Peer1 San Antonio

                                jclouds-elastichosts-lax-p            jclouds-1.3.2_3                   Elastichosts Peer1 Los Angeles

                                jclouds-elastichosts-tor-p            jclouds-1.3.2_3                   Elastichosts Peer1 Toronto

                                jclouds-eucalyptus-s3                 jclouds-1.3.2_3                   Eucalyptus Partner - S3

                                jclouds-eucalyptus-ec2                jclouds-1.3.2_3                   Eucalyptus Partner - EC2

                                jclouds-gogrid                        jclouds-1.3.2_3                   GoGrid

                                jclouds-go2cloud-jhb1                 jclouds-1.3.2_3                   Go2Cloud implementation targeted to Johannesburg1

                                jclouds-greenhousedata-element-vcloud jclouds-1.3.2_3                   Green House Data Element vCloud

                                jclouds-hpcloud-objectstorage-lvs     jclouds-1.3.2_3                   HP Cloud Object Storage in Las Vegas

                                jclouds-ninefold-storage              jclouds-1.3.2_3                   Ninefold Storage

                                jclouds-ninefold-compute              jclouds-1.3.2_3                   Ninefold Compute

                                jclouds-openhosting-east1             jclouds-1.3.2_3                   Open Hosting for East1

                                jclouds-rimuhosting                   jclouds-1.3.2_3                   ComputeService implementation of RimuHosting datace

                                nters

                                jclouds-savvis-symphonyvpdc           jclouds-1.3.2_3                   Savvis Symphony VPDC

                                jclouds-serverlove-z1-man             jclouds-1.3.2_3                   Serverlove implementation targeted to Manchester

                                jclouds-skalicloud-sdg-my             jclouds-1.3.2_3                   SkaliCloud implementation targeted to Malaysia

                                jclouds-softlayer                     jclouds-1.3.2_3                   Components to access SoftLayer

                                jclouds-slicehost                     jclouds-1.3.2_3                   ComputeService implementation of Slicehost datacent

                                ers

                                jclouds-synaptic-storage              jclouds-1.3.2_3                   Synaptic Storage as a Service

                                jclouds-stratogen-vcloud-mycloud      jclouds-1.3.2_3                   vCloud implementation targeted to StratoGen vCloud

                                MyCloud

                                jclouds-trmk-ecloud                   jclouds-1.3.2_3                   Terremark Enterprise Cloud

                                jclouds-trmk-vcloudexpress            jclouds-1.3.2_3                   Terremark vCloud Express

                                jclouds-services                      jclouds-1.3.2_3                   OSGi Service Factories for JClouds

                                jclouds-commands                      jclouds-1.3.2_3                   Karaf Commands for JClouds

                                jclouds-url-handler                   jclouds-1.3.2_3                   Url Handler for JClouds Blobs

                                activemq                              activemq-5.5.1.fuse-7-061

                                activemq-spring                       activemq-5.5.1.fuse-7-061

                                activemq-blueprint                    activemq-5.5.1.fuse-7-061

                                activemq-optional                     activemq-5.5.1.fuse-7-061

                                activemq-camel                        activemq-5.5.1.fuse-7-061

                                activemq-web-console                  activemq-5.5.1.fuse-7-061

                                xml-specs-api                         camel-2.9.0.fuse-7-061

                                camel                                 camel-2.9.0.fuse-7-061

                                camel-core                            camel-2.9.0.fuse-7-061

                                camel-spring                          camel-2.9.0.fuse-7-061

                                camel-blueprint                       camel-2.9.0.fuse-7-061

                                camel-test                            camel-2.9.0.fuse-7-061

                                camel-cxf                             camel-2.9.0.fuse-7-061

                                camel-cache                           camel-2.9.0.fuse-7-061

                                camel-castor                          camel-2.9.0.fuse-7-061

                                camel-crypto                          camel-2.9.0.fuse-7-061

                                camel-http                            camel-2.9.0.fuse-7-061

                                camel-http4                           camel-2.9.0.fuse-7-061

                                camel-mina                            camel-2.9.0.fuse-7-061

                                camel-mina2                           camel-2.9.0.fuse-7-061

                                camel-jetty                           camel-2.9.0.fuse-7-061

                                camel-servlet                         camel-2.9.0.fuse-7-061

                                camel-jms                             camel-2.9.0.fuse-7-061

                                camel-jmx                             camel-2.9.0.fuse-7-061

                                camel-ahc                             camel-2.9.0.fuse-7-061

                                camel-amqp                            camel-2.9.0.fuse-7-061

                                camel-apns                            camel-2.9.0.fuse-7-061

                                camel-atom                            camel-2.9.0.fuse-7-061

                                camel-aws                             camel-2.9.0.fuse-7-061

                                camel-bam                             camel-2.9.0.fuse-7-061

                                camel-bean-validator                  camel-2.9.0.fuse-7-061

                                camel-bindy                           camel-2.9.0.fuse-7-061

                                camel-cometd                          camel-2.9.0.fuse-7-061

                                camel-csv                             camel-2.9.0.fuse-7-061

                                camel-dozer                           camel-2.9.0.fuse-7-061

                                camel-eventadmin                      camel-2.9.0.fuse-7-061

                                camel-exec                            camel-2.9.0.fuse-7-061

                                camel-flatpack                        camel-2.9.0.fuse-7-061

                                camel-freemarker                      camel-2.9.0.fuse-7-061

                                camel-ftp                             camel-2.9.0.fuse-7-061

                                camel-guice                           camel-2.9.0.fuse-7-061

                                camel-groovy                          camel-2.9.0.fuse-7-061

                                camel-hazelcast                       camel-2.9.0.fuse-7-061

                                camel-hawtdb                          camel-2.9.0.fuse-7-061

                                camel-hdfs                            camel-2.9.0.fuse-7-061

                                camel-hl7                             camel-2.9.0.fuse-7-061

                                camel-ibatis                          camel-2.9.0.fuse-7-061

                                camel-irc                             camel-2.9.0.fuse-7-061

                                camel-jackson                         camel-2.9.0.fuse-7-061

                                camel-jasypt                          camel-2.9.0.fuse-7-061

                                camel-jaxb                            camel-2.9.0.fuse-7-061

                                camel-jclouds                         camel-2.9.0.fuse-7-061

                                camel-jcr                             camel-2.9.0.fuse-7-061

                                camel-jing                            camel-2.9.0.fuse-7-061

                                camel-jibx                            camel-2.9.0.fuse-7-061

                                camel-jdbc                            camel-2.9.0.fuse-7-061

                                camel-josql                           camel-2.9.0.fuse-7-061

                                camel-jpa                             camel-2.9.0.fuse-7-061

                                camel-jxpath                          camel-2.9.0.fuse-7-061

                                camel-juel                            camel-2.9.0.fuse-7-061

                                camel-kestrel                         camel-2.9.0.fuse-7-061

                                camel-krati                           camel-2.9.0.fuse-7-061

                                camel-ldap                            camel-2.9.0.fuse-7-061

                                camel-lucene                          camel-2.9.0.fuse-7-061

                                camel-mail                            camel-2.9.0.fuse-7-061

                                camel-msv                             camel-2.9.0.fuse-7-061

                                camel-mvel                            camel-2.9.0.fuse-7-061

                                camel-mybatis                         camel-2.9.0.fuse-7-061

                                camel-nagios                          camel-2.9.0.fuse-7-061

                                camel-netty                           camel-2.9.0.fuse-7-061

                                camel-ognl                            camel-2.9.0.fuse-7-061

                                camel-paxlogging                      camel-2.9.0.fuse-7-061

                                camel-printer                         camel-2.9.0.fuse-7-061

                                camel-protobuf                        camel-2.9.0.fuse-7-061

                                camel-quartz                          camel-2.9.0.fuse-7-061

                                camel-quickfix                        camel-2.9.0.fuse-7-061

                                camel-restlet                         camel-2.9.0.fuse-7-061

                                camel-rmi                             camel-2.9.0.fuse-7-061

                                camel-routebox                        camel-2.9.0.fuse-7-061

                                camel-ruby                            camel-2.9.0.fuse-7-061

                                camel-rss                             camel-2.9.0.fuse-7-061

                                camel-saxon                           camel-2.9.0.fuse-7-061

                                camel-scala                           camel-2.9.0.fuse-7-061

                                camel-script-jruby                    camel-2.9.0.fuse-7-061

                                camel-script-javascript               camel-2.9.0.fuse-7-061

                                camel-script-groovy                   camel-2.9.0.fuse-7-061

                                camel-script                          camel-2.9.0.fuse-7-061

                                camel-sip                             camel-2.9.0.fuse-7-061

                                camel-shiro                           camel-2.9.0.fuse-7-061

                                camel-smpp                            camel-2.9.0.fuse-7-061

                                camel-snmp                            camel-2.9.0.fuse-7-061

                                camel-soap                            camel-2.9.0.fuse-7-061

                                camel-solr                            camel-2.9.0.fuse-7-061

                                camel-spring-integration              camel-2.9.0.fuse-7-061

                                camel-spring-javaconfig               camel-2.9.0.fuse-7-061

                                camel-spring-security                 camel-2.9.0.fuse-7-061

                                camel-spring-ws                       camel-2.9.0.fuse-7-061

                                camel-sql                             camel-2.9.0.fuse-7-061

                                camel-stax                            camel-2.9.0.fuse-7-061

                                camel-stream                          camel-2.9.0.fuse-7-061

                                camel-string-template                 camel-2.9.0.fuse-7-061

                                camel-syslog                          camel-2.9.0.fuse-7-061

                                camel-tagsoup                         camel-2.9.0.fuse-7-061

                                camel-velocity                        camel-2.9.0.fuse-7-061

                                camel-xmlbeans                        camel-2.9.0.fuse-7-061

                                camel-xmlsecurity                     camel-2.9.0.fuse-7-061

                                camel-xmpp                            camel-2.9.0.fuse-7-061

                                camel-xstream                         camel-2.9.0.fuse-7-061

                                camel-zookeeper                       camel-2.9.0.fuse-7-061

                                connector                             servicemix-4.5.0.fuse-7-061

                                saaj                                  servicemix-4.5.0.fuse-7-061

                                cxf-osgi                              servicemix-4.5.0.fuse-7-061

                                cxf-jaxrs                             servicemix-4.5.0.fuse-7-061

                                cxf-nmr                               servicemix-4.5.0.fuse-7-061

                                camel-nmr                             servicemix-4.5.0.fuse-7-061

                                camel-activemq                        servicemix-4.5.0.fuse-7-061

                                jpa-hibernate                         servicemix-4.5.0.fuse-7-061

                                servicemix-shared                     servicemix-4.5.0.fuse-7-061

                                servicemix-cxf-bc                     servicemix-4.5.0.fuse-7-061

                                servicemix-file                       servicemix-4.5.0.fuse-7-061

                                servicemix-ftp                        servicemix-4.5.0.fuse-7-061

                                servicemix-http                       servicemix-4.5.0.fuse-7-061

                                servicemix-jms                        servicemix-4.5.0.fuse-7-061

                                servicemix-mail                       servicemix-4.5.0.fuse-7-061

                                servicemix-bean                       servicemix-4.5.0.fuse-7-061

                                servicemix-camel                      servicemix-4.5.0.fuse-7-061

                                servicemix-drools                     servicemix-4.5.0.fuse-7-061

                                servicemix-cxf-se                     servicemix-4.5.0.fuse-7-061

                                servicemix-eip                        servicemix-4.5.0.fuse-7-061

                                servicemix-osworkflow                 servicemix-4.5.0.fuse-7-061

                                servicemix-quartz                     servicemix-4.5.0.fuse-7-061

                                servicemix-scripting                  servicemix-4.5.0.fuse-7-061

                                servicemix-validation                 servicemix-4.5.0.fuse-7-061

                                servicemix-saxon                      servicemix-4.5.0.fuse-7-061

                                servicemix-wsn2005                    servicemix-4.5.0.fuse-7-061

                                servicemix-snmp                       servicemix-4.5.0.fuse-7-061

                                servicemix-vfs                        servicemix-4.5.0.fuse-7-061

                                servicemix-smpp                       servicemix-4.5.0.fuse-7-061

                                activemq-broker                       servicemix-4.5.0.fuse-7-061

                                naming                                repo-0

                                document                              repo-0

                                nmr                                   repo-0

                                nmr-audit                             repo-0

                                woodstox                              repo-0

                                jbi                                   repo-0

                                jbi-cluster                           repo-0

                                examples-nmr                          repo-0

                                karaf-framework                       karaf-2.2.5.fuse-7-061

                                spring                                karaf-2.2.5.fuse-7-061

                                spring-web                            karaf-2.2.5.fuse-7-061

                                spring                                karaf-2.2.5.fuse-7-061

                                spring-aspects                        karaf-2.2.5.fuse-7-061

                                spring-dm                             karaf-2.2.5.fuse-7-061

                                spring-dm-web                         karaf-2.2.5.fuse-7-061

                                spring-instrument                     karaf-2.2.5.fuse-7-061

                                spring-jdbc                           karaf-2.2.5.fuse-7-061

                                spring-jms                            karaf-2.2.5.fuse-7-061

                                spring-struts                         karaf-2.2.5.fuse-7-061

                                spring-test                           karaf-2.2.5.fuse-7-061

                                spring-orm                            karaf-2.2.5.fuse-7-061

                                spring-oxm                            karaf-2.2.5.fuse-7-061

                                spring-tx                             karaf-2.2.5.fuse-7-061

                                spring-web                            karaf-2.2.5.fuse-7-061

                                spring-web-portlet                    karaf-2.2.5.fuse-7-061

                                wrapper                               karaf-2.2.5.fuse-7-061

                                obr                                   karaf-2.2.5.fuse-7-061

                                config                                karaf-2.2.5.fuse-7-061

                                jetty                                 karaf-2.2.5.fuse-7-061

                                http                                  karaf-2.2.5.fuse-7-061

                                war                                   karaf-2.2.5.fuse-7-061

                                kar                                   karaf-2.2.5.fuse-7-061

                                webconsole-base                       karaf-2.2.5.fuse-7-061

                                webconsole                            karaf-2.2.5.fuse-7-061

                                ssh                                   karaf-2.2.5.fuse-7-061

                                management                            karaf-2.2.5.fuse-7-061

                                eventadmin                            karaf-2.2.5.fuse-7-061

                                jasypt-encryption                     karaf-2.2.5.fuse-7-061

                                transaction                           karaf-enterprise-2.2.5.fuse-7-061 OSGi Transaction Manager

                                jpa                                   karaf-enterprise-2.2.5.fuse-7-061 OSGi Persistence Container

                                jndi                                  karaf-enterprise-2.2.5.fuse-7-061 OSGi Service Registry JNDI access

                                application-without-isolation         karaf-enterprise-2.2.5.fuse-7-061

                                karaf                                 fabric-7.0.0.fuse-061

                                fabric-bundle                         fabric-7.0.0.fuse-061

                                fabric-zookeeper                      fabric-7.0.0.fuse-061

                                fabric-configadmin                    fabric-7.0.0.fuse-061

                                fabric-agent                          fabric-7.0.0.fuse-061

                                fabric-maven-proxy                    fabric-7.0.0.fuse-061

                                fabric-core                           fabric-7.0.0.fuse-061

                                fabric-boot-commands                  fabric-7.0.0.fuse-061

                                fabric-commands                       fabric-7.0.0.fuse-061

                                fabric-zookeeper-commands             fabric-7.0.0.fuse-061

                                fabric-dosgi                          fabric-7.0.0.fuse-061

                                fabric-eca                            fabric-7.0.0.fuse-061

                                fabric-camel                          fabric-7.0.0.fuse-061

                                fabric-cxf                            fabric-7.0.0.fuse-061

                                mq-fabric                             fabric-7.0.0.fuse-061

                                mq-web-console                        fabric-7.0.0.fuse-061

                                fabric-groups                         fabric-7.0.0.fuse-061

                                fabric-monitor                        fabric-7.0.0.fuse-061

                                fabric-jaas                           fabric-7.0.0.fuse-061

                                fabric-jclouds                        fabric-7.0.0.fuse-061

                                fabric-zeroconf                       fabric-7.0.0.fuse-061

                                fabric-bridge                         fabric-7.0.0.fuse-061

                                fabric-bridge-zookeeper               fabric-7.0.0.fuse-061

                                insight-graph                         fabric-7.0.0.fuse-061

                                insight-elasticsearch                 fabric-7.0.0.fuse-061

                                insight-log-elasticsearch             fabric-7.0.0.fuse-061

                                fabric-hadoop                         fabric-7.0.0.fuse-061

                                virt                                  fabric-7.0.0.fuse-061             FuseSource Virt

                                FuseESB:karaf@root>

                                • 13. Re: Installing the CBR example using FAB fails
                                  iocanel

                                  Hi Babak,

                                   

                                  I asked for the second, but the first was good enough, too.

                                  It seems, that bundle Fuse Application Bundles :: OSGi (7.0.0.fuse-061), which provides access to the fab: protocol is installed in your system, so the exception that you are seeing is misleading (unless you used the osgi:install command before bundle 94 was started, which I think is not likely).

                                   

                                  I'll try to reproduce it and get back to you.

                                  • 14. Re: Installing the CBR example using FAB fails
                                    bvahdat

                                    I'm pretty sure you'll be able to reproduce the issue on Windows

                                     

                                    Thanks for great support.

                                     

                                    Babak

                                    1 2 Previous Next