Skip to content

Instantly share code, notes, and snippets.

View cmoulliard's full-sized avatar
🏠
Working from home

Charles Moulliard cmoulliard

🏠
Working from home
View GitHub Profile
TypeError: Cannot read property 'jolokiaUrl' of undefined
at Object.connect (http://localhost:8181/hawtio/app/app.js:14730:33)
at Object.$scope.connect.onOK (http://localhost:8181/hawtio/app/app.js:14247:24)
at http://localhost:8181/hawtio/lib/angular.js:7013:19
at scope.(anonymous function) (http://localhost:8181/hawtio/lib/angular.js:4908:26)
at Object.Scope.$eval (http://localhost:8181/hawtio/lib/angular.js:8936:28)
at Object.$scope.submit (http://localhost:8181/hawtio/app/app.js:28390:36)
at http://localhost:8181/hawtio/lib/angular.js:7013:19
at Object.Scope.$eval (http://localhost:8181/hawtio/lib/angular.js:8936:28)
at Object.Scope.$apply (http://localhost:8181/hawtio/lib/angular.js:9016:23)
[INFO] create webapp with contextPath: /web
Oct 17, 2013 4:17:20 PM org.apache.coyote.AbstractProtocol init
INFO: Initializing ProtocolHandler ["http-bio-8080"]
Oct 17, 2013 4:17:20 PM org.apache.catalina.core.StandardService startInternal
INFO: Starting service Tomcat
Oct 17, 2013 4:17:20 PM org.apache.catalina.core.StandardEngine startInternal
INFO: Starting Servlet Engine: Apache Tomcat/7.0.37
[INFO] ------------------------------------------------------------------------
[INFO] BUILD FAILURE
[INFO] ------------------------------------------------------------------------
Downloaded: http://repo.maven.apache.org/maven2/org/jboss/logmanager/jboss-logmanager/1.3.0.Final/jboss-logmanager-1.3.0.Final.jar (252 KB at 144.6 KB/sec)
Downloaded: http://repo.maven.apache.org/maven2/org/jboss/as/jboss-as-cli/7.1.2.Final/jboss-as-cli-7.1.2.Final.jar (568 KB at 251.7 KB/sec)
[WARNING] Error injecting: org.jboss.as.plugin.server.Run
java.lang.NoClassDefFoundError: org/sonatype/aether/resolution/ArtifactResolutionException
at java.lang.Class.getDeclaredConstructors0(Native Method)
at java.lang.Class.privateGetDeclaredConstructors(Class.java:2483)
at java.lang.Class.getDeclaredConstructors(Class.java:1891)
at com.google.inject.spi.InjectionPoint.forConstructorOf(InjectionPoint.java:245)
at com.google.inject.internal.ConstructorBindingImpl.create(ConstructorBindingImpl.java:99)
at com.google.inject.internal.InjectorImpl.createUninitializedBinding(InjectorImpl.java:653)
package org.fusesource.workshop.cdi;
import org.apache.camel.CamelContext;
import org.apache.camel.builder.RouteBuilder;
import org.apache.camel.cdi.ContextName;
import org.fusesource.poc.routes.WebServiceToPojoUsingQueue;
import javax.annotation.PostConstruct;
import javax.inject.Inject;
FuseFabric:karaf@root> list -t 0 | grep -i activemq
[ 217] [Active ] [Created ] [ ] [ 50] activemq-osgi (5.9.0.redhat-610123), Fragments: 241
[ 227] [Active ] [Created ] [ ] [ 50] activemq-karaf (5.9.0.redhat-610123)
[ 241] [Resolved ] [ ] [ ] [ 50] activemq-blueprint (5.9.0.redhat-610123), Hosts: 217
[ 242] [Active ] [ ] [ ] [ 50] activemq-web-console (5.9.0.redhat-610123)
RELEASE | Loading XML bean definitions from file [/home/cmoulliard/Repos/fuse/fuse/fabric/fuse-fabric/target/fuse-fabric-7.3.0.redhat-SNAPSHOT/etc/activemq.xml]
2013-10-18 10:04:12,946 | INFO | ctivemq.server]) | DefaultListableBeanFactory | ort.DefaultSingletonBeanRegistry 444 | 136 - org.springframework.beans - 3.2.3.RELEASE | Destroying singletons in org.springframework.beans.factory.support.DefaultListableBeanFactory@5a0c635d: defining beans [org.springframework.beans.factory.config.PropertyPlaceholderConfigurer#0,org.apache.activemq.xbean.XBeanBrokerService#0]; root of factory hierarchy
2013-10-18 10:04:12,947 | ERROR | ctivemq.server]) | configadmin | ? ? | 5 - org.apache.felix.configadmin - 1.4.0.redhat-610123 | [org.osgi.service.cm.ManagedServiceFactory, id=418, bundle=217/mvn:org.apache.activemq/activemq-osgi/5.9.0.redhat-610123]: Updating configuration org.apache.activemq.server.7a22e86e-0a18-43d2-9dcd-033ac5439a80 caused a problem: Cann
package org.fusesource.workshop.spring;
import org.apache.camel.*;
import org.apache.camel.component.mock.MockEndpoint;
import org.junit.Test;
import org.springframework.beans.factory.annotation.Autowired;
import org.springframework.test.annotation.DirtiesContext;
import org.springframework.test.context.ContextConfiguration;
import org.springframework.test.context.junit4.AbstractJUnit4SpringContextTests;
[ Blueprint Extender: 1] BlueprintContainerImpl INFO Bundle blueprint is waiting for namespace handlers [http://aries.apache.org/blueprint/xmlns/blueprint-cm/v1.0.0, http://camel.apache.org/schema/blueprint/cxf, http://camel.apache.org/schema/blueprint]
[ main] RouteTest INFO ********************************************************************************
[ main] RouteTest INFO Testing: testWebService(org.fusesource.workshop.blueprint.RouteTest)
[ main] RouteTest INFO ********************************************************************************
[ Blueprint Extender: 1] BlueprintContainerImpl INFO Bundle RouteTest is waiting for namespace handlers [http://aries.apache.org/blueprint/xmlns/blueprint-cm/v1.0.0, http://camel.apache.org/schema/blueprint/cxf, http://camel.apache.org/schema/blueprint]
[ Blueprint Extender: 1] Blueprin
import org.apache.camel.component.cdi.CdiBeanRegistry;
import org.apache.camel.component.cdi.CdiInjector;
import org.apache.camel.impl.CompositeRegistry;
import org.apache.camel.impl.DefaultCamelContext;
import org.apache.camel.impl.JndiRegistry;
import org.apache.camel.impl.SimpleRegistry;
import org.apache.camel.spi.EventNotifier;
import org.apache.camel.spi.PackageScanClassResolver;
import org.apache.camel.spi.Registry;
import org.apache.log4j.Logger;
-------------------------------------------------------
T E S T S
-------------------------------------------------------
Running org.switchyard.quickstarts.camel.jms.binding.CamelJMSBindingTest
13:02:19,086 INFO [org.jboss.weld.Version] WELD-000900 1.1.5 (Final)
13:02:19,804 WARN [org.hornetq.core.server] HQ222018: AIO was not located on this platform, it will fall back to using pure Java NIO. If your platform is Linux, install LibAIO to enable the AIO journal
13:02:19,988 INFO [org.hornetq.core.server] HQ221000: live server is starting with configuration HornetQ Configuration (clustered=false,backup=false,sharedStore=true,journalDirectory=target/data/journal,bindingsDirectory=target/data/bindings,largeMessagesDirectory=target/data/large-messages,pagingDirectory=target/data/paging)
13:02:20,000 WARN [org.hornetq.core.server] HQ222007: Security risk! HornetQ is running with the default cluster admin user and default password. Please see the HornetQ user guide, cluster chapter, for instructions on how to