[JBoss JIRA] (WFLY-1288) Support JMS 2.0 new activation properties for MDB
by Jeff Mesnil (JIRA)
Jeff Mesnil created WFLY-1288:
---------------------------------
Summary: Support JMS 2.0 new activation properties for MDB
Key: WFLY-1288
URL: https://issues.jboss.org/browse/WFLY-1288
Project: WildFly
Issue Type: Feature Request
Components: JMS
Reporter: Jeff Mesnil
Assignee: Jeff Mesnil
Fix For: 8.0.0.Alpha1
>From JMS 2.0 API, 13.1 MDB activation properties, the following activation properties must be added:
[ ] destinationLookup
[ ] connectionFactoryLookup
[X] acknowledgeMode
[X] messageSelector
[X] destinationType
[X] subscriptionDurability
[ ] clientId
[ ] subscriptionName
([X] means already supported in JMS 1.1)
--
This message is automatically generated by JIRA.
If you think it was sent incorrectly, please contact your JIRA administrators
For more information on JIRA, see: http://www.atlassian.com/software/jira
13 years
[JBoss JIRA] (WFLY-1287) Provide JMS Default ConnectionFactory
by Jeff Mesnil (JIRA)
Jeff Mesnil created WFLY-1287:
---------------------------------
Summary: Provide JMS Default ConnectionFactory
Key: WFLY-1287
URL: https://issues.jboss.org/browse/WFLY-1287
Project: WildFly
Issue Type: Feature Request
Components: JMS
Reporter: Jeff Mesnil
Assignee: Jeff Mesnil
Fix For: 8.0.0.Alpha1
>From JEE 7 spec, EE5.20 Default JMS Connection Factory:
"The Java EE Product Provider must also provide a preconfigured, JMS ConnectionFactory for use by the application in accessing this JMS provider.
The Java EE Product Provider must make the default JMS connection factory accessible to the application under the JNDI name java:comp/ DefaultJMSConnectionFactory."
--
This message is automatically generated by JIRA.
If you think it was sent incorrectly, please contact your JIRA administrators
For more information on JIRA, see: http://www.atlassian.com/software/jira
13 years
[JBoss JIRA] (WFLY-1286) Support injection of JMSContext
by Jeff Mesnil (JIRA)
Jeff Mesnil created WFLY-1286:
---------------------------------
Summary: Support injection of JMSContext
Key: WFLY-1286
URL: https://issues.jboss.org/browse/WFLY-1286
Project: WildFly
Issue Type: Feature Request
Components: CDI / Weld, JMS
Reporter: Jeff Mesnil
Assignee: Jeff Mesnil
Fix For: 8.0.0.Alpha1
>From JMS 2.0 JMS Context javadoc:
"Applications running in the Java EE web and EJB containers may alternatively inject a JMSContext into their application using the @Inject annotation."
The WildFly messaging subsystem should provide the Bean to inject JMSContext. The JMSContext is created by looking up the (eventually default) JMS ConnectionFactory from JNDI and calling createContext() on it.
--
This message is automatically generated by JIRA.
If you think it was sent incorrectly, please contact your JIRA administrators
For more information on JIRA, see: http://www.atlassian.com/software/jira
13 years
[JBoss JIRA] (DROOLS-110) KieModuleMetaData: Java Beans must have an explicit package (i.e. default package causes NPE)
by Michael Anstis (JIRA)
[ https://issues.jboss.org/browse/DROOLS-110?page=com.atlassian.jira.plugin... ]
Michael Anstis commented on DROOLS-110:
---------------------------------------
Proposed changes to fix:-
KieModuleMetaDataImpl.java
public Class<?> getClass(String pkgName, String className) {
try {
>> if(!(pkgName==null || pkgName.isEmpty())) {
>> return Class.forName(pkgName + "." + className, false, getClassLoader());
>> }
>> return Class.forName(className, false, getClassLoader());
} catch (ClassNotFoundException e) {
return null;
}
}
org.drools.core.util.ClassUtils$MapClassLoader:-
public Class<?> fastFindClass( final String name ) {
Class<?> cls = findLoadedClass( name );
if (cls == null) {
final byte[] clazzBytes = this.map.get( convertClassToResourcePath( name ) );
if (clazzBytes != null) {
>> String pkgName = "";
>> if(name.lastIndexOf( '.' ) > 0) {
>> pkgName = name.substring( 0,
>> name.lastIndexOf( '.' ) );
>> }
if (getPackage( pkgName ) == null) {
definePackage( pkgName,
"",
"",
"",
"",
"",
"",
null );
}
cls = defineClass( name,
clazzBytes,
0,
clazzBytes.length,
PROTECTION_DOMAIN );
}
if (cls != null) {
resolveClass( cls );
}
}
return cls;
}
> KieModuleMetaData: Java Beans must have an explicit package (i.e. default package causes NPE)
> ---------------------------------------------------------------------------------------------
>
> Key: DROOLS-110
> URL: https://issues.jboss.org/browse/DROOLS-110
> Project: Drools
> Issue Type: Bug
> Security Level: Public(Everyone can see)
> Affects Versions: 6.0.0.Beta2
> Reporter: Michael Anstis
> Assignee: Mark Proctor
>
> Please see test here: http://github.com/droolsjbpm/drools/commit/01049a2de
> Java Beans must have an explicit package. This cannot be guaranteed (although it is accepted as best practice).
--
This message is automatically generated by JIRA.
If you think it was sent incorrectly, please contact your JIRA administrators
For more information on JIRA, see: http://www.atlassian.com/software/jira
13 years
[JBoss JIRA] (JBJCA-1027) com.github.fungal.impl.KernelImpl.recursiveDelete cannot delete temporary jar file on Windows
by Gytis Trikleris (JIRA)
Gytis Trikleris created JBJCA-1027:
--------------------------------------
Summary: com.github.fungal.impl.KernelImpl.recursiveDelete cannot delete temporary jar file on Windows
Key: JBJCA-1027
URL: https://issues.jboss.org/browse/JBJCA-1027
Project: IronJacamar
Issue Type: Bug
Components: Fungal
Environment: Windows 7; Windows 2008 Server
Reporter: Gytis Trikleris
Assignee: Jesper Pedersen
{code}
-------------------------------------------------------------------------------
Test set: org.jboss.narayana.quickstart.jca.model.CustomerDAOTest
-------------------------------------------------------------------------------
Tests run: 10, Failures: 0, Errors: 1, Skipped: 0, Time elapsed: 2.32 sec <<< FAILURE!
org.jboss.narayana.quickstart.jca.model.CustomerDAOTest Time elapsed: 0.063 sec <<< ERROR!
java.io.IOException: Could not delete C:\Users\hudson\AppData\Local\Temp\2\iron.jacamar\tmp\jdbc-xa.rar\ironjacamar-jdbc.jar
at com.github.fungal.impl.KernelImpl.recursiveDelete(KernelImpl.java:1520)
at com.github.fungal.impl.KernelImpl.recursiveDelete(KernelImpl.java:1515)
at com.github.fungal.impl.KernelImpl.recursiveDelete(KernelImpl.java:1515)
at com.github.fungal.impl.KernelImpl.shutdown(KernelImpl.java:850)
at org.jboss.jca.embedded.EmbeddedJCA.shutdown(EmbeddedJCA.java:158)
at org.jboss.narayana.quickstart.jca.common.AbstractTest.afterClass(AbstractTest.java:61)
at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method)
at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:57)
at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43)
at java.lang.reflect.Method.invoke(Method.java:601)
at org.junit.runners.model.FrameworkMethod$1.runReflectiveCall(FrameworkMethod.java:45)
at org.junit.internal.runners.model.ReflectiveCallable.run(ReflectiveCallable.java:15)
at org.junit.runners.model.FrameworkMethod.invokeExplosively(FrameworkMethod.java:42)
at org.junit.internal.runners.statements.RunAfters.evaluate(RunAfters.java:36)
at org.junit.runners.ParentRunner.run(ParentRunner.java:300)
at org.apache.maven.surefire.junit4.JUnit4TestSet.execute(JUnit4TestSet.java:35)
at org.apache.maven.surefire.junit4.JUnit4Provider.executeTestSet(JUnit4Provider.java:146)
at org.apache.maven.surefire.junit4.JUnit4Provider.invoke(JUnit4Provider.java:97)
at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method)
at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:57)
at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43)
at java.lang.reflect.Method.invoke(Method.java:601)
at org.apache.maven.surefire.booter.ProviderFactory$ClassLoaderProxy.invoke(ProviderFactory.java:103)
at $Proxy0.invoke(Unknown Source)
at org.apache.maven.surefire.booter.SurefireStarter.invokeProvider(SurefireStarter.java:145)
at org.apache.maven.surefire.booter.SurefireStarter.runSuitesInProcess(SurefireStarter.java:87)
at org.apache.maven.surefire.booter.ForkedBooter.main(ForkedBooter.java:69)
{code}
It works fine on Linux. However, it fails on both Windows 7 and Windows 2008 server.
This simple test class also fails during shutdown with the same error:
{code}
public class SimpleTest {
private static final String JDBC_RAR_FILE_PATH = "src/main/resources/jdbc-xa.rar";
private static Embedded EMBEDDED;
@Test
public void test() throws Throwable {
EMBEDDED = EmbeddedFactory.create();
EMBEDDED.startup();
EMBEDDED.deploy(getURL(JDBC_RAR_FILE_PATH));
System.out.println("Test...");
EMBEDDED.undeploy(getURL(JDBC_RAR_FILE_PATH));
EMBEDDED.shutdown();
}
private static URL getURL(final String path) throws MalformedURLException {
final File f = new File(path);
return f.toURI().toURL();
}
}
{code}
--
This message is automatically generated by JIRA.
If you think it was sent incorrectly, please contact your JIRA administrators
For more information on JIRA, see: http://www.atlassian.com/software/jira
13 years
[JBoss JIRA] (DROOLS-107) NPE when inserting through rule (object already present as derived class)
by Jean-Marc Vanel (JIRA)
[ https://issues.jboss.org/browse/DROOLS-107?page=com.atlassian.jira.plugin... ]
Jean-Marc Vanel commented on DROOLS-107:
----------------------------------------
Sorry I forgot to tidy the dependencies in the test.
It is now done ( at the same URL's ).
And 5.5.1-SNAPSHOT has the same NPE.
> NPE when inserting through rule (object already present as derived class)
> -------------------------------------------------------------------------
>
> Key: DROOLS-107
> URL: https://issues.jboss.org/browse/DROOLS-107
> Project: Drools
> Issue Type: Bug
> Security Level: Public(Everyone can see)
> Affects Versions: 5.5.0.Final
> Environment: % java -version
> java version "1.7.0_21"
> Java(TM) SE Runtime Environment (build 1.7.0_21-b11)
> Java HotSpot(TM) 64-Bit Server VM (build 23.21-b01, mixed mode)
> % uname -a
> Linux oem-laptop 3.5.0-28-generic #47-Ubuntu SMP Tue Apr 9 19:03:54 UTC 2013 x86_64 x86_64 x86_64 GNU/Linux
> Reporter: Jean-Marc Vanel
> Assignee: Mark Proctor
>
> NPE : unit test which depends only on 3 non Drools simple classes : Assignment, Triple, TripleUser
> unit test has 2 rules , 5 inserts, 3 fireAllRules : the last one makes the NPE.
> TestDroolsNPE.testRunRulesBefore
> testRunRulesBefore(eulergui.project.TestDroolsNPE)
> Exception executing consequence for rule "project-java-rules2.n3 0" in project_java_rules2_n3_1: java.lang.NullPointerException
> at org.drools.runtime.rule.impl.DefaultConsequenceExceptionHandler.handleException(DefaultConsequenceExceptionHandler.java:39)
> at org.drools.common.DefaultAgenda.fireActivation(DefaultAgenda.java:1297)
> at org.drools.common.DefaultAgenda.fireNextItem(DefaultAgenda.java:1221)
> at org.drools.common.DefaultAgenda.fireAllRules(DefaultAgenda.java:1456)
> at org.drools.common.AbstractWorkingMemory.fireAllRules(AbstractWorkingMemory.java:710)
> at org.drools.common.AbstractWorkingMemory.fireAllRules(AbstractWorkingMemory.java:674)
> at org.drools.impl.StatefulKnowledgeSessionImpl.fireAllRules(StatefulKnowledgeSessionImpl.java:230)
> at eulergui.project.TestDroolsNPE.testRunRulesBefore(TestDroolsNPE.java:110)
> at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method)
> at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:57)
> at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43)
> at java.lang.reflect.Method.invoke(Method.java:601)
> at junit.framework.TestCase.runTest(TestCase.java:176)
> at junit.framework.TestCase.runBare(TestCase.java:141)
> at junit.framework.TestResult$1.protect(TestResult.java:122)
> at junit.framework.TestResult.runProtected(TestResult.java:142)
> at junit.framework.TestResult.run(TestResult.java:125)
> at junit.framework.TestCase.run(TestCase.java:129)
> at junit.framework.TestSuite.runTest(TestSuite.java:255)
> at junit.framework.TestSuite.run(TestSuite.java:250)
> at org.junit.internal.runners.JUnit38ClassRunner.run(JUnit38ClassRunner.java:84)
> at org.eclipse.jdt.internal.junit4.runner.JUnit4TestReference.run(JUnit4TestReference.java:50)
> at org.eclipse.jdt.internal.junit.runner.TestExecution.run(TestExecution.java:38)
> at org.eclipse.jdt.internal.junit.runner.RemoteTestRunner.runTests(RemoteTestRunner.java:467)
> at org.eclipse.jdt.internal.junit.runner.RemoteTestRunner.runTests(RemoteTestRunner.java:683)
> at org.eclipse.jdt.internal.junit.runner.RemoteTestRunner.run(RemoteTestRunner.java:390)
> at org.eclipse.jdt.internal.junit.runner.RemoteTestRunner.main(RemoteTestRunner.java:197)
> Caused by: java.lang.NullPointerException
> at org.drools.common.NamedEntryPoint.insert(NamedEntryPoint.java:196)
> at org.drools.common.AbstractWorkingMemory.insert(AbstractWorkingMemory.java:903)
> at org.drools.base.DefaultKnowledgeHelper.insertLogical(DefaultKnowledgeHelper.java:245)
> at org.drools.base.DefaultKnowledgeHelper.insertLogical(DefaultKnowledgeHelper.java:210)
> at org.drools.base.DefaultKnowledgeHelper.insertLogical(DefaultKnowledgeHelper.java:205)
> at project_java_rules2_n3_1.Rule_project_java_rules2_n3_0_dd5596b676034b1fb5b32877015997e3.defaultConsequence(Rule_project_java_rules2_n3_0_dd5596b676034b1fb5b32877015997e3.java:12)
> at project_java_rules2_n3_1.Rule_project_java_rules2_n3_0_dd5596b676034b1fb5b32877015997e3DefaultConsequenceInvokerGenerated.evaluate(Unknown Source)
> at project_java_rules2_n3_1.Rule_project_java_rules2_n3_0_dd5596b676034b1fb5b32877015997e3DefaultConsequenceInvoker.evaluate(Unknown Source)
> at org.drools.common.DefaultAgenda.fireActivation(DefaultAgenda.java:1287)
> ... 25 more
> in class NamedEntryPoint :
>
> protected FactHandle insert(final Object object,
> final Object tmsValue,
> final boolean dynamic,
> boolean logical,
> final Rule rule,
> final Activation activation) throws FactException {
> if ( object == null ) {
> // you cannot assert a null object
> return null;
> }
>
> try {
> this.wm.startOperation();
>
> ObjectTypeConf typeConf = this.typeConfReg.getObjectTypeConf( this.entryPoint,
> object );
> if ( logical && !typeConf.isTMSEnabled()) {
> enableTMS(object, typeConf);
> }
>
> InternalFactHandle handle = null;
>
> if ( this.wm.isSequential() ) {
> handle = createHandle( object,
> typeConf );
> insert( handle,
> object,
> rule,
> activation,
> typeConf );
> return handle;
> }
> try {
> this.lock.lock();
> this.ruleBase.readLock();
> // check if the object already exists in the WM
> handle = this.objectStore.getHandleForObject( object );
>
> if ( typeConf.isTMSEnabled() ) {
>
> EqualityKey key;
>
> TruthMaintenanceSystem tms = wm.getTruthMaintenanceSystem();
> if ( handle == null ) {
> // lets see if the object is already logical asserted
> key = tms.get( object );
> } else {
> // Object is already asserted, so check and possibly correct its
> // status and then return the handle
> key = handle.getEqualityKey();
>
> if ( key.getStatus() == EqualityKey.STATED ) {
>
> // key == null here !!!!!!!!!!!!!!!!!!!
> // conf.setAssertBehaviour( AssertBehaviour.EQUALITY );
>
> when rule inserts Triple :
> <file:/home/jmv/src/eulergui-code/eulergui/test/import.n3p.n3> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://www.w3.org/2002/07/owl#Ontology> .
>
> that is already present, as a TripleUser extends Triple, but equals() and hashCode() are the same ;
> this object is both asserted and inferred as a Triple object
--
This message is automatically generated by JIRA.
If you think it was sent incorrectly, please contact your JIRA administrators
For more information on JIRA, see: http://www.atlassian.com/software/jira
13 years
[JBoss JIRA] (WFLY-90) Deployment may not be attached to BundleRevision during persistent bundle restore
by Thomas Diesler (JIRA)
[ https://issues.jboss.org/browse/WFLY-90?page=com.atlassian.jira.plugin.sy... ]
Thomas Diesler commented on WFLY-90:
------------------------------------
With jbosgi-framework-3.0.0.CR21 I could not find a code path that could possibly cause this NPE. This issue might have been fixed with that version already. However, in 3.0.0.CR22 I removed the dependency on the attachment completely and added additional checks for deployment != null
> Deployment may not be attached to BundleRevision during persistent bundle restore
> ---------------------------------------------------------------------------------
>
> Key: WFLY-90
> URL: https://issues.jboss.org/browse/WFLY-90
> Project: WildFly
> Issue Type: Bug
> Components: OSGi
> Affects Versions: 8.0.0.Alpha1
> Environment: JBoss 8AS Alpha1
> Reporter: Aaron Whiteside
> Assignee: Thomas Diesler
> Fix For: 8.0.0.Alpha1
>
>
> {code}
> awhiteside@localhost jboss-as-8.0.0.Alpha1-SNAPSHOT# ./bin/standalone.sh -c standalone-osgi.xml
> =========================================================================
> JBoss Bootstrap Environment
> JBOSS_HOME: /home/awhiteside/Downloads/jboss-as-8.0.0.Alpha1-SNAPSHOT
> JAVA: /usr/local/java/bin/java
> JAVA_OPTS: -server -XX:+UseCompressedOops -Xms64m -Xmx512m -XX:MaxPermSize=256m -Djava.net.preferIPv4Stack=true -Djboss.modules.system.pkgs=org.jboss.byteman -Djava.awt.headless=true
> =========================================================================
> 11:46:22,337 INFO [org.jboss.modules] (main) JBoss Modules version 1.2.0.Final
> 11:46:22,482 INFO [org.jboss.msc] (main) JBoss MSC version 1.1.2.Final
> 11:46:22,532 INFO [org.jboss.as] (MSC service thread 1-7) JBAS015899: JBoss AS 8.0.0.Alpha1-SNAPSHOT "TBD" starting
> 11:46:23,332 INFO [org.xnio] (MSC service thread 1-2) XNIO Version 3.1.0.CR2
> 11:46:23,335 INFO [org.jboss.as.server] (Controller Boot Thread) JBAS015888: Creating http management service using socket-binding (management-http)
> 11:46:23,336 INFO [org.xnio.nio] (MSC service thread 1-2) XNIO NIO Implementation Version 3.1.0.CR2
> 11:46:23,350 INFO [org.jboss.remoting] (MSC service thread 1-2) JBoss Remoting version 3.2.16.GA
> 11:46:23,361 INFO [org.jboss.as.configadmin] (ServerService Thread Pool -- 28) JBAS016200: Activating ConfigAdmin Subsystem
> 11:46:23,373 INFO [org.jboss.as.clustering.infinispan] (ServerService Thread Pool -- 34) JBAS010280: Activating Infinispan subsystem.
> 11:46:23,389 INFO [org.jboss.as.security] (ServerService Thread Pool -- 48) JBAS013171: Activating Security Subsystem
> 11:46:23,391 INFO [org.jboss.as.naming] (ServerService Thread Pool -- 42) JBAS011800: Activating Naming Subsystem
> 11:46:23,395 INFO [org.jboss.as.security] (MSC service thread 1-1) JBAS013170: Current PicketBox version=4.0.16.Final
> 11:46:23,403 INFO [org.jboss.as.jsf] (ServerService Thread Pool -- 40) JBAS012605: Activated the following JSF Implementations: [main, 1.2]
> 11:46:23,418 INFO [org.jboss.as.connector.logging] (MSC service thread 1-3) JBAS010408: Starting JCA Subsystem (JBoss IronJacamar 1.0.16.Final)
> 11:46:23,421 INFO [org.jboss.as.webservices] (ServerService Thread Pool -- 52) JBAS015537: Activating WebServices Extension
> 11:46:23,436 INFO [org.jboss.as.undertow] (MSC service thread 1-4) JBAS017502: Undertow 1.0.0.Alpha9 starting
> 11:46:23,438 INFO [org.jboss.as.undertow] (ServerService Thread Pool -- 51) JBAS017502: Undertow 1.0.0.Alpha9 starting
> 11:46:23,439 INFO [org.jboss.as.osgi] (ServerService Thread Pool -- 43) JBAS011906: Activating OSGi Subsystem
> 11:46:23,504 INFO [org.jboss.as.naming] (MSC service thread 1-8) JBAS011802: Starting Naming Service
> 11:46:23,505 INFO [org.jboss.as.mail.extension] (MSC service thread 1-5) JBAS015400: Bound mail session [java:jboss/mail/Default]
> 11:46:23,526 INFO [org.jboss.as.connector.subsystems.datasources] (ServerService Thread Pool -- 29) JBAS010403: Deploying JDBC-compliant driver class org.h2.Driver (version 1.3)
> 11:46:23,529 INFO [org.jboss.as.connector.deployers.jdbc] (MSC service thread 1-2) JBAS010417: Started Driver service with driver-name = h2
> 11:46:23,604 INFO [io.undertow] (ServerService Thread Pool -- 51) Creating file handler for path /home/awhiteside/Downloads/jboss-as-8.0.0.Alpha1-SNAPSHOT/welcome-content
> 11:46:23,613 INFO [org.jboss.ws.common.management] (MSC service thread 1-3) JBWS022052: Starting JBoss Web Services - Stack CXF Server 4.2.0.Alpha1
> 11:46:23,645 INFO [org.jboss.as.undertow] (MSC service thread 1-4) Starting server server service: service jboss.undertow.server.default-server
> 11:46:23,658 INFO [org.jboss.as.undertow] (MSC service thread 1-6) Starting host default-host
> 11:46:23,658 INFO [org.jboss.as.undertow] (MSC service thread 1-6) registering handler io.undertow.server.handlers.resource.ResourceHandler@52540bd6 under path '/'
> 11:46:23,682 INFO [org.jboss.as.undertow] (MSC service thread 1-4) JBAS017519: Undertow HTTP listener default listening on /127.0.0.1:8080
> 11:46:23,885 INFO [org.jboss.as.connector.subsystems.datasources] (MSC service thread 1-7) JBAS010400: Bound data source [java:jboss/datasources/ExampleDS]
> 11:46:23,920 INFO [org.jboss.as.remoting] (MSC service thread 1-6) JBAS017100: Listening on 127.0.0.1:9999
> 11:46:23,920 INFO [org.jboss.as.remoting] (MSC service thread 1-5) JBAS017100: Listening on 127.0.0.1:4447
> 11:46:23,931 INFO [org.jboss.as.server.deployment] (MSC service thread 1-1) JBAS015876: Starting deployment of "ch-smpp-5.0.1.jar" (runtime-name: "ch-smpp-5.0.1.jar")
> 11:46:23,932 INFO [org.jboss.as.server.deployment] (MSC service thread 1-7) JBAS015876: Starting deployment of "carrier-id-mapping-service-api-0.4-SNAPSHOT.jar" (runtime-name: "carrier-id-mapping-service-api-0.4-SNAPSHOT.jar")
> 11:46:23,933 INFO [org.jboss.as.server.deployment] (MSC service thread 1-1) JBAS015876: Starting deployment of "camel-sjms-2.12-20130415.050502-14.jar" (runtime-name: "camel-sjms-2.12-20130415.050502-14.jar")
> 11:46:23,933 INFO [org.jboss.as.server.deployment] (MSC service thread 1-7) JBAS015876: Starting deployment of "hornetq-integration-0.4-SNAPSHOT.jar" (runtime-name: "hornetq-integration-0.4-SNAPSHOT.jar")
> 11:46:23,933 INFO [org.jboss.as.server.deployment] (MSC service thread 1-1) JBAS015876: Starting deployment of "org.springframework.aop-3.2.2.RELEASE.jar" (runtime-name: "org.springframework.aop-3.2.2.RELEASE.jar")
> 11:46:23,931 INFO [org.jboss.as.server.deployment] (MSC service thread 1-2) JBAS015876: Starting deployment of "org.springframework.aspects-3.2.2.RELEASE.jar" (runtime-name: "org.springframework.aspects-3.2.2.RELEASE.jar")
> 11:46:23,934 INFO [org.jboss.as.server.deployment] (MSC service thread 1-7) JBAS015876: Starting deployment of "voldemort-osgi-1.3.1.jar" (runtime-name: "voldemort-osgi-1.3.1.jar")
> 11:46:23,933 INFO [org.jboss.as.server.deployment] (MSC service thread 1-4) JBAS015876: Starting deployment of "com.springsource.org.aspectj.weaver-1.7.1.RELEASE.jar" (runtime-name: "com.springsource.org.aspectj.weaver-1.7.1.RELEASE.jar")
> 11:46:23,935 INFO [org.jboss.as.server.deployment] (MSC service thread 1-2) JBAS015876: Starting deployment of "commons-logging-1.1.1.jar" (runtime-name: "commons-logging-1.1.1.jar")
> 11:46:23,936 INFO [org.jboss.as.server.deployment] (MSC service thread 1-4) JBAS015876: Starting deployment of "org.springframework.transaction-3.2.2.RELEASE.jar" (runtime-name: "org.springframework.transaction-3.2.2.RELEASE.jar")
> 11:46:23,936 INFO [org.jboss.as.server.deployment] (MSC service thread 1-4) JBAS015876: Starting deployment of "protostuff-core-1.0.7.jar" (runtime-name: "protostuff-core-1.0.7.jar")
> 11:46:23,937 INFO [org.jboss.as.server.deployment] (MSC service thread 1-4) JBAS015876: Starting deployment of "http-component-spi-0.4-20130402.174124-2.jar" (runtime-name: "http-component-spi-0.4-20130402.174124-2.jar")
> 11:46:23,937 INFO [org.jboss.as.server.deployment] (MSC service thread 1-4) JBAS015876: Starting deployment of "routing-engine-0.4-SNAPSHOT.jar" (runtime-name: "routing-engine-0.4-SNAPSHOT.jar")
> 11:46:23,937 INFO [org.jboss.as.server.deployment] (MSC service thread 1-4) JBAS015876: Starting deployment of "org.apache.servicemix.bundles.kxml2-2.3.0_3.jar" (runtime-name: "org.apache.servicemix.bundles.kxml2-2.3.0_3.jar")
> 11:46:23,938 INFO [org.jboss.as.server.deployment] (MSC service thread 1-4) JBAS015876: Starting deployment of "cloudhopper-smpp-component-1.0-SNAPSHOT.jar" (runtime-name: "cloudhopper-smpp-component-1.0-SNAPSHOT.jar")
> 11:46:23,938 INFO [org.jboss.as.server.deployment] (MSC service thread 1-4) JBAS015876: Starting deployment of "org.springframework.core-3.2.2.RELEASE.jar" (runtime-name: "org.springframework.core-3.2.2.RELEASE.jar")
> 11:46:23,939 INFO [org.jboss.as.server.deployment] (MSC service thread 1-4) JBAS015876: Starting deployment of "carrier-datacoding-mapping-service-impl-0.4-SNAPSHOT.jar" (runtime-name: "carrier-datacoding-mapping-service-impl-0.4-SNAPSHOT.jar")
> 11:46:23,939 INFO [org.jboss.as.server.deployment] (MSC service thread 1-4) JBAS015876: Starting deployment of "carrier-id-mapping-service-impl-0.4-SNAPSHOT.jar" (runtime-name: "carrier-id-mapping-service-impl-0.4-SNAPSHOT.jar")
> 11:46:23,940 INFO [org.jboss.as.server.deployment] (MSC service thread 1-5) JBAS015876: Starting deployment of "gemini-blueprint-io-1.0.2.RELEASE.jar" (runtime-name: "gemini-blueprint-io-1.0.2.RELEASE.jar")
> 11:46:23,940 INFO [org.jboss.as.server.deployment] (MSC service thread 1-4) JBAS015876: Starting deployment of "jcl-over-slf4j-1.7.5.jar" (runtime-name: "jcl-over-slf4j-1.7.5.jar")
> 11:46:23,940 INFO [org.jboss.as.server.deployment] (MSC service thread 1-4) JBAS015876: Starting deployment of "jetty-server-9.0.1.v20130408.jar" (runtime-name: "jetty-server-9.0.1.v20130408.jar")
> 11:46:23,941 INFO [org.jboss.as.server.deployment] (MSC service thread 1-4) JBAS015876: Starting deployment of "org.springframework.jms-3.2.2.RELEASE.jar" (runtime-name: "org.springframework.jms-3.2.2.RELEASE.jar")
> 11:46:23,941 INFO [org.jboss.as.server.deployment] (MSC service thread 1-4) JBAS015876: Starting deployment of "woodstox-core-asl-4.0.3.jar" (runtime-name: "woodstox-core-asl-4.0.3.jar")
> 11:46:23,942 INFO [org.jboss.as.server.deployment] (MSC service thread 1-8) JBAS015876: Starting deployment of "org.springframework.beans-3.2.2.RELEASE.jar" (runtime-name: "org.springframework.beans-3.2.2.RELEASE.jar")
> 11:46:23,942 INFO [org.jboss.as.server.deployment] (MSC service thread 1-4) JBAS015876: Starting deployment of "commons-io-2.4.jar" (runtime-name: "commons-io-2.4.jar")
> 11:46:23,942 INFO [org.jboss.as.server.deployment] (MSC service thread 1-8) JBAS015876: Starting deployment of "log4j-over-slf4j-1.7.5.jar" (runtime-name: "log4j-over-slf4j-1.7.5.jar")
> 11:46:23,943 INFO [org.jboss.as.server.deployment] (MSC service thread 1-4) JBAS015876: Starting deployment of "commons-lang-2.5.jar" (runtime-name: "commons-lang-2.5.jar")
> 11:46:23,943 INFO [org.jboss.as.server.deployment] (MSC service thread 1-8) JBAS015876: Starting deployment of "org.apache.servicemix.bundles.libthrift-0.7.0_1.jar" (runtime-name: "org.apache.servicemix.bundles.libthrift-0.7.0_1.jar")
> 11:46:23,943 INFO [org.jboss.as.server.deployment] (MSC service thread 1-4) JBAS015876: Starting deployment of "smq-schema-1.2.jar" (runtime-name: "smq-schema-1.2.jar")
> 11:46:23,943 INFO [org.jboss.as.server.deployment] (MSC service thread 1-8) JBAS015876: Starting deployment of "slf4j-api-1.7.5.jar" (runtime-name: "slf4j-api-1.7.5.jar")
> 11:46:23,936 INFO [org.jboss.as.server.deployment] (MSC service thread 1-1) JBAS015876: Starting deployment of "com.springsource.com.fasterxml.jackson.core.jackson-core-2.0.2.jar" (runtime-name: "com.springsource.com.fasterxml.jackson.core.jackson-core-2.0.2.jar")
> 11:46:23,944 INFO [org.jboss.as.server.deployment] (MSC service thread 1-8) JBAS015876: Starting deployment of "org.springframework.jdbc-3.2.2.RELEASE.jar" (runtime-name: "org.springframework.jdbc-3.2.2.RELEASE.jar")
> 11:46:23,944 INFO [org.jboss.as.server.deployment] (MSC service thread 1-1) JBAS015876: Starting deployment of "dummy-0.4-SNAPSHOT.jar" (runtime-name: "dummy-0.4-SNAPSHOT.jar")
> 11:46:23,944 INFO [org.jboss.as.server.deployment] (MSC service thread 1-8) JBAS015876: Starting deployment of "ch-commons-util-6.0.1.jar" (runtime-name: "ch-commons-util-6.0.1.jar")
> 11:46:23,942 INFO [org.jboss.as.server.deployment] (MSC service thread 1-2) JBAS015876: Starting deployment of "avro-1.7.2.jar" (runtime-name: "avro-1.7.2.jar")
> 11:46:23,949 INFO [org.jboss.as.server.deployment] (MSC service thread 1-8) JBAS015876: Starting deployment of "stax2-api-3.0.1.jar" (runtime-name: "stax2-api-3.0.1.jar")
> 11:46:23,940 INFO [org.jboss.as.server.deployment] (MSC service thread 1-5) JBAS015876: Starting deployment of "org.springframework.orm-3.2.2.RELEASE.jar" (runtime-name: "org.springframework.orm-3.2.2.RELEASE.jar")
> 11:46:23,950 INFO [org.jboss.as.server.deployment] (MSC service thread 1-8) JBAS015876: Starting deployment of "camel-jms-2.12-20130415.050425-14.jar" (runtime-name: "camel-jms-2.12-20130415.050425-14.jar")
> 11:46:23,950 INFO [org.jboss.as.server.deployment] (MSC service thread 1-5) JBAS015876: Starting deployment of "jackson-core-asl-1.8.8.jar" (runtime-name: "jackson-core-asl-1.8.8.jar")
> 11:46:23,939 INFO [org.jboss.as.server.deployment] (MSC service thread 1-7) JBAS015876: Starting deployment of "jetty-io-9.0.1.v20130408.jar" (runtime-name: "jetty-io-9.0.1.v20130408.jar")
> 11:46:23,950 INFO [org.jboss.as.server.deployment] (MSC service thread 1-8) JBAS015876: Starting deployment of "stax-api-1.0.1.jar" (runtime-name: "stax-api-1.0.1.jar")
> 11:46:23,950 INFO [org.jboss.as.server.deployment] (MSC service thread 1-7) JBAS015876: Starting deployment of "jetty-security-9.0.1.v20130408.jar" (runtime-name: "jetty-security-9.0.1.v20130408.jar")
> 11:46:23,951 INFO [org.jboss.as.server.deployment] (MSC service thread 1-8) JBAS015876: Starting deployment of "paranamer-2.3.jar" (runtime-name: "paranamer-2.3.jar")
> 11:46:23,951 INFO [org.jboss.as.server.deployment] (MSC service thread 1-7) JBAS015876: Starting deployment of "hawtio-osgi-1.0.war" (runtime-name: "hawtio-osgi-1.0.war")
> 11:46:23,951 INFO [org.jboss.as.server.deployment] (MSC service thread 1-8) JBAS015876: Starting deployment of "org.eclipse.gemini.management-1.0.5.RELEASE.jar" (runtime-name: "org.eclipse.gemini.management-1.0.5.RELEASE.jar")
> 11:46:23,951 INFO [org.jboss.as.server.deployment] (MSC service thread 1-7) JBAS015876: Starting deployment of "protostuff-runtime-1.0.7.jar" (runtime-name: "protostuff-runtime-1.0.7.jar")
> 11:46:23,952 INFO [org.jboss.as.server.deployment] (MSC service thread 1-8) JBAS015876: Starting deployment of "commons-pool-1.6.jar" (runtime-name: "commons-pool-1.6.jar")
> 11:46:23,952 INFO [org.jboss.as.server.deployment] (MSC service thread 1-7) JBAS015876: Starting deployment of "org.springframework.context-3.2.2.RELEASE.jar" (runtime-name: "org.springframework.context-3.2.2.RELEASE.jar")
> 11:46:23,952 INFO [org.jboss.as.server.deployment] (MSC service thread 1-8) JBAS015876: Starting deployment of "org.springframework.expression-3.2.2.RELEASE.jar" (runtime-name: "org.springframework.expression-3.2.2.RELEASE.jar")
> 11:46:23,952 INFO [org.jboss.as.server.deployment] (MSC service thread 1-7) JBAS015876: Starting deployment of "http-component-0.4-SNAPSHOT.jar" (runtime-name: "http-component-0.4-SNAPSHOT.jar")
> 11:46:23,952 INFO [org.jboss.as.server.deployment] (MSC service thread 1-8) JBAS015876: Starting deployment of "jackson-mapper-asl-1.8.8.jar" (runtime-name: "jackson-mapper-asl-1.8.8.jar")
> 11:46:23,953 INFO [org.jboss.as.server.deployment] (MSC service thread 1-7) JBAS015876: Starting deployment of "ch-commons-charset-3.0.0.jar" (runtime-name: "ch-commons-charset-3.0.0.jar")
> 11:46:23,953 INFO [org.jboss.as.server.deployment] (MSC service thread 1-8) JBAS015876: Starting deployment of "logback-core-1.0.11.jar" (runtime-name: "logback-core-1.0.11.jar")
> 11:46:23,953 INFO [org.jboss.as.server.deployment] (MSC service thread 1-7) JBAS015876: Starting deployment of "org.osgi.enterprise-5.0.0.jar" (runtime-name: "org.osgi.enterprise-5.0.0.jar")
> 11:46:23,953 INFO [org.jboss.as.server.deployment] (MSC service thread 1-8) JBAS015876: Starting deployment of "carrier-datacoding-mapping-service-api-0.4-SNAPSHOT.jar" (runtime-name: "carrier-datacoding-mapping-service-api-0.4-SNAPSHOT.jar")
> 11:46:23,953 INFO [org.jboss.as.server.deployment] (MSC service thread 1-7) JBAS015876: Starting deployment of "org.apache.servicemix.bundles.xmlpull-1.1.3.1_2.jar" (runtime-name: "org.apache.servicemix.bundles.xmlpull-1.1.3.1_2.jar")
> 11:46:23,954 INFO [org.jboss.as.server.deployment] (MSC service thread 1-7) JBAS015876: Starting deployment of "cloudhopper-smpp-component-spi-1.0-SNAPSHOT.jar" (runtime-name: "cloudhopper-smpp-component-spi-1.0-SNAPSHOT.jar")
> 11:46:23,955 INFO [org.jboss.as.server.deployment] (MSC service thread 1-7) JBAS015876: Starting deployment of "gemini-blueprint-extender-1.0.2.RELEASE.jar" (runtime-name: "gemini-blueprint-extender-1.0.2.RELEASE.jar")
> 11:46:23,955 INFO [org.jboss.as.server.deployment] (MSC service thread 1-7) JBAS015876: Starting deployment of "smq-common-1.2.jar" (runtime-name: "smq-common-1.2.jar")
> 11:46:23,955 INFO [org.jboss.as.server.deployment] (MSC service thread 1-7) JBAS015876: Starting deployment of "protostuff-api-1.0.7.jar" (runtime-name: "protostuff-api-1.0.7.jar")
> 11:46:23,956 INFO [org.jboss.as.server.deployment] (MSC service thread 1-7) JBAS015876: Starting deployment of "carrier-statuscode-mapping-service-impl-0.4-SNAPSHOT.jar" (runtime-name: "carrier-statuscode-mapping-service-impl-0.4-SNAPSHOT.jar")
> 11:46:23,956 INFO [org.jboss.as.server.deployment] (MSC service thread 1-7) JBAS015876: Starting deployment of "protostuff-collectionschema-1.0.7.jar" (runtime-name: "protostuff-collectionschema-1.0.7.jar")
> 11:46:23,957 INFO [org.jboss.as.server.deployment] (MSC service thread 1-7) JBAS015876: Starting deployment of "protostuff-uberjar-1.0.7.jar" (runtime-name: "protostuff-uberjar-1.0.7.jar")
> 11:46:23,957 INFO [org.jboss.as.server.deployment] (MSC service thread 1-7) JBAS015876: Starting deployment of "jetty-util-9.0.1.v20130408.jar" (runtime-name: "jetty-util-9.0.1.v20130408.jar")
> 11:46:23,958 INFO [org.jboss.as.server.deployment] (MSC service thread 1-7) JBAS015876: Starting deployment of "jetty-servlet-9.0.1.v20130408.jar" (runtime-name: "jetty-servlet-9.0.1.v20130408.jar")
> 11:46:23,958 INFO [org.jboss.as.server.deployment] (MSC service thread 1-7) JBAS015876: Starting deployment of "logback-classic-1.0.11.jar" (runtime-name: "logback-classic-1.0.11.jar")
> 11:46:23,939 INFO [org.jboss.as.server.deployment.scanner] (MSC service thread 1-6) JBAS015012: Started FileSystemDeploymentService for directory /home/awhiteside/Downloads/jboss-as-8.0.0.Alpha1-SNAPSHOT/standalone/deployments
> 11:46:23,954 INFO [org.jboss.as.server.deployment] (MSC service thread 1-5) JBAS015876: Starting deployment of "netty-3.6.3.Final.jar" (runtime-name: "netty-3.6.3.Final.jar")
> 11:46:23,954 INFO [org.jboss.as.server.deployment] (MSC service thread 1-8) JBAS015876: Starting deployment of "snappy-java-1.0.4.1.jar" (runtime-name: "snappy-java-1.0.4.1.jar")
> 11:46:23,949 INFO [org.jboss.as.server.deployment] (MSC service thread 1-2) JBAS015876: Starting deployment of "jgroups-3.2.5.Final.jar" (runtime-name: "jgroups-3.2.5.Final.jar")
> 11:46:23,961 INFO [org.jboss.as.server.deployment] (MSC service thread 1-5) JBAS015876: Starting deployment of "jetty-jmx-9.0.1.v20130408.jar" (runtime-name: "jetty-jmx-9.0.1.v20130408.jar")
> 11:46:23,943 INFO [org.jboss.as.server.deployment] (MSC service thread 1-4) JBAS015876: Starting deployment of "voldemort-aggregation-repository-0.4-SNAPSHOT.jar" (runtime-name: "voldemort-aggregation-repository-0.4-SNAPSHOT.jar")
> 11:46:23,961 INFO [org.jboss.as.server.deployment] (MSC service thread 1-5) JBAS015876: Starting deployment of "smq-opaque-schema-1.2.jar" (runtime-name: "smq-opaque-schema-1.2.jar")
> 11:46:23,961 INFO [org.jboss.as.server.deployment] (MSC service thread 1-4) JBAS015876: Starting deployment of "number-service-api-0.4-SNAPSHOT.jar" (runtime-name: "number-service-api-0.4-SNAPSHOT.jar")
> 11:46:23,961 INFO [org.jboss.as.server.deployment] (MSC service thread 1-5) JBAS015876: Starting deployment of "jdom-1.1.3.jar" (runtime-name: "jdom-1.1.3.jar")
> 11:46:23,962 INFO [org.jboss.as.server.deployment] (MSC service thread 1-4) JBAS015876: Starting deployment of "number-service-impl-0.4-SNAPSHOT.jar" (runtime-name: "number-service-impl-0.4-SNAPSHOT.jar")
> 11:46:23,962 INFO [org.jboss.as.server.deployment] (MSC service thread 1-5) JBAS015876: Starting deployment of "smq-fs-1.2.jar" (runtime-name: "smq-fs-1.2.jar")
> 11:46:23,962 INFO [org.jboss.as.server.deployment] (MSC service thread 1-4) JBAS015876: Starting deployment of "protobuf-java-2.4.1.jar" (runtime-name: "protobuf-java-2.4.1.jar")
> 11:46:23,962 INFO [org.jboss.as.server.deployment] (MSC service thread 1-5) JBAS015876: Starting deployment of "joda-time-2.2.jar" (runtime-name: "joda-time-2.2.jar")
> 11:46:23,962 INFO [org.jboss.as.server.deployment] (MSC service thread 1-4) JBAS015876: Starting deployment of "gemini-blueprint-core-1.0.2.RELEASE.jar" (runtime-name: "gemini-blueprint-core-1.0.2.RELEASE.jar")
> 11:46:23,963 INFO [org.jboss.as.server.deployment] (MSC service thread 1-5) JBAS015876: Starting deployment of "com.springsource.org.aopalliance-1.0.0.jar" (runtime-name: "com.springsource.org.aopalliance-1.0.0.jar")
> 11:46:23,963 INFO [org.jboss.as.server.deployment] (MSC service thread 1-4) JBAS015876: Starting deployment of "voldemort-protostuff-serializer-1.1.jar" (runtime-name: "voldemort-protostuff-serializer-1.1.jar")
> 11:46:23,963 INFO [org.jboss.as.server.deployment] (MSC service thread 1-5) JBAS015876: Starting deployment of "smq-spi-1.2.jar" (runtime-name: "smq-spi-1.2.jar")
> 11:46:23,963 INFO [org.jboss.as.server.deployment] (MSC service thread 1-4) JBAS015876: Starting deployment of "smq-component-1.2.jar" (runtime-name: "smq-component-1.2.jar")
> 11:46:23,964 INFO [org.jboss.as.server.deployment] (MSC service thread 1-5) JBAS015876: Starting deployment of "smq-common-codecs-1.2.jar" (runtime-name: "smq-common-codecs-1.2.jar")
> 11:46:23,944 INFO [org.jboss.as.server.deployment] (MSC service thread 1-1) JBAS015876: Starting deployment of "camel-core-2.12-20130415.050256-14.jar" (runtime-name: "camel-core-2.12-20130415.050256-14.jar")
> 11:46:23,964 INFO [org.jboss.as.server.deployment] (MSC service thread 1-6) JBAS015876: Starting deployment of "camel-spring-2.12-20130415.050508-14.jar" (runtime-name: "camel-spring-2.12-20130415.050508-14.jar")
> 11:46:23,964 INFO [org.jboss.as.server.deployment] (MSC service thread 1-5) JBAS015876: Starting deployment of "commons-codec-1.7.jar" (runtime-name: "commons-codec-1.7.jar")
> 11:46:23,964 INFO [org.jboss.as.server.deployment] (MSC service thread 1-4) JBAS015876: Starting deployment of "common-message-0.4-SNAPSHOT.jar" (runtime-name: "common-message-0.4-SNAPSHOT.jar")
> 11:46:23,961 INFO [org.jboss.as.server.deployment] (MSC service thread 1-2) JBAS015876: Starting deployment of "jetty-http-9.0.1.v20130408.jar" (runtime-name: "jetty-http-9.0.1.v20130408.jar")
> 11:46:23,961 INFO [org.jboss.as.server.deployment] (MSC service thread 1-8) JBAS015876: Starting deployment of "guava-13.0.1.jar" (runtime-name: "guava-13.0.1.jar")
> 11:46:23,958 INFO [org.jboss.as.server.deployment] (MSC service thread 1-7) JBAS015876: Starting deployment of "carrier-statuscode-mapping-service-api-0.4-SNAPSHOT.jar" (runtime-name: "carrier-statuscode-mapping-service-api-0.4-SNAPSHOT.jar")
> 11:46:25,161 INFO [org.jboss.osgi.framework] (MSC service thread 1-6) JBOSGI011006: OSGi Framework - 3.0.0.CR17
> 11:46:25,463 INFO [org.jboss.osgi.framework] (MSC service thread 1-3) JBOSGI011001: Bundle installed: org.apache.felix.log:1.0.0
> 11:46:25,465 INFO [org.jboss.osgi.framework] (MSC service thread 1-3) JBOSGI011001: Bundle installed: jboss-osgi-logging:1.0.0
> 11:46:25,468 INFO [org.jboss.osgi.framework] (MSC service thread 1-3) JBOSGI011001: Bundle installed: org.apache.felix.configadmin:1.2.8
> 11:46:25,470 INFO [org.jboss.osgi.framework] (MSC service thread 1-3) JBOSGI011001: Bundle installed: jboss-as-osgi-configadmin:8.0.0.Alpha1-SNAPSHOT
> 11:46:25,527 INFO [org.jboss.as.osgi] (MSC service thread 1-6) JBAS011907: Register module: deployment.log4j-over-slf4j-1.7.5.jar:main
> 11:46:25,548 INFO [org.jboss.as.osgi] (MSC service thread 1-6) JBAS011907: Register module: deployment.protostuff-core-1.0.7.jar:main
> 11:46:25,598 INFO [org.jboss.as.osgi] (MSC service thread 1-6) JBAS011907: Register module: deployment.protostuff-runtime-1.0.7.jar:main
> 11:46:25,616 INFO [org.jboss.as.osgi] (MSC service thread 1-6) JBAS011907: Register module: deployment.protobuf-java-2.4.1.jar:main
> 11:46:25,636 INFO [org.jboss.as.osgi] (MSC service thread 1-6) JBAS011907: Register module: deployment.paranamer-2.3.jar:main
> 11:46:25,657 INFO [org.jboss.as.osgi] (MSC service thread 1-6) JBAS011907: Register module: deployment.avro-1.7.2.jar:main
> 11:46:25,677 INFO [org.jboss.as.osgi] (MSC service thread 1-6) JBAS011907: Register module: deployment.protostuff-api-1.0.7.jar:main
> 11:46:25,699 INFO [org.jboss.as.osgi] (MSC service thread 1-6) JBAS011907: Register module: deployment.jdom-1.1.3.jar:main
> 11:46:25,719 INFO [org.jboss.as.osgi] (MSC service thread 1-6) JBAS011907: Register module: deployment.protostuff-collectionschema-1.0.7.jar:main
> 11:46:25,739 INFO [org.jboss.as.osgi] (MSC service thread 1-6) JBAS011907: Register module: deployment.stax-api-1.0.1.jar:main
> 11:46:25,759 INFO [org.jboss.as.osgi] (MSC service thread 1-6) JBAS011907: Register module: deployment.commons-logging-1.1.1.jar:main
> 11:46:25,781 INFO [org.jboss.osgi.framework] (MSC service thread 1-1) JBOSGI011001: Bundle installed: com.mm.gateway.messaging.carrier-datacoding-mapping-service-api:0.4.0.SNAPSHOT
> 11:46:25,793 INFO [org.jboss.osgi.framework] (MSC service thread 1-1) JBOSGI011001: Bundle installed: com.cloudhopper.ch-commons-charset:3.0.0
> 11:46:25,782 INFO [org.jboss.osgi.framework] (MSC service thread 1-2) JBOSGI011001: Bundle installed: com.dyuproject.protostuff.uberjar:1.0.7
> 11:46:25,787 INFO [org.jboss.osgi.framework] (MSC service thread 1-4) JBOSGI011001: Bundle installed: stax2-api:3.0.1
> 11:46:25,801 INFO [org.jboss.osgi.framework] (MSC service thread 1-4) JBOSGI011001: Bundle installed: org.eclipse.jetty.http:9.0.1.v20130408
> 11:46:25,802 INFO [org.jboss.osgi.framework] (MSC service thread 1-4) JBOSGI011001: Bundle installed: com.mm.gateway.messaging.common-message:0.4.0.SNAPSHOT
> 11:46:25,785 INFO [org.jboss.osgi.framework] (MSC service thread 1-8) JBOSGI011001: Bundle installed: com.verisign.smq.schema:1.2.0
> 11:46:25,808 INFO [org.jboss.osgi.framework] (MSC service thread 1-5) JBOSGI011001: Bundle installed: jackson-mapper-asl:1.8.8
> 11:46:25,814 INFO [org.jboss.osgi.framework] (MSC service thread 1-5) JBOSGI011001: Bundle installed: com.mm.gateway.messaging.carrier-datacoding-mapping-service-impl:0.4.0.SNAPSHOT
> 11:46:25,811 INFO [org.jboss.osgi.framework] (MSC service thread 1-1) JBOSGI011001: Bundle installed: com.mm.gateway.messaging.routing-engine:0.4.0.SNAPSHOT
> 11:46:25,821 INFO [org.jboss.osgi.framework] (MSC service thread 1-1) JBOSGI011001: Bundle installed: com.springsource.org.aopalliance:1.0.0
> 11:46:25,824 INFO [org.jboss.osgi.framework] (MSC service thread 1-1) JBOSGI011001: Bundle installed: com.mm.camel.component.smq.component:1.2.0
> 11:46:25,820 INFO [org.jboss.osgi.framework] (MSC service thread 1-2) JBOSGI011001: Bundle installed: osgi.enterprise:5.0.0.201203141834
> 11:46:25,840 INFO [org.jboss.osgi.framework] (MSC service thread 1-3) JBOSGI011001: Bundle installed: org.apache.camel.camel-core:2.12.0.SNAPSHOT
> 11:46:25,843 INFO [org.jboss.osgi.framework] (MSC service thread 1-8) JBOSGI011001: Bundle installed: org.springframework.core:3.2.2.RELEASE
> 11:46:25,844 INFO [org.jboss.osgi.framework] (MSC service thread 1-1) JBOSGI011001: Bundle installed: com.verisign.smq.opaque-schema:1.2.0
> 11:46:25,845 INFO [org.jboss.osgi.framework] (MSC service thread 1-3) JBOSGI011001: Bundle installed: com.verisign.smq.fs:1.2.0
> 11:46:25,844 INFO [org.jboss.osgi.framework] (MSC service thread 1-5) JBOSGI011001: Bundle installed: org.springframework.jdbc:3.2.2.RELEASE
> 11:46:25,848 INFO [org.jboss.osgi.framework] (MSC service thread 1-5) JBOSGI011001: Bundle installed: com.mm.gateway.messaging.carrier-statuscode-mapping-service-impl:0.4.0.SNAPSHOT
> 11:46:25,850 INFO [org.jboss.osgi.framework] (MSC service thread 1-2) JBOSGI011001: Bundle installed: com.verisign.smq.common:1.2.0
> 11:46:25,853 INFO [org.jboss.osgi.framework] (MSC service thread 1-6) JBOSGI011001: Bundle installed: org.eclipse.gemini.blueprint.core:1.0.2.RELEASE
> 11:46:25,853 INFO [org.jboss.osgi.framework] (MSC service thread 1-7) JBOSGI011001: Bundle installed: ch.qos.logback.classic:1.0.11
> 11:46:25,853 INFO [org.jboss.osgi.framework] (MSC service thread 1-2) JBOSGI011001: Bundle installed: org.springframework.expression:3.2.2.RELEASE
> 11:46:25,859 INFO [org.jboss.osgi.framework] (MSC service thread 1-6) JBOSGI011001: Bundle installed: org.eclipse.jetty.util:9.0.1.v20130408
> 11:46:25,858 INFO [org.jboss.osgi.framework] (MSC service thread 1-1) JBOSGI011001: Bundle installed: jackson-core-asl:1.8.8
> 11:46:25,856 INFO [org.jboss.osgi.framework] (MSC service thread 1-8) JBOSGI011001: Bundle installed: com.mm.gateway.messaging.voldemort-aggregation-repository:0.4.0.SNAPSHOT
> 11:46:25,871 INFO [org.jboss.osgi.framework] (MSC service thread 1-6) JBOSGI011001: Bundle installed: org.eclipse.jetty.io:9.0.1.v20130408
> 11:46:25,872 INFO [org.jboss.osgi.framework] (MSC service thread 1-8) JBOSGI011001: Bundle installed: com.mm.gateway.messaging.number-service-impl:0.4.0.SNAPSHOT
> 11:46:25,873 INFO [org.jboss.osgi.framework] (MSC service thread 1-2) JBOSGI011001: Bundle installed: woodstox-core-asl:4.0.3
> 11:46:25,871 INFO [org.jboss.osgi.framework] (MSC service thread 1-1) JBOSGI011001: Bundle installed: org.eclipse.jetty.servlet:9.0.1.v20130408
> 11:46:25,877 INFO [org.jboss.osgi.framework] (MSC service thread 1-8) JBOSGI011001: Bundle installed: org.apache.servicemix.bundles.libthrift:0.7.0.1
> 11:46:25,878 INFO [org.jboss.osgi.framework] (MSC service thread 1-8) JBOSGI011001: Bundle installed: com.mm.gateway.messaging.carrier-statuscode-mapping-service-api:0.4.0.SNAPSHOT
> 11:46:25,872 INFO [org.jboss.osgi.framework] (MSC service thread 1-4) JBOSGI011001: Bundle installed: com.project-voldemort.voldemort-osgi:1.3.1
> 11:46:25,873 INFO [org.jboss.osgi.framework] (MSC service thread 1-3) JBOSGI011001: Bundle installed: org.springframework.aop:3.2.2.RELEASE
> 11:46:25,873 INFO [org.jboss.osgi.framework] (MSC service thread 1-7) JBOSGI011001: Bundle installed: io.hawt.hawtio-web:1.0.0
> 11:46:25,880 INFO [org.jboss.osgi.framework] (MSC service thread 1-8) JBOSGI011001: Bundle installed: jcl.over.slf4j:1.7.5
> 11:46:25,881 INFO [org.jboss.osgi.framework] (MSC service thread 1-7) JBOSGI011001: Bundle installed: joda-time:2.2.0
> 11:46:25,883 INFO [org.jboss.osgi.framework] (MSC service thread 1-8) JBOSGI011001: Bundle installed: com.verisign.smq.common-codecs:1.2.0
> 11:46:25,886 INFO [org.jboss.osgi.framework] (MSC service thread 1-3) JBOSGI011001: Bundle installed: com.springsource.com.fasterxml.jackson.core.jackson-core:2.0.2
> 11:46:25,886 INFO [org.jboss.osgi.framework] (MSC service thread 1-7) JBOSGI011001: Bundle installed: com.mm.camel.component.http.dummy:0.4.0.SNAPSHOT
> 11:46:25,891 INFO [org.jboss.osgi.framework] (MSC service thread 1-8) JBOSGI011001: Bundle installed: org.apache.commons.pool:1.6.0
> 11:46:25,892 INFO [org.jboss.osgi.framework] (MSC service thread 1-3) JBOSGI011001: Bundle installed: com.mm.gateway.messaging.number-service-api:0.4.0.SNAPSHOT
> 11:46:25,891 INFO [org.jboss.osgi.framework] (MSC service thread 1-7) JBOSGI011001: Bundle installed: org.eclipse.jetty.jmx:9.0.1.v20130408
> 11:46:25,897 INFO [org.jboss.osgi.framework] (MSC service thread 1-7) JBOSGI011001: Bundle installed: com.mm.camel.component.http.component:0.4.0.SNAPSHOT
> 11:46:25,900 INFO [org.jboss.osgi.framework] (MSC service thread 1-8) JBOSGI011001: Bundle installed: org.apache.commons.codec:1.7.0
> 11:46:25,898 INFO [org.jboss.osgi.framework] (MSC service thread 1-5) JBOSGI011001: Bundle installed: org.springframework.transaction:3.2.2.RELEASE
> 11:46:25,903 INFO [org.jboss.osgi.framework] (MSC service thread 1-5) JBOSGI011001: Bundle installed: org.eclipse.gemini.management:1.0.5.RELEASE
> 11:46:25,899 INFO [org.jboss.osgi.framework] (MSC service thread 1-4) JBOSGI011001: Bundle installed: org.apache.commons.lang:2.5.0
> 11:46:25,906 INFO [org.jboss.osgi.framework] (MSC service thread 1-7) JBOSGI011001: Bundle installed: com.mm.camel.component.smpp.cloudhopper-smpp-component:1.0.0.SNAPSHOT
> 11:46:25,909 INFO [org.jboss.osgi.framework] (MSC service thread 1-3) JBOSGI011001: Bundle installed: com.mm.gateway.messaging.hornetq-integration:0.4.0.SNAPSHOT
> 11:46:25,911 INFO [org.jboss.osgi.framework] (MSC service thread 1-7) JBOSGI011001: Bundle installed: com.mm.gateway.messaging.carrier-id-mapping-service-api:0.4.0.SNAPSHOT
> 11:46:25,915 INFO [org.jboss.osgi.framework] (MSC service thread 1-8) JBOSGI011001: Bundle installed: com.springsource.org.aspectj.weaver:1.7.1.RELEASE
> 11:46:25,918 INFO [org.jboss.osgi.framework] (MSC service thread 1-8) JBOSGI011001: Bundle installed: org.apache.commons.io:2.4.0
> 11:46:25,918 INFO [org.jboss.osgi.framework] (MSC service thread 1-7) JBOSGI011001: Bundle installed: com.verisign.smq.spi:1.2.0
> 11:46:25,931 INFO [org.jboss.osgi.framework] (MSC service thread 1-6) JBOSGI011001: Bundle installed: org.jboss.netty:3.6.3.Final
> 11:46:25,935 INFO [org.jboss.osgi.framework] (MSC service thread 1-7) JBOSGI011001: Bundle installed: org.eclipse.jetty.security:9.0.1.v20130408
> 11:46:25,939 INFO [org.jboss.osgi.framework] (MSC service thread 1-6) JBOSGI011001: Bundle installed: org.eclipse.gemini.blueprint.io:1.0.2.RELEASE
> 11:46:25,944 INFO [org.jboss.osgi.framework] (MSC service thread 1-3) JBOSGI011001: Bundle installed: org.eclipse.gemini.blueprint.extender:1.0.2.RELEASE
> 11:46:25,946 INFO [org.jboss.osgi.framework] (MSC service thread 1-4) JBOSGI011001: Bundle installed: ch.qos.logback.core:1.0.11
> 11:46:25,944 INFO [org.jboss.osgi.framework] (MSC service thread 1-8) JBOSGI011001: Bundle installed: org.jgroups:3.2.5.Final
> 11:46:25,948 INFO [org.jboss.osgi.framework] (MSC service thread 1-8) JBOSGI011001: Bundle installed: com.mm.camel.component.smpp.cloudhopper-smpp-component-spi:1.0.0.SNAPSHOT
> 11:46:25,953 INFO [org.jboss.osgi.framework] (MSC service thread 1-8) JBOSGI011001: Bundle installed: org.apache.camel.camel-sjms:2.12.0.SNAPSHOT
> 11:46:25,954 INFO [org.jboss.osgi.framework] (MSC service thread 1-2) JBOSGI011001: Bundle installed: org.springframework.context:3.2.2.RELEASE
> 11:46:25,955 INFO [org.jboss.osgi.framework] (MSC service thread 1-1) JBOSGI011001: Bundle installed: org.springframework.orm:3.2.2.RELEASE
> 11:46:25,955 INFO [org.jboss.osgi.framework] (MSC service thread 1-5) JBOSGI011001: Bundle installed: org.springframework.beans:3.2.2.RELEASE
> 11:46:25,955 INFO [org.jboss.osgi.framework] (MSC service thread 1-3) JBOSGI011001: Bundle installed: slf4j.api:1.7.5
> 11:46:25,957 INFO [org.jboss.osgi.framework] (MSC service thread 1-2) JBOSGI011001: Bundle installed: com.mm.camel.component.http.component-spi:0.4.0.SNAPSHOT
> 11:46:25,957 INFO [org.jboss.osgi.framework] (MSC service thread 1-5) JBOSGI011001: Bundle installed: com.mm.voldemort.protostuff-serializer:1.1.0
> 11:46:25,960 INFO [org.jboss.osgi.framework] (MSC service thread 1-2) JBOSGI011001: Bundle installed: com.google.guava:13.0.1
> 11:46:25,962 INFO [org.jboss.osgi.framework] (MSC service thread 1-4) JBOSGI011001: Bundle installed: com.mm.gateway.messaging.carrier-id-mapping-service-impl:0.4.0.SNAPSHOT
> 11:46:25,963 INFO [org.jboss.osgi.framework] (MSC service thread 1-5) JBOSGI011001: Bundle installed: org.apache.camel.camel-jms:2.12.0.SNAPSHOT
> 11:46:25,954 INFO [org.jboss.osgi.framework] (MSC service thread 1-7) JBOSGI011001: Bundle installed: com.cloudhopper.ch-commons-util:6.0.1
> 11:46:25,966 INFO [org.jboss.osgi.framework] (MSC service thread 1-7) JBOSGI011001: Bundle installed: org.apache.servicemix.bundles.xmlpull:1.1.3.1_2
> 11:46:25,967 INFO [org.jboss.osgi.framework] (MSC service thread 1-4) JBOSGI011001: Bundle installed: com.cloudhopper.ch-smpp:5.0.1
> 11:46:25,965 INFO [org.jboss.osgi.framework] (MSC service thread 1-8) JBOSGI011001: Bundle installed: org.apache.servicemix.bundles.kxml2:2.3.0.3
> 11:46:25,955 INFO [org.jboss.osgi.framework] (MSC service thread 1-6) JBOSGI011001: Bundle installed: org.eclipse.jetty.server:9.0.1.v20130408
> 11:46:25,969 INFO [org.jboss.osgi.framework] (MSC service thread 1-5) JBOSGI011001: Bundle installed: org.xerial.snappy.snappy-java:1.0.4.1
> 11:46:25,968 INFO [org.jboss.osgi.framework] (MSC service thread 1-1) JBOSGI011001: Bundle installed: org.springframework.jms:3.2.2.RELEASE
> 11:46:25,967 INFO [org.jboss.osgi.framework] (MSC service thread 1-2) JBOSGI011001: Bundle installed: org.springframework.aspects:3.2.2.RELEASE
> 11:46:25,984 INFO [org.jboss.osgi.framework] (MSC service thread 1-3) JBOSGI011001: Bundle installed: org.apache.camel.camel-spring:2.12.0.SNAPSHOT
> 11:46:29,588 ERROR [org.jboss.msc.service.fail] (MSC service thread 1-7) MSC000001: Failed to start service jbosgi.PersistentBundles.RESOLVE: org.jboss.msc.service.StartException in service jbosgi.PersistentBundles.RESOLVE: Failed to start service
> at org.jboss.msc.service.ServiceControllerImpl$StartTask.run(ServiceControllerImpl.java:1930) [jboss-msc-1.1.2.Final.jar:1.1.2.Final]
> at java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1145) [rt.jar:1.7.0_13]
> at java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:615) [rt.jar:1.7.0_13]
> at java.lang.Thread.run(Thread.java:722) [rt.jar:1.7.0_13]
> Caused by: java.lang.NullPointerException
> at org.jboss.as.osgi.service.ModuleLoaderIntegration$FrameworkModuleLoaderImpl.createModuleService(ModuleLoaderIntegration.java:230)
> at org.jboss.osgi.framework.internal.ResolverImpl.createModuleServices(ResolverImpl.java:382)
> at org.jboss.osgi.framework.internal.ResolverImpl.applyResolverResults(ResolverImpl.java:319)
> at org.jboss.osgi.framework.internal.ResolverImpl.resolveInternal(ResolverImpl.java:179)
> at org.jboss.osgi.framework.internal.ResolverImpl.resolveAndApply(ResolverImpl.java:125)
> at org.jboss.osgi.framework.internal.FrameworkWiringImpl.resolveBundles(FrameworkWiringImpl.java:241)
> at org.jboss.osgi.framework.spi.BootstrapBundlesResolve.start(BootstrapBundlesResolve.java:122)
> at org.jboss.msc.service.ServiceControllerImpl$StartTask.startService(ServiceControllerImpl.java:1974) [jboss-msc-1.1.2.Final.jar:1.1.2.Final]
> at org.jboss.msc.service.ServiceControllerImpl$StartTask.run(ServiceControllerImpl.java:1907) [jboss-msc-1.1.2.Final.jar:1.1.2.Final]
> ... 3 more
> 11:46:29,637 INFO [org.jboss.as.server] (ServerService Thread Pool -- 30) JBAS018559: Deployed "log4j-over-slf4j-1.7.5.jar" (runtime-name : "log4j-over-slf4j-1.7.5.jar")
> 11:46:29,638 INFO [org.jboss.as.server] (ServerService Thread Pool -- 30) JBAS018559: Deployed "jcl-over-slf4j-1.7.5.jar" (runtime-name : "jcl-over-slf4j-1.7.5.jar")
> 11:46:29,638 INFO [org.jboss.as.server] (ServerService Thread Pool -- 30) JBAS018559: Deployed "org.springframework.beans-3.2.2.RELEASE.jar" (runtime-name : "org.springframework.beans-3.2.2.RELEASE.jar")
> 11:46:29,638 INFO [org.jboss.as.server] (ServerService Thread Pool -- 30) JBAS018559: Deployed "gemini-blueprint-extender-1.0.2.RELEASE.jar" (runtime-name : "gemini-blueprint-extender-1.0.2.RELEASE.jar")
> 11:46:29,639 INFO [org.jboss.as.server] (ServerService Thread Pool -- 30) JBAS018559: Deployed "org.springframework.jdbc-3.2.2.RELEASE.jar" (runtime-name : "org.springframework.jdbc-3.2.2.RELEASE.jar")
> 11:46:29,639 INFO [org.jboss.as.server] (ServerService Thread Pool -- 30) JBAS018559: Deployed "carrier-statuscode-mapping-service-api-0.4-SNAPSHOT.jar" (runtime-name : "carrier-statuscode-mapping-service-api-0.4-SNAPSHOT.jar")
> 11:46:29,639 INFO [org.jboss.as.server] (ServerService Thread Pool -- 30) JBAS018559: Deployed "jetty-util-9.0.1.v20130408.jar" (runtime-name : "jetty-util-9.0.1.v20130408.jar")
> 11:46:29,639 INFO [org.jboss.as.server] (ServerService Thread Pool -- 30) JBAS018559: Deployed "org.apache.servicemix.bundles.libthrift-0.7.0_1.jar" (runtime-name : "org.apache.servicemix.bundles.libthrift-0.7.0_1.jar")
> 11:46:29,639 INFO [org.jboss.as.server] (ServerService Thread Pool -- 30) JBAS018559: Deployed "jetty-server-9.0.1.v20130408.jar" (runtime-name : "jetty-server-9.0.1.v20130408.jar")
> 11:46:29,640 INFO [org.jboss.as.server] (ServerService Thread Pool -- 30) JBAS018559: Deployed "number-service-api-0.4-SNAPSHOT.jar" (runtime-name : "number-service-api-0.4-SNAPSHOT.jar")
> 11:46:29,640 INFO [org.jboss.as.server] (ServerService Thread Pool -- 30) JBAS018559: Deployed "jetty-http-9.0.1.v20130408.jar" (runtime-name : "jetty-http-9.0.1.v20130408.jar")
> 11:46:29,640 INFO [org.jboss.as.server] (ServerService Thread Pool -- 30) JBAS018559: Deployed "hornetq-integration-0.4-SNAPSHOT.jar" (runtime-name : "hornetq-integration-0.4-SNAPSHOT.jar")
> 11:46:29,640 INFO [org.jboss.as.server] (ServerService Thread Pool -- 30) JBAS018559: Deployed "smq-schema-1.2.jar" (runtime-name : "smq-schema-1.2.jar")
> 11:46:29,640 INFO [org.jboss.as.server] (ServerService Thread Pool -- 30) JBAS018559: Deployed "carrier-id-mapping-service-api-0.4-SNAPSHOT.jar" (runtime-name : "carrier-id-mapping-service-api-0.4-SNAPSHOT.jar")
> 11:46:29,640 INFO [org.jboss.as.server] (ServerService Thread Pool -- 30) JBAS018559: Deployed "commons-io-2.4.jar" (runtime-name : "commons-io-2.4.jar")
> 11:46:29,641 INFO [org.jboss.as.server] (ServerService Thread Pool -- 30) JBAS018559: Deployed "carrier-datacoding-mapping-service-api-0.4-SNAPSHOT.jar" (runtime-name : "carrier-datacoding-mapping-service-api-0.4-SNAPSHOT.jar")
> 11:46:29,641 INFO [org.jboss.as.server] (ServerService Thread Pool -- 30) JBAS018559: Deployed "snappy-java-1.0.4.1.jar" (runtime-name : "snappy-java-1.0.4.1.jar")
> 11:46:29,641 INFO [org.jboss.as.server] (ServerService Thread Pool -- 30) JBAS018559: Deployed "netty-3.6.3.Final.jar" (runtime-name : "netty-3.6.3.Final.jar")
> 11:46:29,641 INFO [org.jboss.as.server] (ServerService Thread Pool -- 30) JBAS018559: Deployed "camel-jms-2.12-20130415.050425-14.jar" (runtime-name : "camel-jms-2.12-20130415.050425-14.jar")
> 11:46:29,641 INFO [org.jboss.as.server] (ServerService Thread Pool -- 30) JBAS018559: Deployed "smq-common-codecs-1.2.jar" (runtime-name : "smq-common-codecs-1.2.jar")
> 11:46:29,642 INFO [org.jboss.as.server] (ServerService Thread Pool -- 30) JBAS018559: Deployed "jdom-1.1.3.jar" (runtime-name : "jdom-1.1.3.jar")
> 11:46:29,642 INFO [org.jboss.as.server] (ServerService Thread Pool -- 30) JBAS018559: Deployed "commons-logging-1.1.1.jar" (runtime-name : "commons-logging-1.1.1.jar")
> 11:46:29,642 INFO [org.jboss.as.server] (ServerService Thread Pool -- 30) JBAS018559: Deployed "routing-engine-0.4-SNAPSHOT.jar" (runtime-name : "routing-engine-0.4-SNAPSHOT.jar")
> 11:46:29,642 INFO [org.jboss.as.server] (ServerService Thread Pool -- 30) JBAS018559: Deployed "common-message-0.4-SNAPSHOT.jar" (runtime-name : "common-message-0.4-SNAPSHOT.jar")
> 11:46:29,642 INFO [org.jboss.as.server] (ServerService Thread Pool -- 30) JBAS018559: Deployed "protostuff-runtime-1.0.7.jar" (runtime-name : "protostuff-runtime-1.0.7.jar")
> 11:46:29,642 INFO [org.jboss.as.server] (ServerService Thread Pool -- 30) JBAS018559: Deployed "jetty-servlet-9.0.1.v20130408.jar" (runtime-name : "jetty-servlet-9.0.1.v20130408.jar")
> 11:46:29,643 INFO [org.jboss.as.server] (ServerService Thread Pool -- 30) JBAS018559: Deployed "org.apache.servicemix.bundles.xmlpull-1.1.3.1_2.jar" (runtime-name : "org.apache.servicemix.bundles.xmlpull-1.1.3.1_2.jar")
> 11:46:29,643 INFO [org.jboss.as.server] (ServerService Thread Pool -- 30) JBAS018559: Deployed "joda-time-2.2.jar" (runtime-name : "joda-time-2.2.jar")
> 11:46:29,643 INFO [org.jboss.as.server] (ServerService Thread Pool -- 30) JBAS018559: Deployed "ch-smpp-5.0.1.jar" (runtime-name : "ch-smpp-5.0.1.jar")
> 11:46:29,643 INFO [org.jboss.as.server] (ServerService Thread Pool -- 30) JBAS018559: Deployed "org.apache.servicemix.bundles.kxml2-2.3.0_3.jar" (runtime-name : "org.apache.servicemix.bundles.kxml2-2.3.0_3.jar")
> 11:46:29,643 INFO [org.jboss.as.server] (ServerService Thread Pool -- 30) JBAS018559: Deployed "protostuff-uberjar-1.0.7.jar" (runtime-name : "protostuff-uberjar-1.0.7.jar")
> 11:46:29,643 INFO [org.jboss.as.server] (ServerService Thread Pool -- 30) JBAS018559: Deployed "carrier-datacoding-mapping-service-impl-0.4-SNAPSHOT.jar" (runtime-name : "carrier-datacoding-mapping-service-impl-0.4-SNAPSHOT.jar")
> 11:46:29,644 INFO [org.jboss.as.server] (ServerService Thread Pool -- 30) JBAS018559: Deployed "commons-lang-2.5.jar" (runtime-name : "commons-lang-2.5.jar")
> 11:46:29,644 INFO [org.jboss.as.server] (ServerService Thread Pool -- 30) JBAS018559: Deployed "jetty-security-9.0.1.v20130408.jar" (runtime-name : "jetty-security-9.0.1.v20130408.jar")
> 11:46:29,644 INFO [org.jboss.as.server] (ServerService Thread Pool -- 30) JBAS018559: Deployed "protostuff-api-1.0.7.jar" (runtime-name : "protostuff-api-1.0.7.jar")
> 11:46:29,644 INFO [org.jboss.as.server] (ServerService Thread Pool -- 30) JBAS018559: Deployed "paranamer-2.3.jar" (runtime-name : "paranamer-2.3.jar")
> 11:46:29,644 INFO [org.jboss.as.server] (ServerService Thread Pool -- 30) JBAS018559: Deployed "carrier-id-mapping-service-impl-0.4-SNAPSHOT.jar" (runtime-name : "carrier-id-mapping-service-impl-0.4-SNAPSHOT.jar")
> 11:46:29,644 INFO [org.jboss.as.server] (ServerService Thread Pool -- 30) JBAS018559: Deployed "camel-spring-2.12-20130415.050508-14.jar" (runtime-name : "camel-spring-2.12-20130415.050508-14.jar")
> 11:46:29,644 INFO [org.jboss.as.server] (ServerService Thread Pool -- 30) JBAS018559: Deployed "protobuf-java-2.4.1.jar" (runtime-name : "protobuf-java-2.4.1.jar")
> 11:46:29,645 INFO [org.jboss.as.server] (ServerService Thread Pool -- 30) JBAS018559: Deployed "jgroups-3.2.5.Final.jar" (runtime-name : "jgroups-3.2.5.Final.jar")
> 11:46:29,645 INFO [org.jboss.as.server] (ServerService Thread Pool -- 30) JBAS018559: Deployed "camel-core-2.12-20130415.050256-14.jar" (runtime-name : "camel-core-2.12-20130415.050256-14.jar")
> 11:46:29,645 INFO [org.jboss.as.server] (ServerService Thread Pool -- 30) JBAS018559: Deployed "protostuff-collectionschema-1.0.7.jar" (runtime-name : "protostuff-collectionschema-1.0.7.jar")
> 11:46:29,645 INFO [org.jboss.as.server] (ServerService Thread Pool -- 30) JBAS018559: Deployed "commons-codec-1.7.jar" (runtime-name : "commons-codec-1.7.jar")
> 11:46:29,645 INFO [org.jboss.as.server] (ServerService Thread Pool -- 30) JBAS018559: Deployed "ch-commons-charset-3.0.0.jar" (runtime-name : "ch-commons-charset-3.0.0.jar")
> 11:46:29,646 INFO [org.jboss.as.server] (ServerService Thread Pool -- 30) JBAS018559: Deployed "cloudhopper-smpp-component-1.0-SNAPSHOT.jar" (runtime-name : "cloudhopper-smpp-component-1.0-SNAPSHOT.jar")
> 11:46:29,646 INFO [org.jboss.as.server] (ServerService Thread Pool -- 30) JBAS018559: Deployed "woodstox-core-asl-4.0.3.jar" (runtime-name : "woodstox-core-asl-4.0.3.jar")
> 11:46:29,646 INFO [org.jboss.as.server] (ServerService Thread Pool -- 30) JBAS018559: Deployed "ch-commons-util-6.0.1.jar" (runtime-name : "ch-commons-util-6.0.1.jar")
> 11:46:29,646 INFO [org.jboss.as.server] (ServerService Thread Pool -- 30) JBAS018559: Deployed "jackson-mapper-asl-1.8.8.jar" (runtime-name : "jackson-mapper-asl-1.8.8.jar")
> 11:46:29,646 INFO [org.jboss.as.server] (ServerService Thread Pool -- 30) JBAS018559: Deployed "smq-opaque-schema-1.2.jar" (runtime-name : "smq-opaque-schema-1.2.jar")
> 11:46:29,646 INFO [org.jboss.as.server] (ServerService Thread Pool -- 30) JBAS018559: Deployed "stax-api-1.0.1.jar" (runtime-name : "stax-api-1.0.1.jar")
> 11:46:29,647 INFO [org.jboss.as.server] (ServerService Thread Pool -- 30) JBAS018559: Deployed "smq-fs-1.2.jar" (runtime-name : "smq-fs-1.2.jar")
> 11:46:29,647 INFO [org.jboss.as.server] (ServerService Thread Pool -- 30) JBAS018559: Deployed "smq-component-1.2.jar" (runtime-name : "smq-component-1.2.jar")
> 11:46:29,647 INFO [org.jboss.as.server] (ServerService Thread Pool -- 30) JBAS018559: Deployed "camel-sjms-2.12-20130415.050502-14.jar" (runtime-name : "camel-sjms-2.12-20130415.050502-14.jar")
> 11:46:29,647 INFO [org.jboss.as.server] (ServerService Thread Pool -- 30) JBAS018559: Deployed "voldemort-aggregation-repository-0.4-SNAPSHOT.jar" (runtime-name : "voldemort-aggregation-repository-0.4-SNAPSHOT.jar")
> 11:46:29,647 INFO [org.jboss.as.server] (ServerService Thread Pool -- 30) JBAS018559: Deployed "voldemort-osgi-1.3.1.jar" (runtime-name : "voldemort-osgi-1.3.1.jar")
> 11:46:29,647 INFO [org.jboss.as.server] (ServerService Thread Pool -- 30) JBAS018559: Deployed "avro-1.7.2.jar" (runtime-name : "avro-1.7.2.jar")
> 11:46:29,648 INFO [org.jboss.as.server] (ServerService Thread Pool -- 30) JBAS018559: Deployed "jetty-io-9.0.1.v20130408.jar" (runtime-name : "jetty-io-9.0.1.v20130408.jar")
> 11:46:29,648 INFO [org.jboss.as.server] (ServerService Thread Pool -- 30) JBAS018559: Deployed "smq-spi-1.2.jar" (runtime-name : "smq-spi-1.2.jar")
> 11:46:29,648 INFO [org.jboss.as.server] (ServerService Thread Pool -- 30) JBAS018559: Deployed "http-component-spi-0.4-20130402.174124-2.jar" (runtime-name : "http-component-spi-0.4-20130402.174124-2.jar")
> 11:46:29,648 INFO [org.jboss.as.server] (ServerService Thread Pool -- 30) JBAS018559: Deployed "number-service-impl-0.4-SNAPSHOT.jar" (runtime-name : "number-service-impl-0.4-SNAPSHOT.jar")
> 11:46:29,648 INFO [org.jboss.as.server] (ServerService Thread Pool -- 30) JBAS018559: Deployed "commons-pool-1.6.jar" (runtime-name : "commons-pool-1.6.jar")
> 11:46:29,648 INFO [org.jboss.as.server] (ServerService Thread Pool -- 30) JBAS018559: Deployed "hawtio-osgi-1.0.war" (runtime-name : "hawtio-osgi-1.0.war")
> 11:46:29,649 INFO [org.jboss.as.server] (ServerService Thread Pool -- 30) JBAS018559: Deployed "stax2-api-3.0.1.jar" (runtime-name : "stax2-api-3.0.1.jar")
> 11:46:29,649 INFO [org.jboss.as.server] (ServerService Thread Pool -- 30) JBAS018559: Deployed "guava-13.0.1.jar" (runtime-name : "guava-13.0.1.jar")
> 11:46:29,649 INFO [org.jboss.as.server] (ServerService Thread Pool -- 30) JBAS018559: Deployed "jackson-core-asl-1.8.8.jar" (runtime-name : "jackson-core-asl-1.8.8.jar")
> 11:46:29,649 INFO [org.jboss.as.server] (ServerService Thread Pool -- 30) JBAS018559: Deployed "carrier-statuscode-mapping-service-impl-0.4-SNAPSHOT.jar" (runtime-name : "carrier-statuscode-mapping-service-impl-0.4-SNAPSHOT.jar")
> 11:46:29,649 INFO [org.jboss.as.server] (ServerService Thread Pool -- 30) JBAS018559: Deployed "http-component-0.4-SNAPSHOT.jar" (runtime-name : "http-component-0.4-SNAPSHOT.jar")
> 11:46:29,649 INFO [org.jboss.as.server] (ServerService Thread Pool -- 30) JBAS018559: Deployed "voldemort-protostuff-serializer-1.1.jar" (runtime-name : "voldemort-protostuff-serializer-1.1.jar")
> 11:46:29,650 INFO [org.jboss.as.server] (ServerService Thread Pool -- 30) JBAS018559: Deployed "dummy-0.4-SNAPSHOT.jar" (runtime-name : "dummy-0.4-SNAPSHOT.jar")
> 11:46:29,650 INFO [org.jboss.as.server] (ServerService Thread Pool -- 30) JBAS018559: Deployed "jetty-jmx-9.0.1.v20130408.jar" (runtime-name : "jetty-jmx-9.0.1.v20130408.jar")
> 11:46:29,650 INFO [org.jboss.as.server] (ServerService Thread Pool -- 30) JBAS018559: Deployed "protostuff-core-1.0.7.jar" (runtime-name : "protostuff-core-1.0.7.jar")
> 11:46:29,650 INFO [org.jboss.as.server] (ServerService Thread Pool -- 30) JBAS018559: Deployed "smq-common-1.2.jar" (runtime-name : "smq-common-1.2.jar")
> 11:46:29,650 INFO [org.jboss.as.server] (ServerService Thread Pool -- 30) JBAS018559: Deployed "cloudhopper-smpp-component-spi-1.0-SNAPSHOT.jar" (runtime-name : "cloudhopper-smpp-component-spi-1.0-SNAPSHOT.jar")
> 11:46:29,650 INFO [org.jboss.as.server] (ServerService Thread Pool -- 30) JBAS018559: Deployed "org.springframework.jms-3.2.2.RELEASE.jar" (runtime-name : "org.springframework.jms-3.2.2.RELEASE.jar")
> 11:46:29,651 INFO [org.jboss.as.server] (ServerService Thread Pool -- 30) JBAS018559: Deployed "org.springframework.orm-3.2.2.RELEASE.jar" (runtime-name : "org.springframework.orm-3.2.2.RELEASE.jar")
> 11:46:29,652 INFO [org.jboss.as.server] (ServerService Thread Pool -- 30) JBAS018559: Deployed "org.springframework.expression-3.2.2.RELEASE.jar" (runtime-name : "org.springframework.expression-3.2.2.RELEASE.jar")
> 11:46:29,652 INFO [org.jboss.as.server] (ServerService Thread Pool -- 30) JBAS018559: Deployed "org.springframework.aspects-3.2.2.RELEASE.jar" (runtime-name : "org.springframework.aspects-3.2.2.RELEASE.jar")
> 11:46:29,652 INFO [org.jboss.as.server] (ServerService Thread Pool -- 30) JBAS018559: Deployed "org.springframework.core-3.2.2.RELEASE.jar" (runtime-name : "org.springframework.core-3.2.2.RELEASE.jar")
> 11:46:29,652 INFO [org.jboss.as.server] (ServerService Thread Pool -- 30) JBAS018559: Deployed "logback-classic-1.0.11.jar" (runtime-name : "logback-classic-1.0.11.jar")
> 11:46:29,652 INFO [org.jboss.as.server] (ServerService Thread Pool -- 30) JBAS018559: Deployed "org.springframework.aop-3.2.2.RELEASE.jar" (runtime-name : "org.springframework.aop-3.2.2.RELEASE.jar")
> 11:46:29,652 INFO [org.jboss.as.server] (ServerService Thread Pool -- 30) JBAS018559: Deployed "gemini-blueprint-io-1.0.2.RELEASE.jar" (runtime-name : "gemini-blueprint-io-1.0.2.RELEASE.jar")
> 11:46:29,653 INFO [org.jboss.as.server] (ServerService Thread Pool -- 30) JBAS018559: Deployed "com.springsource.org.aspectj.weaver-1.7.1.RELEASE.jar" (runtime-name : "com.springsource.org.aspectj.weaver-1.7.1.RELEASE.jar")
> 11:46:29,653 INFO [org.jboss.as.server] (ServerService Thread Pool -- 30) JBAS018559: Deployed "org.osgi.enterprise-5.0.0.jar" (runtime-name : "org.osgi.enterprise-5.0.0.jar")
> 11:46:29,653 INFO [org.jboss.as.server] (ServerService Thread Pool -- 30) JBAS018559: Deployed "org.springframework.transaction-3.2.2.RELEASE.jar" (runtime-name : "org.springframework.transaction-3.2.2.RELEASE.jar")
> 11:46:29,653 INFO [org.jboss.as.server] (ServerService Thread Pool -- 30) JBAS018559: Deployed "com.springsource.com.fasterxml.jackson.core.jackson-core-2.0.2.jar" (runtime-name : "com.springsource.com.fasterxml.jackson.core.jackson-core-2.0.2.jar")
> 11:46:29,653 INFO [org.jboss.as.server] (ServerService Thread Pool -- 30) JBAS018559: Deployed "gemini-blueprint-core-1.0.2.RELEASE.jar" (runtime-name : "gemini-blueprint-core-1.0.2.RELEASE.jar")
> 11:46:29,653 INFO [org.jboss.as.server] (ServerService Thread Pool -- 30) JBAS018559: Deployed "org.springframework.context-3.2.2.RELEASE.jar" (runtime-name : "org.springframework.context-3.2.2.RELEASE.jar")
> 11:46:29,653 INFO [org.jboss.as.server] (ServerService Thread Pool -- 30) JBAS018559: Deployed "logback-core-1.0.11.jar" (runtime-name : "logback-core-1.0.11.jar")
> 11:46:29,654 INFO [org.jboss.as.server] (ServerService Thread Pool -- 30) JBAS018559: Deployed "com.springsource.org.aopalliance-1.0.0.jar" (runtime-name : "com.springsource.org.aopalliance-1.0.0.jar")
> 11:46:29,654 INFO [org.jboss.as.server] (ServerService Thread Pool -- 30) JBAS018559: Deployed "org.eclipse.gemini.management-1.0.5.RELEASE.jar" (runtime-name : "org.eclipse.gemini.management-1.0.5.RELEASE.jar")
> 11:46:29,654 INFO [org.jboss.as.server] (ServerService Thread Pool -- 30) JBAS018559: Deployed "slf4j-api-1.7.5.jar" (runtime-name : "slf4j-api-1.7.5.jar")
> 11:46:29,655 INFO [org.jboss.as.controller] (Controller Boot Thread) JBAS014774: Service status report
> JBAS014775: New missing/unsatisfied dependencies:
> service jbosgi.PersistentBundles.COMPLETE (missing) dependents: [service jboss.deployment.unit."number-service-impl-0.4-SNAPSHOT.jar".CONFIGURE_MODULE, service jboss.deployment.unit."snappy-java-1.0.4.1.jar".CONFIGURE_MODULE, service jboss.deployment.unit."org.springframework.aspects-3.2.2.RELEASE.jar".CONFIGURE_MODULE, service jboss.deployment.unit."org.apache.servicemix.bundles.xmlpull-1.1.3.1_2.jar".CONFIGURE_MODULE, JBAS014799: ... and 78 more ]
> JBAS014777: Services which failed to start: service jbosgi.PersistentBundles.RESOLVE: org.jboss.msc.service.StartException in service jbosgi.PersistentBundles.RESOLVE: Failed to start service
> 11:46:29,746 INFO [org.jboss.as] (Controller Boot Thread) JBAS015961: Http management interface listening on http://127.0.0.1:9990/management
> 11:46:29,746 INFO [org.jboss.as] (Controller Boot Thread) JBAS015951: Admin console listening on http://127.0.0.1:9990
> 11:46:29,746 ERROR [org.jboss.as] (Controller Boot Thread) JBAS015875: JBoss AS 8.0.0.Alpha1-SNAPSHOT "TBD" started (with errors) in 7701ms - Started 1099 of 1266 services (85 services failed or missing dependencies, 159 services are lazy, passive or on-demand)
> {code}
--
This message is automatically generated by JIRA.
If you think it was sent incorrectly, please contact your JIRA administrators
For more information on JIRA, see: http://www.atlassian.com/software/jira
13 years