[JBoss JIRA] (WFLY-131) Seam2Processor will not have permissions to its added resource loader
by Brian Stansberry (JIRA)
[ https://issues.jboss.org/browse/WFLY-131?page=com.atlassian.jira.plugin.s... ]
Brian Stansberry updated WFLY-131:
----------------------------------
Assignee: Ales Justin (was: Brian Stansberry)
> Seam2Processor will not have permissions to its added resource loader
> ---------------------------------------------------------------------
>
> Key: WFLY-131
> URL: https://issues.jboss.org/browse/WFLY-131
> Project: WildFly
> Issue Type: Bug
> Components: Server
> Reporter: David Lloyd
> Assignee: Ales Justin
> Labels: security
> Fix For: 8.0.0.Alpha1
>
>
> The {{Seam2Processor}} class adds a {{VFSResourceLoader}} to the deployment in order to copy certain Seam classes into it. The problem is that the {{VFSResourceLoader}} will fail at runtime with a permission exception because there is no corresponding {{VirtualFilePermission}}.
> For this type of resource loader, it is better just to add the JAR using {{JarFileResourceLoader}}, which does not require permissions at load time and is much faster anyway.
> If you must use {{VFSResourceLoader}}, then instead of creating and adding the resource loader yourself, add a {{ResourceRoot}} to the deployment context.
--
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
11 years, 9 months
[JBoss JIRA] (WFLY-143) Improve testing of Infinispan subsystem management features
by Brian Stansberry (JIRA)
[ https://issues.jboss.org/browse/WFLY-143?page=com.atlassian.jira.plugin.s... ]
Brian Stansberry updated WFLY-143:
----------------------------------
Assignee: Richard Achmatowicz (was: Brian Stansberry)
> Improve testing of Infinispan subsystem management features
> -----------------------------------------------------------
>
> Key: WFLY-143
> URL: https://issues.jboss.org/browse/WFLY-143
> Project: WildFly
> Issue Type: Bug
> Components: Clustering, Domain Management
> Reporter: Richard Achmatowicz
> Assignee: Richard Achmatowicz
> Fix For: 8.0.0.Alpha1
>
>
> We current use InfinispanSubsystemTest to test the integrity of the Infinispan subsystem implementation.
> From the documentation:
> {noformat}
> Tests the ability to create a model from an xml configuration, marshal the model back to xml, re-read that marshalled model
> into a new model that matches the first one, execute a "describe" operation for the model, create yet another model
> from executing the results of that describe operation, and compare that model to first model.
> {noformat}
> Over and above these tests, we need more specific tests which cover use cases such as:
> - every attribute can be read/written as required and that the subsequent reload-required state is as expected
> - operation sequences such as add/remove/add, add/add give expected results for all resources in the subsystem
> - validating that the XML configuration specified gets translated into the desired Infinispan configuration
> - and many others
--
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
11 years, 9 months
[JBoss JIRA] (WFLY-45) max-active-sessions doesn't force min-idle sessions to passivate resulting in IllegalStateException
by Brian Stansberry (JIRA)
[ https://issues.jboss.org/browse/WFLY-45?page=com.atlassian.jira.plugin.sy... ]
Brian Stansberry updated WFLY-45:
---------------------------------
Assignee: Paul Ferraro (was: Brian Stansberry)
> max-active-sessions doesn't force min-idle sessions to passivate resulting in IllegalStateException
> ---------------------------------------------------------------------------------------------------
>
> Key: WFLY-45
> URL: https://issues.jboss.org/browse/WFLY-45
> Project: WildFly
> Issue Type: Bug
> Components: Clustering
> Reporter: Radoslav Husar
> Assignee: Paul Ferraro
> Labels: passivation
> Fix For: 8.0.0.Alpha1
>
>
> When a new session is to be created but number of sessions already reached max-active-sessions, the sessions that are beyond min-idle are not forced to passivate.
> {noformat}
> <system-out>19:20:59,397 ERROR [org.apache.catalina.core.ContainerBase.[jboss.web].[default-host].[/passivating].[org.jboss.as.test.clustering.single.web.SimpleServlet]] (http--127.0.0.1-8080-3) Servlet.service() for servlet org.jboss.as.test.clustering.single.web.SimpleServlet threw exception: java.lang.IllegalStateException: JBAS018075: Number of active sessions exceeds limit 20 trying to create session
> at org.jboss.as.web.session.DistributableSessionManager.createSessionInternal(DistributableSessionManager.java:594) [jboss-as-web-7.1.2.Final-SNAPSHOT.jar:7.1.2.Final-SNAPSHOT]
> at org.jboss.as.web.session.DistributableSessionManager.createSession(DistributableSessionManager.java:559) [jboss-as-web-7.1.2.Final-SNAPSHOT.jar:7.1.2.Final-SNAPSHOT]
> at org.apache.catalina.connector.Request.doGetSession(Request.java:2665) [jbossweb-7.0.14.Final.jar:]
> at org.apache.catalina.connector.Request.getSession(Request.java:2375) [jbossweb-7.0.14.Final.jar:]
> at org.apache.catalina.connector.RequestFacade.getSession(RequestFacade.java:841) [jbossweb-7.0.14.Final.jar:]
> at org.jboss.as.test.clustering.single.web.SimpleServlet.doGet(SimpleServlet.java:47) [classes:]
> at javax.servlet.http.HttpServlet.service(HttpServlet.java:734) [jboss-servlet-api_3.0_spec-1.0.1.Final.jar:1.0.1.Final]
> at javax.servlet.http.HttpServlet.service(HttpServlet.java:847) [jboss-servlet-api_3.0_spec-1.0.1.Final.jar:1.0.1.Final]
> at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:329) [jbossweb-7.0.14.Final.jar:]
> at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:248) [jbossweb-7.0.14.Final.jar:]
> at org.apache.catalina.core.StandardWrapperValve.invoke(StandardWrapperValve.java:275) [jbossweb-7.0.14.Final.jar:]
> at org.apache.catalina.core.StandardContextValve.invoke(StandardContextValve.java:161) [jbossweb-7.0.14.Final.jar:]
> at org.jboss.modcluster.container.jbossweb.JBossWebContext$RequestListenerValve.event(JBossWebContext.java:67)
> at org.jboss.modcluster.container.jbossweb.JBossWebContext$RequestListenerValve.invoke(JBossWebContext.java:48)
> at org.jboss.as.web.session.ClusteredSessionValve.handleRequest(ClusteredSessionValve.java:125) [jboss-as-web-7.1.2.Final-SNAPSHOT.jar:7.1.2.Final-SNAPSHOT]
> at org.jboss.as.web.session.ClusteredSessionValve.invoke(ClusteredSessionValve.java:91) [jboss-as-web-7.1.2.Final-SNAPSHOT.jar:7.1.2.Final-SNAPSHOT]
> at org.jboss.as.web.session.JvmRouteValve.invoke(JvmRouteValve.java:88) [jboss-as-web-7.1.2.Final-SNAPSHOT.jar:7.1.2.Final-SNAPSHOT]
> at org.jboss.as.web.session.LockingValve.invoke(LockingValve.java:56) [jboss-as-web-7.1.2.Final-SNAPSHOT.jar:7.1.2.Final-SNAPSHOT]
> at org.jboss.as.web.security.SecurityContextAssociationValve.invoke(SecurityContextAssociationValve.java:153) [jboss-as-web-7.1.2.Final-SNAPSHOT.jar:7.1.2.Final-SNAPSHOT]
> at org.apache.catalina.core.StandardHostValve.invoke(StandardHostValve.java:155) [jbossweb-7.0.14.Final.jar:]
> at org.apache.catalina.valves.ErrorReportValve.invoke(ErrorReportValve.java:102) [jbossweb-7.0.14.Final.jar:]
> at org.apache.catalina.core.StandardEngineValve.invoke(StandardEngineValve.java:109) [jbossweb-7.0.14.Final.jar:]
> at org.apache.catalina.connector.CoyoteAdapter.service(CoyoteAdapter.java:368) [jbossweb-7.0.14.Final.jar:]
> at org.apache.coyote.http11.Http11Processor.process(Http11Processor.java:877) [jbossweb-7.0.14.Final.jar:]
> at org.apache.coyote.http11.Http11Protocol$Http11ConnectionHandler.process(Http11Protocol.java:671) [jbossweb-7.0.14.Final.jar:]
> at org.apache.tomcat.util.net.JIoEndpoint$Worker.run(JIoEndpoint.java:931) [jbossweb-7.0.14.Final.jar:]
> at java.lang.Thread.run(Thread.java:662) [rt.jar:1.6.0_29]
> {noformat}
--
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
11 years, 9 months
[JBoss JIRA] (WFLY-90) NPE on AS8 start
by Brian Stansberry (JIRA)
[ https://issues.jboss.org/browse/WFLY-90?page=com.atlassian.jira.plugin.sy... ]
Brian Stansberry updated WFLY-90:
---------------------------------
Assignee: Thomas Diesler (was: Brian Stansberry)
> NPE on AS8 start
> ----------------
>
> 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
11 years, 9 months
[JBoss JIRA] (WFLY-34) IllegalStateException can happen on clean shutdown
by Brian Stansberry (JIRA)
[ https://issues.jboss.org/browse/WFLY-34?page=com.atlassian.jira.plugin.sy... ]
Brian Stansberry updated WFLY-34:
---------------------------------
Assignee: Remy Maucherat (was: Brian Stansberry)
> IllegalStateException can happen on clean shutdown
> --------------------------------------------------
>
> Key: WFLY-34
> URL: https://issues.jboss.org/browse/WFLY-34
> Project: WildFly
> Issue Type: Bug
> Components: Web (JBoss Web)
> Reporter: Radoslav Husar
> Assignee: Remy Maucherat
> Fix For: 8.0.0.Alpha1
>
>
> Randomly seen in SessionBasedConcurrentTestCase.
> Implications yet unknown.
> {noformat}
> 12:17:53,337 INFO [org.infinispan.jmx.CacheJmxRegistration] (pool-15-thread-1) ISPN000031: MBeans were successfully registered to the platform mbean server.
> 12:17:53,353 INFO [org.jboss.as.clustering.infinispan] (pool-15-thread-1) JBAS010281: Started repl cache from web container
> 12:17:53,362 INFO [org.jboss.as.clustering] (MSC service thread 1-3) JBAS010238: Number of cluster members: 1
> 12:17:53,399 INFO [org.infinispan.configuration.cache.EvictionConfigurationBuilder] (MSC service thread 1-3) ISPN000152: Passivation configured without an eviction policy being selected. Only manually evicted entities will be pasivated.
> 12:17:53,402 INFO [org.infinispan.config.ConfigurationValidatingVisitor] (MSC service thread 1-3) ISPN000152: Passivation configured without an eviction policy being selected. Only manually evicted entities will be pasivated.
> 12:17:53,429 INFO [org.infinispan.jmx.CacheJmxRegistration] (MSC service thread 1-3) ISPN000031: MBeans were successfully registered to the platform mbean server.
> 12:17:53,446 INFO [org.jboss.as.clustering.infinispan] (MSC service thread 1-3) JBAS010281: Started //default-host//concurrent-session-replication cache from web container
> 12:17:53,455 INFO [org.infinispan.configuration.cache.EvictionConfigurationBuilder] (MSC service thread 1-3) ISPN000152: Passivation configured without an eviction policy being selected. Only manually evicted entities will be pasivated.
> 12:17:53,458 INFO [org.infinispan.configuration.cache.EvictionConfigurationBuilder] (MSC service thread 1-3) ISPN000152: Passivation configured without an eviction policy being selected. Only manually evicted entities will be pasivated.
> 12:17:53,627 INFO [org.jboss.web] (MSC service thread 1-3) JBAS018210: Registering web context: /concurrent-session-replication
> 12:17:54,211 INFO [org.jboss.as.server] (management-handler-thread - 2) JBAS018559: Deployed "concurrent-session-replication.war"
> 12:18:02,060 INFO [org.jboss.as.clustering] (Incoming-1,null) JBAS010225: New cluster view for partition web (id: 1, delta: 1, merge: false) : [node-0/web, node-1/web]
> 12:18:02,061 INFO [org.infinispan.remoting.transport.jgroups.JGroupsTransport] (Incoming-1,null) ISPN000094: Received new cluster view: [node-0/web|1] [node-0/web, node-1/web]
> 12:18:04,834 INFO [org.jboss.as.osgi] (MSC service thread 1-4) JBAS011943: Unregister module: Module "deployment.concurrent-session-replication.war:main" from Service Module Loader
> 12:18:05,318 INFO [org.infinispan.eviction.PassivationManagerImpl] (MSC service thread 1-1) ISPN000029: Passivating all entries to disk
> 12:18:05,320 INFO [org.infinispan.eviction.PassivationManagerImpl] (MSC service thread 1-1) ISPN000030: Passivated 0 entries in 1 milliseconds
> 12:18:05,507 INFO [org.jboss.as.clustering.infinispan] (MSC service thread 1-1) JBAS010282: Stopped //default-host//concurrent-session-replication cache from web container
> 12:18:05,592 ERROR [org.apache.catalina.connector.CoyoteAdapter] (http--127.0.0.1-8080-2) An exception or error occurred in the container during the request processing: java.lang.IllegalStateException
> at org.jboss.msc.value.InjectedValue.getValue(InjectedValue.java:47)
> at org.jboss.as.connector.deployers.processors.CachedConnectionManagerSetupProcessor$CachedConnectionManagerSetupAction.setup(CachedConnectionManagerSetupProcessor.java:74)
> at org.jboss.as.web.ThreadSetupBindingListener.bind(ThreadSetupBindingListener.java:50) [jboss-as-web-7.1.2.Final-SNAPSHOT.jar:7.1.2.Final-SNAPSHOT]
> at org.apache.catalina.core.StandardHostValve.invoke(StandardHostValve.java:125) [jbossweb-7.0.14.Final.jar:]
> at org.apache.catalina.valves.ErrorReportValve.invoke(ErrorReportValve.java:102) [jbossweb-7.0.14.Final.jar:]
> at org.apache.catalina.core.StandardEngineValve.invoke(StandardEngineValve.java:109) [jbossweb-7.0.14.Final.jar:]
> at org.apache.catalina.connector.CoyoteAdapter.service(CoyoteAdapter.java:368) [jbossweb-7.0.14.Final.jar:]
> at org.apache.coyote.http11.Http11Processor.process(Http11Processor.java:877) [jbossweb-7.0.14.Final.jar:]
> at org.apache.coyote.http11.Http11Protocol$Http11ConnectionHandler.process(Http11Protocol.java:671) [jbossweb-7.0.14.Final.jar:]
> at org.apache.tomcat.util.net.JIoEndpoint$Worker.run(JIoEndpoint.java:931) [jbossweb-7.0.14.Final.jar:]
> at java.lang.Thread.run(Thread.java:662) [rt.jar:1.6.0_29]
> 12:18:05,615 INFO [org.infinispan.eviction.PassivationManagerImpl] (pool-15-thread-1) ISPN000029: Passivating all entries to disk
> 12:18:05,617 INFO [org.infinispan.eviction.PassivationManagerImpl] (pool-15-thread-1) ISPN000030: Passivated 0 entries in 1 milliseconds
> 12:18:05,634 INFO [org.jboss.as.clustering.infinispan] (pool-15-thread-1) JBAS010282: Stopped repl cache from web container
> 12:18:05,670 INFO [org.jboss.as.server.deployment] (MSC service thread 1-3) JBAS015877: Stopped deployment concurrent-session-replication.war in 851ms
> 12:18:05,818 INFO [org.infinispan.remoting.transport.jgroups.JGroupsTransport] (pool-14-thread-1) ISPN000082: Stopping the RpcDispatcher
> 12:18:06,496 INFO [org.jboss.as.repository] (management-handler-thread - 3) JBAS014901: Content removed from location /home/rhusar/git/jboss-as/testsuite/integration/clust/target/jbossas-clustering-udp-0/standalone/data/content/c9/8197dce9a6e7041f12dc1342fc4126bc1aa846/content
> 12:18:06,497 INFO [org.jboss.as.server] (management-handler-thread - 3) JBAS018558: Undeployed "concurrent-session-replication.war"
> 12:18:07,007 INFO [org.apache.catalina.core.StandardContext] (MSC service thread 1-1) Container org.apache.catalina.core.ContainerBase.[jboss.web].[default-host].[/] has not been started
> 12:18:07,012 INFO [org.apache.coyote.http11.Http11Protocol] (MSC service thread 1-1) Pausing Coyote HTTP/1.1 on http--127.0.0.1-8080
> 12:18:07,013 INFO [org.apache.coyote.http11.Http11Protocol] (MSC service thread 1-1) Stopping Coyote HTTP/1.1 on http--127.0.0.1-8080
> 12:18:07,016 INFO [org.apache.coyote.ajp.AjpProtocol] (MSC service thread 1-3) Pausing Coyote AJP/1.3 on ajp--127.0.0.1-8009
> 12:18:07,017 INFO [org.apache.coyote.ajp.AjpProtocol] (MSC service thread 1-3) Stopping Coyote AJP/1.3 on ajp--127.0.0.1-8009
> {noformat}
--
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
11 years, 9 months
[JBoss JIRA] (WFLY-1086) Provide deployment manifest information via the CLI
by James Perkins (JIRA)
[ https://issues.jboss.org/browse/WFLY-1086?page=com.atlassian.jira.plugin.... ]
James Perkins updated WFLY-1086:
--------------------------------
Assignee: (was: James Perkins)
> Provide deployment manifest information via the CLI
> ---------------------------------------------------
>
> Key: WFLY-1086
> URL: https://issues.jboss.org/browse/WFLY-1086
> Project: WildFly
> Issue Type: Feature Request
> Components: CLI, Domain Management
> Reporter: Brian Stansberry
>
> We've gotten a user request for providing the contents of a deployment's MANIFEST.MF via the CLI.
> The request is to include an option to get the manifest info for a single deployment, and also the info for all deployments.
> This task needs to be evaluated in relationship to the larger request to provide read (and possibly in some cases write) access to all files within a deployment. The manifest is essentially just one file with a standard location.
--
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
11 years, 9 months
[JBoss JIRA] (WFLY-37) Intermittent failure in JSFFailoverTestCase
by Brian Stansberry (JIRA)
[ https://issues.jboss.org/browse/WFLY-37?page=com.atlassian.jira.plugin.sy... ]
Brian Stansberry updated WFLY-37:
---------------------------------
Assignee: Radoslav Husar (was: Brian Stansberry)
> Intermittent failure in JSFFailoverTestCase
> -------------------------------------------
>
> Key: WFLY-37
> URL: https://issues.jboss.org/browse/WFLY-37
> Project: WildFly
> Issue Type: Bug
> Components: Clustering
> Reporter: Kabir Khan
> Assignee: Radoslav Husar
> Fix For: 8.0.0.Alpha1
>
>
> https://issues.jboss.org/browse/RESTEASY-350 mentions the "SingleClientConnManager: connection still allocated" problem, not sure if relevant or not
> {code}
> Error MessageInvalid use of SingleClientConnManager: connection still allocated. Make sure to release the connection before allocating another one.
> Stacktracejava.lang.IllegalStateException: Invalid use of SingleClientConnManager: connection still allocated.
> Make sure to release the connection before allocating another one.
> at org.apache.http.impl.conn.SingleClientConnManager.getConnection(SingleClientConnManager.java:216)
> at org.apache.http.impl.conn.SingleClientConnManager$1.getConnection(SingleClientConnManager.java:190)
> at org.apache.http.impl.client.DefaultRequestDirector.execute(DefaultRequestDirector.java:401)
> at org.apache.http.impl.client.AbstractHttpClient.execute(AbstractHttpClient.java:820)
> at org.apache.http.impl.client.AbstractHttpClient.execute(AbstractHttpClient.java:754)
> at org.apache.http.impl.client.AbstractHttpClient.execute(AbstractHttpClient.java:732)
> at org.jboss.as.test.clustering.cluster.jsf.JSFFailoverTestCase.tryGet(JSFFailoverTestCase.java:467)
> at org.jboss.as.test.clustering.cluster.jsf.JSFFailoverTestCase.testGracefulUndeployFailover(JSFFailoverTestCase.java:394)
> at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method)
> at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:39)
> at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:25)
> at java.lang.reflect.Method.invoke(Method.java:597)
> 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.jboss.arquillian.junit.Arquillian$6$1.invoke(Arquillian.java:270)
> at org.jboss.arquillian.container.test.impl.execution.LocalTestExecuter.execute(LocalTestExecuter.java:60)
> at sun.reflect.GeneratedMethodAccessor12.invoke(Unknown Source)
> at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:25)
> at java.lang.reflect.Method.invoke(Method.java:597)
> at org.jboss.arquillian.core.impl.ObserverImpl.invoke(ObserverImpl.java:90)
> at org.jboss.arquillian.core.impl.EventContextImpl.invokeObservers(EventContextImpl.java:99)
> at org.jboss.arquillian.core.impl.EventContextImpl.proceed(EventContextImpl.java:81)
> at org.jboss.arquillian.core.impl.ManagerImpl.fire(ManagerImpl.java:135)
> at org.jboss.arquillian.core.impl.ManagerImpl.fire(ManagerImpl.java:115)
> at org.jboss.arquillian.core.impl.EventImpl.fire(EventImpl.java:67)
> at org.jboss.arquillian.container.test.impl.execution.ClientTestExecuter.execute(ClientTestExecuter.java:53)
> at sun.reflect.GeneratedMethodAccessor11.invoke(Unknown Source)
> at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:25)
> at java.lang.reflect.Method.invoke(Method.java:597)
> at org.jboss.arquillian.core.impl.ObserverImpl.invoke(ObserverImpl.java:90)
> at org.jboss.arquillian.core.impl.EventContextImpl.invokeObservers(EventContextImpl.java:99)
> at org.jboss.arquillian.core.impl.EventContextImpl.proceed(EventContextImpl.java:81)
> at org.jboss.arquillian.container.test.impl.client.ContainerEventController.createContext(ContainerEventController.java:142)
> at org.jboss.arquillian.container.test.impl.client.ContainerEventController.createTestContext(ContainerEventController.java:129)
> at sun.reflect.GeneratedMethodAccessor10.invoke(Unknown Source)
> at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:25)
> at java.lang.reflect.Method.invoke(Method.java:597)
> at org.jboss.arquillian.core.impl.ObserverImpl.invoke(ObserverImpl.java:90)
> at org.jboss.arquillian.core.impl.EventContextImpl.proceed(EventContextImpl.java:88)
> at org.jboss.arquillian.test.impl.TestContextHandler.createTestContext(TestContextHandler.java:89)
> at sun.reflect.GeneratedMethodAccessor3.invoke(Unknown Source)
> at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:25)
> at java.lang.reflect.Method.invoke(Method.java:597)
> at org.jboss.arquillian.core.impl.ObserverImpl.invoke(ObserverImpl.java:90)
> at org.jboss.arquillian.core.impl.EventContextImpl.proceed(EventContextImpl.java:88)
> at org.jboss.arquillian.test.impl.TestContextHandler.createClassContext(TestContextHandler.java:75)
> at sun.reflect.GeneratedMethodAccessor2.invoke(Unknown Source)
> at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:25)
> at java.lang.reflect.Method.invoke(Method.java:597)
> at org.jboss.arquillian.core.impl.ObserverImpl.invoke(ObserverImpl.java:90)
> at org.jboss.arquillian.core.impl.EventContextImpl.proceed(EventContextImpl.java:88)
> at org.jboss.arquillian.test.impl.TestContextHandler.createSuiteContext(TestContextHandler.java:60)
> at sun.reflect.GeneratedMethodAccessor1.invoke(Unknown Source)
> at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:25)
> at java.lang.reflect.Method.invoke(Method.java:597)
> at org.jboss.arquillian.core.impl.ObserverImpl.invoke(ObserverImpl.java:90)
> at org.jboss.arquillian.core.impl.EventContextImpl.proceed(EventContextImpl.java:88)
> at org.jboss.arquillian.core.impl.ManagerImpl.fire(ManagerImpl.java:135)
> at org.jboss.arquillian.test.impl.EventTestRunnerAdaptor.test(EventTestRunnerAdaptor.java:111)
> at org.jboss.arquillian.junit.Arquillian$6.evaluate(Arquillian.java:263)
> at org.jboss.arquillian.junit.Arquillian$4.evaluate(Arquillian.java:226)
> at org.jboss.arquillian.junit.Arquillian.multiExecute(Arquillian.java:314)
> at org.jboss.arquillian.junit.Arquillian.access$100(Arquillian.java:46)
> at org.jboss.arquillian.junit.Arquillian$5.evaluate(Arquillian.java:240)
> at org.junit.runners.ParentRunner.runLeaf(ParentRunner.java:263)
> at org.junit.runners.BlockJUnit4ClassRunner.runChild(BlockJUnit4ClassRunner.java:68)
> at org.junit.runners.BlockJUnit4ClassRunner.runChild(BlockJUnit4ClassRunner.java:47)
> at org.junit.runners.ParentRunner$3.run(ParentRunner.java:231)
> at org.junit.runners.ParentRunner$1.schedule(ParentRunner.java:60)
> at org.junit.runners.ParentRunner.runChildren(ParentRunner.java:229)
> at org.junit.runners.ParentRunner.access$000(ParentRunner.java:50)
> at org.junit.runners.ParentRunner$2.evaluate(ParentRunner.java:222)
> at org.jboss.arquillian.junit.Arquillian$2.evaluate(Arquillian.java:185)
> at org.jboss.arquillian.junit.Arquillian.multiExecute(Arquillian.java:314)
> at org.jboss.arquillian.junit.Arquillian.access$100(Arquillian.java:46)
> at org.jboss.arquillian.junit.Arquillian$3.evaluate(Arquillian.java:199)
> at org.junit.runners.ParentRunner.run(ParentRunner.java:300)
> at org.jboss.arquillian.junit.Arquillian.run(Arquillian.java:147)
> at org.apache.maven.surefire.junit4.JUnit4Provider.execute(JUnit4Provider.java:234)
> at org.apache.maven.surefire.junit4.JUnit4Provider.executeTestSet(JUnit4Provider.java:133)
> at org.apache.maven.surefire.junit4.JUnit4Provider.invoke(JUnit4Provider.java:114)
> at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method)
> at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:39)
> at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:25)
> at java.lang.reflect.Method.invoke(Method.java:597)
> at org.apache.maven.surefire.util.ReflectionUtils.invokeMethodWithArray(ReflectionUtils.java:188)
> at org.apache.maven.surefire.booter.ProviderFactory$ProviderProxy.invoke(ProviderFactory.java:166)
> at org.apache.maven.surefire.booter.ProviderFactory.invokeProvider(ProviderFactory.java:86)
> at org.apache.maven.surefire.booter.ForkedBooter.runSuitesInProcess(ForkedBooter.java:101)
> at org.apache.maven.surefire.booter.ForkedBooter.main(ForkedBooter.java:74)
> Standard Output[0m20:11:42,182 INFO [org.jboss.web] (MSC service thread 1-4) JBAS018224: Unregister web context: /distributable
> [0m[0m20:11:42,198 INFO [org.infinispan.eviction.PassivationManagerImpl] (MSC service thread 1-6) ISPN000029: Passivating all entries to disk
> [0m[0m20:11:42,199 INFO [org.infinispan.eviction.PassivationManagerImpl] (MSC service thread 1-6) ISPN000030: Passivated 0 entries in 0 milliseconds
> [0m[0m20:11:42,211 INFO [org.jboss.weld.deployer] (MSC service thread 1-5) JBAS016009: Stopping weld service for deployment distributable.war
> [0m[0m20:11:42,223 INFO [org.jboss.as.clustering.infinispan] (MSC service thread 1-6) JBAS010282: Stopped default-host/distributable cache from web container
> [0m[0m20:11:42,250 INFO [org.infinispan.eviction.PassivationManagerImpl] (MSC service thread 1-2) ISPN000029: Passivating all entries to disk
> [0m[0m20:11:42,255 INFO [org.infinispan.eviction.PassivationManagerImpl] (MSC service thread 1-2) ISPN000030: Passivated 0 entries in 5 milliseconds
> [0m[0m20:11:42,270 INFO [org.jboss.as.server.deployment] (MSC service thread 1-3) JBAS015877: Stopped deployment distributable.war in 99ms
> [0m[0m20:11:42,271 INFO [org.jboss.as.clustering.infinispan] (MSC service thread 1-2) JBAS010282: Stopped repl cache from web container
> [0m[0m20:11:42,306 INFO [org.jboss.as.clustering] (Incoming-6,null) JBAS010225: New cluster view for partition web (id: 2, delta: -1, merge: false) : [node-1/web]
> [0m[0m20:11:42,308 INFO [org.infinispan.remoting.transport.jgroups.JGroupsTransport] (Incoming-6,null) ISPN000094: Received new cluster view: [node-1/web|2] [node-1/web]
> [0m[31m20:11:42,418 ERROR [org.infinispan.interceptors.InvocationContextInterceptor] (Incoming-3,null) ISPN000136: Execution error: org.infinispan.CacheException: Member node-0/web no longer in cluster. Forcing tx rollback for GlobalTransaction:<node-0/web>:2:remote
> at org.infinispan.interceptors.locking.AbstractTxLockingInterceptor.abortIfRemoteTransactionInvalid(AbstractTxLockingInterceptor.java:115)
> at org.infinispan.interceptors.locking.OptimisticLockingInterceptor.visitPrepareCommand(OptimisticLockingInterceptor.java:115)
> at org.infinispan.commands.tx.PrepareCommand.acceptVisitor(PrepareCommand.java:133)
> at org.infinispan.interceptors.base.CommandInterceptor.invokeNextInterceptor(CommandInterceptor.java:116)
> at org.infinispan.interceptors.NotificationInterceptor.visitPrepareCommand(NotificationInterceptor.java:58)
> at org.infinispan.commands.tx.PrepareCommand.acceptVisitor(PrepareCommand.java:133)
> at org.infinispan.interceptors.base.CommandInterceptor.invokeNextInterceptor(CommandInterceptor.java:116)
> at org.infinispan.interceptors.TxInterceptor.visitPrepareCommand(TxInterceptor.java:106)
> at org.infinispan.commands.tx.PrepareCommand.acceptVisitor(PrepareCommand.java:133)
> at org.infinispan.interceptors.base.CommandInterceptor.invokeNextInterceptor(CommandInterceptor.java:116)
> at org.infinispan.interceptors.StateTransferLockInterceptor.handleWithRetries(StateTransferLockInterceptor.java:213)
> at org.infinispan.interceptors.StateTransferLockInterceptor.visitPrepareCommand(StateTransferLockInterceptor.java:85)
> at org.infinispan.commands.tx.PrepareCommand.acceptVisitor(PrepareCommand.java:133)
> at org.infinispan.interceptors.base.CommandInterceptor.invokeNextInterceptor(CommandInterceptor.java:116)
> at org.infinispan.interceptors.base.CommandInterceptor.handleDefault(CommandInterceptor.java:130)
> at org.infinispan.commands.AbstractVisitor.visitPrepareCommand(AbstractVisitor.java:126)
> at org.infinispan.commands.tx.PrepareCommand.acceptVisitor(PrepareCommand.java:133)
> at org.infinispan.interceptors.base.CommandInterceptor.invokeNextInterceptor(CommandInterceptor.java:116)
> at org.infinispan.interceptors.InvocationContextInterceptor.handleAll(InvocationContextInterceptor.java:132)
> at org.infinispan.interceptors.InvocationContextInterceptor.handleDefault(InvocationContextInterceptor.java:91)
> at org.infinispan.commands.AbstractVisitor.visitPrepareCommand(AbstractVisitor.java:126)
> at org.infinispan.commands.tx.PrepareCommand.acceptVisitor(PrepareCommand.java:133)
> at org.infinispan.interceptors.base.CommandInterceptor.invokeNextInterceptor(CommandInterceptor.java:116)
> at org.infinispan.interceptors.BatchingInterceptor.handleDefault(BatchingInterceptor.java:70)
> at org.infinispan.commands.AbstractVisitor.visitPrepareCommand(AbstractVisitor.java:126)
> at org.infinispan.commands.tx.PrepareCommand.acceptVisitor(PrepareCommand.java:133)
> at org.infinispan.interceptors.InterceptorChain.invoke(InterceptorChain.java:345)
> at org.infinispan.commands.tx.PrepareCommand.perform(PrepareCommand.java:128)
> at org.infinispan.remoting.InboundInvocationHandlerImpl.handleInternal(InboundInvocationHandlerImpl.java:127)
> at org.infinispan.remoting.InboundInvocationHandlerImpl.handleWithWaitForBlocks(InboundInvocationHandlerImpl.java:136)
> at org.infinispan.remoting.InboundInvocationHandlerImpl.handleWithRetry(InboundInvocationHandlerImpl.java:162)
> at org.infinispan.remoting.InboundInvocationHandlerImpl.handle(InboundInvocationHandlerImpl.java:114)
> at org.infinispan.remoting.transport.jgroups.CommandAwareRpcDispatcher.executeCommand(CommandAwareRpcDispatcher.java:226)
> at org.infinispan.remoting.transport.jgroups.CommandAwareRpcDispatcher.handle(CommandAwareRpcDispatcher.java:203)
> at org.jgroups.blocks.RequestCorrelator.handleRequest(RequestCorrelator.java:465)
> at org.jgroups.blocks.RequestCorrelator.receiveMessage(RequestCorrelator.java:372)
> at org.jgroups.blocks.RequestCorrelator.receive(RequestCorrelator.java:247)
> at org.jgroups.blocks.MessageDispatcher$ProtocolAdapter.up(MessageDispatcher.java:601)
> at org.jgroups.blocks.mux.MuxUpHandler.up(MuxUpHandler.java:130)
> at org.jgroups.JChannel.up(JChannel.java:715)
> at org.jgroups.stack.ProtocolStack.up(ProtocolStack.java:1020)
> at org.jgroups.protocols.RSVP.up(RSVP.java:192)
> at org.jgroups.protocols.FRAG2.up(FRAG2.java:181)
> at org.jgroups.protocols.FlowControl.up(FlowControl.java:418)
> at org.jgroups.protocols.FlowControl.up(FlowControl.java:400)
> at org.jgroups.protocols.pbcast.GMS.up(GMS.java:899)
> at org.jgroups.protocols.pbcast.STABLE.up(STABLE.java:244)
> at org.jgroups.protocols.UNICAST2.handleDataReceived(UNICAST2.java:777)
> at org.jgroups.protocols.UNICAST2.up(UNICAST2.java:414)
> at org.jgroups.protocols.pbcast.NAKACK2.up(NAKACK2.java:572)
> at org.jgroups.protocols.BARRIER.up(BARRIER.java:102)
> at org.jgroups.protocols.VERIFY_SUSPECT.up(VERIFY_SUSPECT.java:143)
> at org.jgroups.protocols.FD.up(FD.java:273)
> at org.jgroups.protocols.FD_SOCK.up(FD_SOCK.java:288)
> at org.jgroups.protocols.MERGE2.up(MERGE2.java:205)
> at org.jgroups.protocols.Discovery.up(Discovery.java:359)
> at org.jgroups.protocols.TP$ProtocolAdapter.up(TP.java:2568)
> at org.jgroups.protocols.TP.passMessageUp(TP.java:1211)
> at org.jgroups.protocols.TP$IncomingPacket.handleMyMessage(TP.java:1775)
> at org.jgroups.protocols.TP$IncomingPacket.run(TP.java:1748)
> at java.util.concurrent.ThreadPoolExecutor$Worker.runTask(ThreadPoolExecutor.java:886) [rt.jar:1.6.0_29]
> at java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:908) [rt.jar:1.6.0_29]
> at java.lang.Thread.run(Thread.java:662) [rt.jar:1.6.0_29]
> [0m[31m20:11:42,431 ERROR [org.infinispan.interceptors.InvocationContextInterceptor] (Incoming-3,null) ISPN000136: Execution error: org.infinispan.CacheException: Member node-0/web no longer in cluster. Forcing tx rollback for GlobalTransaction:<node-0/web>:4:remote
> at org.infinispan.interceptors.locking.AbstractTxLockingInterceptor.abortIfRemoteTransactionInvalid(AbstractTxLockingInterceptor.java:115)
> at org.infinispan.interceptors.locking.OptimisticLockingInterceptor.visitPrepareCommand(OptimisticLockingInterceptor.java:115)
> at org.infinispan.commands.tx.PrepareCommand.acceptVisitor(PrepareCommand.java:133)
> at org.infinispan.interceptors.base.CommandInterceptor.invokeNextInterceptor(CommandInterceptor.java:116)
> at org.infinispan.interceptors.NotificationInterceptor.visitPrepareCommand(NotificationInterceptor.java:58)
> at org.infinispan.commands.tx.PrepareCommand.acceptVisitor(PrepareCommand.java:133)
> at org.infinispan.interceptors.base.CommandInterceptor.invokeNextInterceptor(CommandInterceptor.java:116)
> at org.infinispan.interceptors.TxInterceptor.visitPrepareCommand(TxInterceptor.java:106)
> at org.infinispan.commands.tx.PrepareCommand.acceptVisitor(PrepareCommand.java:133)
> at org.infinispan.interceptors.base.CommandInterceptor.invokeNextInterceptor(CommandInterceptor.java:116)
> at org.infinispan.interceptors.StateTransferLockInterceptor.handleWithRetries(StateTransferLockInterceptor.java:213)
> at org.infinispan.interceptors.StateTransferLockInterceptor.visitPrepareCommand(StateTransferLockInterceptor.java:85)
> at org.infinispan.commands.tx.PrepareCommand.acceptVisitor(PrepareCommand.java:133)
> at org.infinispan.interceptors.base.CommandInterceptor.invokeNextInterceptor(CommandInterceptor.java:116)
> at org.infinispan.interceptors.base.CommandInterceptor.handleDefault(CommandInterceptor.java:130)
> at org.infinispan.commands.AbstractVisitor.visitPrepareCommand(AbstractVisitor.java:126)
> at org.infinispan.commands.tx.PrepareCommand.acceptVisitor(PrepareCommand.java:133)
> at org.infinispan.interceptors.base.CommandInterceptor.invokeNextInterceptor(CommandInterceptor.java:116)
> at org.infinispan.interceptors.InvocationContextInterceptor.handleAll(InvocationContextInterceptor.java:132)
> at org.infinispan.interceptors.InvocationContextInterceptor.handleDefault(InvocationContextInterceptor.java:91)
> at org.infinispan.commands.AbstractVisitor.visitPrepareCommand(AbstractVisitor.java:126)
> at org.infinispan.commands.tx.PrepareCommand.acceptVisitor(PrepareCommand.java:133)
> at org.infinispan.interceptors.base.CommandInterceptor.invokeNextInterceptor(CommandInterceptor.java:116)
> at org.infinispan.interceptors.BatchingInterceptor.handleDefault(BatchingInterceptor.java:70)
> at org.infinispan.commands.AbstractVisitor.visitPrepareCommand(AbstractVisitor.java:126)
> at org.infinispan.commands.tx.PrepareCommand.acceptVisitor(PrepareCommand.java:133)
> at org.infinispan.interceptors.InterceptorChain.invoke(InterceptorChain.java:345)
> at org.infinispan.commands.tx.PrepareCommand.perform(PrepareCommand.java:128)
> at org.infinispan.remoting.InboundInvocationHandlerImpl.handleInternal(InboundInvocationHandlerImpl.java:127)
> at org.infinispan.remoting.InboundInvocationHandlerImpl.handleWithWaitForBlocks(InboundInvocationHandlerImpl.java:136)
> at org.infinispan.remoting.InboundInvocationHandlerImpl.handleWithRetry(InboundInvocationHandlerImpl.java:162)
> at org.infinispan.remoting.InboundInvocationHandlerImpl.handle(InboundInvocationHandlerImpl.java:114)
> at org.infinispan.remoting.transport.jgroups.CommandAwareRpcDispatcher.executeCommand(CommandAwareRpcDispatcher.java:226)
> at org.infinispan.remoting.transport.jgroups.CommandAwareRpcDispatcher.handle(CommandAwareRpcDispatcher.java:203)
> at org.jgroups.blocks.RequestCorrelator.handleRequest(RequestCorrelator.java:465)
> at org.jgroups.blocks.RequestCorrelator.receiveMessage(RequestCorrelator.java:372)
> at org.jgroups.blocks.RequestCorrelator.receive(RequestCorrelator.java:247)
> at org.jgroups.blocks.MessageDispatcher$ProtocolAdapter.up(MessageDispatcher.java:601)
> at org.jgroups.blocks.mux.MuxUpHandler.up(MuxUpHandler.java:130)
> at org.jgroups.JChannel.up(JChannel.java:715)
> at org.jgroups.stack.ProtocolStack.up(ProtocolStack.java:1020)
> at org.jgroups.protocols.RSVP.up(RSVP.java:192)
> at org.jgroups.protocols.FRAG2.up(FRAG2.java:181)
> at org.jgroups.protocols.FlowControl.up(FlowControl.java:418)
> at org.jgroups.protocols.FlowControl.up(FlowControl.java:400)
> at org.jgroups.protocols.pbcast.GMS.up(GMS.java:899)
> at org.jgroups.protocols.pbcast.STABLE.up(STABLE.java:244)
> at org.jgroups.protocols.UNICAST2.handleDataReceived(UNICAST2.java:777)
> at org.jgroups.protocols.UNICAST2.up(UNICAST2.java:414)
> at org.jgroups.protocols.pbcast.NAKACK2.up(NAKACK2.java:572)
> at org.jgroups.protocols.BARRIER.up(BARRIER.java:102)
> at org.jgroups.protocols.VERIFY_SUSPECT.up(VERIFY_SUSPECT.java:143)
> at org.jgroups.protocols.FD.up(FD.java:273)
> at org.jgroups.protocols.FD_SOCK.up(FD_SOCK.java:288)
> at org.jgroups.protocols.MERGE2.up(MERGE2.java:205)
> at org.jgroups.protocols.Discovery.up(Discovery.java:359)
> at org.jgroups.protocols.TP$ProtocolAdapter.up(TP.java:2568)
> at org.jgroups.protocols.TP.passMessageUp(TP.java:1211)
> at org.jgroups.protocols.TP$IncomingPacket.handleMyMessage(TP.java:1775)
> at org.jgroups.protocols.TP$IncomingPacket.run(TP.java:1748)
> at java.util.concurrent.ThreadPoolExecutor$Worker.runTask(ThreadPoolExecutor.java:886) [rt.jar:1.6.0_29]
> at java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:908) [rt.jar:1.6.0_29]
> at java.lang.Thread.run(Thread.java:662) [rt.jar:1.6.0_29]
> [0m[31m20:12:42,225 ERROR [org.infinispan.cacheviews.CacheViewsManagerImpl] (CacheViewInstaller-1,node-0/web) ISPN000172: Failed to prepare view CacheView{viewId=3, members=[node-1/web]} for cache default-host/distributable, rolling back to view CacheView{viewId=2, members=[node-0/web, node-1/web]}: java.util.concurrent.TimeoutException
> at java.util.concurrent.FutureTask$Sync.innerGet(FutureTask.java:228) [rt.jar:1.6.0_29]
> at java.util.concurrent.FutureTask.get(FutureTask.java:91) [rt.jar:1.6.0_29]
> at org.infinispan.cacheviews.CacheViewsManagerImpl.clusterPrepareView(CacheViewsManagerImpl.java:319) [infinispan-core-5.1.6.FINAL.jar:5.1.6.FINAL]
> at org.infinispan.cacheviews.CacheViewsManagerImpl.clusterInstallView(CacheViewsManagerImpl.java:250) [infinispan-core-5.1.6.FINAL.jar:5.1.6.FINAL]
> at org.infinispan.cacheviews.CacheViewsManagerImpl$ViewInstallationTask.call(CacheViewsManagerImpl.java:876) [infinispan-core-5.1.6.FINAL.jar:5.1.6.FINAL]
> at java.util.concurrent.FutureTask$Sync.innerRun(FutureTask.java:303) [rt.jar:1.6.0_29]
> at java.util.concurrent.FutureTask.run(FutureTask.java:138) [rt.jar:1.6.0_29]
> at java.util.concurrent.ThreadPoolExecutor$Worker.runTask(ThreadPoolExecutor.java:886) [rt.jar:1.6.0_29]
> at java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:908) [rt.jar:1.6.0_29]
> at java.lang.Thread.run(Thread.java:662) [rt.jar:1.6.0_29]
> [0m[31m20:12:42,278 ERROR [org.infinispan.cacheviews.CacheViewsManagerImpl] (CacheViewInstaller-2,node-0/web) ISPN000172: Failed to prepare view CacheView{viewId=3, members=[node-1/web]} for cache repl, rolling back to view CacheView{viewId=2, members=[node-0/web, node-1/web]}: java.util.concurrent.TimeoutException
> at java.util.concurrent.FutureTask$Sync.innerGet(FutureTask.java:228) [rt.jar:1.6.0_29]
> at java.util.concurrent.FutureTask.get(FutureTask.java:91) [rt.jar:1.6.0_29]
> at org.infinispan.cacheviews.CacheViewsManagerImpl.clusterPrepareView(CacheViewsManagerImpl.java:319) [infinispan-core-5.1.6.FINAL.jar:5.1.6.FINAL]
> at org.infinispan.cacheviews.CacheViewsManagerImpl.clusterInstallView(CacheViewsManagerImpl.java:250) [infinispan-core-5.1.6.FINAL.jar:5.1.6.FINAL]
> at org.infinispan.cacheviews.CacheViewsManagerImpl$ViewInstallationTask.call(CacheViewsManagerImpl.java:876) [infinispan-core-5.1.6.FINAL.jar:5.1.6.FINAL]
> at java.util.concurrent.FutureTask$Sync.innerRun(FutureTask.java:303) [rt.jar:1.6.0_29]
> at java.util.concurrent.FutureTask.run(FutureTask.java:138) [rt.jar:1.6.0_29]
> at java.util.concurrent.ThreadPoolExecutor$Worker.runTask(ThreadPoolExecutor.java:886) [rt.jar:1.6.0_29]
> at java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:908) [rt.jar:1.6.0_29]
> at java.lang.Thread.run(Thread.java:662) [rt.jar:1.6.0_29]
> [0m[0m20:12:42,289 INFO [org.infinispan.remoting.transport.jgroups.JGroupsTransport] (MSC service thread 1-3) ISPN000082: Stopping the RpcDispatcher
> [0m[0m20:12:42,367 INFO [org.jboss.as.repository] (management-handler-thread - 3) JBAS014901: Content removed from location /home/jenkins/jenkins-work/workspace/as7-master-testsuite-ip6/testsuite/integration/clust/target/jbossas-clustering-udp-0/standalone/data/content/b6/0d7f322e7e43935bef9e27e78374f825dc3a5b/content
> [0m[0m20:12:42,369 INFO [org.jboss.as.server] (management-handler-thread - 3) JBAS018558: Undeployed "distributable.war"
> [0m[31m20:12:43,427 ERROR [org.apache.catalina.core.ContainerBase.[jboss.web].[default-host].[/distributable].[FacesServlet]] (http-/fccc:0:0:0:0:0:0:2%1:8180-1) Servlet.service() for servlet FacesServlet threw exception: javax.faces.application.ViewExpiredException: viewId:/home.jsf - View /home.jsf could not be restored.
> at com.sun.faces.lifecycle.RestoreViewPhase.execute(RestoreViewPhase.java:205) [jsf-impl-2.1.12-jbossorg-1.jar:]
> at com.sun.faces.lifecycle.Phase.doPhase(Phase.java:101) [jsf-impl-2.1.12-jbossorg-1.jar:]
> at com.sun.faces.lifecycle.RestoreViewPhase.doPhase(RestoreViewPhase.java:116) [jsf-impl-2.1.12-jbossorg-1.jar:]
> at com.sun.faces.lifecycle.LifecycleImpl.execute(LifecycleImpl.java:118) [jsf-impl-2.1.12-jbossorg-1.jar:]
> at javax.faces.webapp.FacesServlet.service(FacesServlet.java:593) [jboss-jsf-api_2.1_spec-2.0.5.Final.jar:2.0.5.Final]
> at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:329) [jbossweb-7.0.17.Final.jar:]
> at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:248) [jbossweb-7.0.17.Final.jar:]
> at org.jboss.weld.servlet.ConversationPropagationFilter.doFilter(ConversationPropagationFilter.java:62) [weld-core-1.1.9.Final.jar:2012-08-06 19:12]
> at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:280) [jbossweb-7.0.17.Final.jar:]
> at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:248) [jbossweb-7.0.17.Final.jar:]
> at org.apache.catalina.core.StandardWrapperValve.invoke(StandardWrapperValve.java:275) [jbossweb-7.0.17.Final.jar:]
> at org.apache.catalina.core.StandardContextValve.invoke(StandardContextValve.java:161) [jbossweb-7.0.17.Final.jar:]
> at org.jboss.modcluster.container.jbossweb.JBossWebContext$RequestListenerValve.event(JBossWebContext.java:67)
> at org.jboss.modcluster.container.jbossweb.JBossWebContext$RequestListenerValve.invoke(JBossWebContext.java:48)
> at org.jboss.as.web.session.ClusteredSessionValve.handleRequest(ClusteredSessionValve.java:134) [jboss-as-web-7.2.0.Alpha1-SNAPSHOT.jar:7.2.0.Alpha1-SNAPSHOT]
> at org.jboss.as.web.session.ClusteredSessionValve.invoke(ClusteredSessionValve.java:99) [jboss-as-web-7.2.0.Alpha1-SNAPSHOT.jar:7.2.0.Alpha1-SNAPSHOT]
> at org.jboss.as.web.session.JvmRouteValve.invoke(JvmRouteValve.java:92) [jboss-as-web-7.2.0.Alpha1-SNAPSHOT.jar:7.2.0.Alpha1-SNAPSHOT]
> at org.jboss.as.web.session.LockingValve.invoke(LockingValve.java:64) [jboss-as-web-7.2.0.Alpha1-SNAPSHOT.jar:7.2.0.Alpha1-SNAPSHOT]
> at org.jboss.as.web.security.SecurityContextAssociationValve.invoke(SecurityContextAssociationValve.java:156) [jboss-as-web-7.2.0.Alpha1-SNAPSHOT.jar:7.2.0.Alpha1-SNAPSHOT]
> at org.apache.catalina.core.StandardHostValve.invoke(StandardHostValve.java:155) [jbossweb-7.0.17.Final.jar:]
> at org.apache.catalina.valves.ErrorReportValve.invoke(ErrorReportValve.java:102) [jbossweb-7.0.17.Final.jar:]
> at org.apache.catalina.core.StandardEngineValve.invoke(StandardEngineValve.java:109) [jbossweb-7.0.17.Final.jar:]
> at org.apache.catalina.connector.CoyoteAdapter.service(CoyoteAdapter.java:372) [jbossweb-7.0.17.Final.jar:]
> at org.apache.coyote.http11.Http11Processor.process(Http11Processor.java:877) [jbossweb-7.0.17.Final.jar:]
> at org.apache.coyote.http11.Http11Protocol$Http11ConnectionHandler.process(Http11Protocol.java:679) [jbossweb-7.0.17.Final.jar:]
> at org.apache.tomcat.util.net.JIoEndpoint$Worker.run(JIoEndpoint.java:931) [jbossweb-7.0.17.Final.jar:]
> at java.lang.Thread.run(Thread.java:662) [rt.jar:1.6.0_29]
> [0m
> {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
11 years, 9 months
[JBoss JIRA] (WFLY-1136) Common mechanism for all secure socket definitions
by Tomaz Cerar (JIRA)
[ https://issues.jboss.org/browse/WFLY-1136?page=com.atlassian.jira.plugin.... ]
Tomaz Cerar reassigned WFLY-1136:
---------------------------------
Assignee: Tomaz Cerar
> Common mechanism for all secure socket definitions
> --------------------------------------------------
>
> Key: WFLY-1136
> URL: https://issues.jboss.org/browse/WFLY-1136
> Project: WildFly
> Issue Type: Feature Request
> Components: Domain Management, Security
> Reporter: Brian Stansberry
> Assignee: Tomaz Cerar
>
> This JIRA is based on feedback we received after the Andiamo BOF at JBoss World 2010:
> >> The JAASSecurityDomain in my opinion should
> >> handle all secure socket definitions. Mod-cluster currently does
> >> not support JAASSecurityDomains.
> I won't comment either way on whether JAASSecurityDomain is how we'll do this, but I definitely agree that a common mechanism should be used for all secure socket definitions.
--
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
11 years, 9 months
[JBoss JIRA] (WFLY-1172) mechanism to load tag libraries from module
by Brian Stansberry (JIRA)
[ https://issues.jboss.org/browse/WFLY-1172?page=com.atlassian.jira.plugin.... ]
Brian Stansberry updated WFLY-1172:
-----------------------------------
Component/s: Web (JBoss Web)
> mechanism to load tag libraries from module
> -------------------------------------------
>
> Key: WFLY-1172
> URL: https://issues.jboss.org/browse/WFLY-1172
> Project: WildFly
> Issue Type: Feature Request
> Components: Web (JBoss Web)
> Reporter: Ivica Loncar
> Assignee: Brian Stansberry
> Priority: Critical
> Labels: modules, tag, taglib, tld
> Original Estimate: 1 day
> Remaining Estimate: 1 day
>
> tag libraries are scanned only if they appear in jar inside WEB-INF/lib or are defined in tld under WEB-INF.
> The simplest scenario to explain why this is a problem: portlet 2 defines standard portlet taglib, but the classes in this file come from concrete implementations. Currently I see no way to use 2 different portals in a portable way.
> Please provide a way to notify a relevant subsystem for web applications that specific module contains a .tld.
--
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
11 years, 9 months