[JBoss JIRA] (JBTM-1858) org.jboss.jbossts.txbridge.tests.outbound.junit.OutboundBasicTests timed out
by Amos Feng (JIRA)
[ https://issues.jboss.org/browse/JBTM-1858?page=com.atlassian.jira.plugin.... ]
Amos Feng commented on JBTM-1858:
---------------------------------
[~jim.ma]
I think it's maybe a booting order issue. I made the following changes on webservices/server-integration/src/main/java/org/jboss/as/webservices/service/ServerConfigService.java and it can reproduce this issue by start jboss-as with standalone-xts.xml
It looks like that the ServerConfigService saveContainerRegistry could run after the EndpointPublishService getMSCService
{code}
diff --git a/webservices/server-integration/src/main/java/org/jboss/as/webservices/service/ServerConfig
index 9dc48c8..3662400 100644
--- a/webservices/server-integration/src/main/java/org/jboss/as/webservices/service/ServerConfigService
+++ b/webservices/server-integration/src/main/java/org/jboss/as/webservices/service/ServerConfigService
@@ -29,6 +29,7 @@ import org.jboss.as.server.ServerEnvironment;
import org.jboss.as.server.ServerEnvironmentService;
import org.jboss.as.webservices.config.ServerConfigImpl;
import org.jboss.as.webservices.util.WSServices;
+import org.jboss.logging.Logger.Level;
import org.jboss.msc.service.Service;
import org.jboss.msc.service.ServiceBuilder;
import org.jboss.msc.service.ServiceBuilder.DependencyType;
@@ -89,6 +90,15 @@ public final class ServerConfigService implements Service<ServerConfig> {
builder.addListener(listener);
builder.setInitialMode(Mode.ACTIVE);
ServiceController<?> sc = builder.install();
+
+ try {
+ ROOT_LOGGER.log(Level.INFO, "start sleep");
+ Thread.sleep(1000);
+ ROOT_LOGGER.log(Level.INFO, "end sleep");
+ } catch (InterruptedException e) {
+
+ }
WSServices.saveContainerRegistry(sc.getServiceContainer());
return sc;
{code}
> org.jboss.jbossts.txbridge.tests.outbound.junit.OutboundBasicTests timed out
> ----------------------------------------------------------------------------
>
> Key: JBTM-1858
> URL: https://issues.jboss.org/browse/JBTM-1858
> Project: JBoss Transaction Manager
> Issue Type: Bug
> Security Level: Public(Everyone can see)
> Components: TxBridge
> Reporter: Gytis Trikleris
> Assignee: Amos Feng
> Priority: Minor
> Fix For: 5.0.0.M4
>
>
> http://172.17.131.2/view/Narayana+BlackTie/job/narayana-codeCoverage/63/c...
> {code}
> Jul 19, 2013 9:39:30 PM org.jboss.arquillian.container.test.impl.client.container.ClientContainerController start
> INFO: Manual starting of a server instance
> Jul 19, 2013 9:39:30 PM org.jboss.as.arquillian.container.managed.ManagedDeployableContainer startInternal
> INFO: Starting container with: [/usr/local/jdk1.7.0_09//bin/java, -server, -Xms64m, -Xmx1024m, -XX:MaxPermSize=512m, -Dorg.jboss.byteman.debug=true, -Dorg.jboss.byteman.verbose=true, -Dorg.jboss.byteman.contrib.dtest.rmiregistry.port=1199, -Djboss.modules.system.pkgs=org.jboss.byteman, -javaagent:/home/hudson/workspace/narayana-codeCoverage/txbridge/target/byteman/byteman.jar=port:9091,listener:true,sys:/home/hudson/workspace/narayana-codeCoverage/txbridge/target/byteman/byteman-dtest.jar, -ea, -Djboss.home.dir=/home/hudson/workspace/narayana-codeCoverage/jboss-as/build/target/wildfly-8.0.0.Alpha4-SNAPSHOT, -Dorg.jboss.boot.log.file=/home/hudson/workspace/narayana-codeCoverage/jboss-as/build/target/wildfly-8.0.0.Alpha4-SNAPSHOT/standalone/log/boot.log, -Dlogging.configuration=file:/home/hudson/workspace/narayana-codeCoverage/jboss-as/build/target/wildfly-8.0.0.Alpha4-SNAPSHOT/standalone/configuration/logging.properties, -Djboss.bundles.dir=/home/hudson/workspace/narayana-codeCoverage/jboss-as/build/target/wildfly-8.0.0.Alpha4-SNAPSHOT/bundles, -jar, /home/hudson/workspace/narayana-codeCoverage/jboss-as/build/target/wildfly-8.0.0.Alpha4-SNAPSHOT/jboss-modules.jar, -mp, /home/hudson/workspace/narayana-codeCoverage/jboss-as/build/target/wildfly-8.0.0.Alpha4-SNAPSHOT/modules, org.jboss.as.standalone, -server-config, standalone-xts.xml]
> TransformListener() : accepting requests on localhost:9091
> [0m21:39:31,651 INFO [org.jboss.modules] (main) JBoss Modules version 1.2.4.Final
> [0m[0m21:39:32,213 INFO [org.jboss.msc] (main) JBoss MSC version 1.2.0.Beta2
> [0m[0m21:39:32,338 INFO [org.jboss.as] (MSC service thread 1-2) JBAS015899: WildFly 8.0.0.Alpha4-SNAPSHOT "WildFly" starting
> [0m[0m21:39:34,956 INFO [stdout] (ServerService Thread Pool -- 3) EMMA: collecting runtime coverage data ...
> [0m[0m21:39:35,119 INFO [org.xnio] (MSC service thread 1-1) XNIO Version 3.1.0.CR3
> [0m[0m21:39:35,126 INFO [org.xnio.nio] (MSC service thread 1-1) XNIO NIO Implementation Version 3.1.0.CR3
> [0m[0m21:39:35,158 INFO [org.jboss.remoting] (MSC service thread 1-1) JBoss Remoting version 4.0.0.Beta1
> [0m[0m21:39:35,211 INFO [org.jboss.as.server] (Controller Boot Thread) JBAS015888: Creating http management service using socket-binding (management-http)
> [0m[0m21:39:35,377 INFO [org.jboss.as.clustering.infinispan] (ServerService Thread Pool -- 35) JBAS010280: Activating Infinispan subsystem.
> [0m[0m21:39:35,448 INFO [org.jboss.as.jacorb] (ServerService Thread Pool -- 36) JBAS016300: Activating JacORB Subsystem
> [0m[0m21:39:35,474 INFO [org.jboss.as.security] (ServerService Thread Pool -- 51) JBAS013171: Activating Security Subsystem
> [0m[0m21:39:35,480 INFO [org.jboss.as.connector.logging] (MSC service thread 1-2) JBAS010408: Starting JCA Subsystem (IronJacamar 1.0.17.Final)
> [0m[0m21:39:35,624 INFO [org.jboss.as.jsf] (ServerService Thread Pool -- 42) JBAS012605: Activated the following JSF Implementations: [main]
> [0m[0m21:39:35,871 INFO [org.jboss.as.webservices] (ServerService Thread Pool -- 55) JBAS015537: Activating WebServices Extension
> [0m[0m21:39:36,226 INFO [org.wildfly.extension.undertow] (MSC service thread 1-2) JBAS017502: Undertow 1.0.0.Beta3 starting
> [0m[0m21:39:36,346 INFO [org.jboss.as.naming] (ServerService Thread Pool -- 46) JBAS011800: Activating Naming Subsystem
> [0m[0m21:39:36,417 INFO [org.jboss.as.jacorb] (MSC service thread 1-1) JBAS016330: CORBA ORB Service started
> [0m[0m21:39:36,453 INFO [org.jboss.as.security] (MSC service thread 1-2) JBAS013170: Current PicketBox version=4.0.17.Final
> [0m[0m21:39:36,715 INFO [org.hornetq.core.server] (ServerService Thread Pool -- 58) HQ221000: live server is starting with configuration HornetQ Configuration (clustered=false,backup=false,sharedStore=true,journalDirectory=/home/hudson/workspace/narayana-codeCoverage/jboss-as/build/target/wildfly-8.0.0.Alpha4-SNAPSHOT/standalone/data/messagingjournal,bindingsDirectory=/home/hudson/workspace/narayana-codeCoverage/jboss-as/build/target/wildfly-8.0.0.Alpha4-SNAPSHOT/standalone/data/messagingbindings,largeMessagesDirectory=/home/hudson/workspace/narayana-codeCoverage/jboss-as/build/target/wildfly-8.0.0.Alpha4-SNAPSHOT/standalone/data/messaginglargemessages,pagingDirectory=/home/hudson/workspace/narayana-codeCoverage/jboss-as/build/target/wildfly-8.0.0.Alpha4-SNAPSHOT/standalone/data/messagingpaging)
> [0m[0m21:39:36,717 INFO [org.hornetq.core.server] (ServerService Thread Pool -- 58) HQ221006: Waiting to obtain live lock
> [0m[0m21:39:36,795 INFO [org.wildfly.extension.undertow] (ServerService Thread Pool -- 54) JBAS017502: Undertow 1.0.0.Beta3 starting
> [0m[0m21:39:36,872 INFO [org.wildfly.extension.undertow] (ServerService Thread Pool -- 54) JBAS017527: Creating file handler for path /home/hudson/workspace/narayana-codeCoverage/jboss-as/build/target/wildfly-8.0.0.Alpha4-SNAPSHOT/welcome-content
> [0m[0m21:39:36,896 INFO [org.hornetq.core.server] (ServerService Thread Pool -- 58) HQ221012: Using AIO Journal
> [0m[0m21:39:37,004 INFO [org.jboss.as.naming] (MSC service thread 1-2) JBAS011802: Starting Naming Service
> [0m[0m21:39:37,293 INFO [org.jboss.ws.common.management] (MSC service thread 1-1) JBWS022052: Starting JBoss Web Services - Stack CXF Server 4.2.0.CR1
> [0m[0m21:39:37,294 INFO [org.wildfly.extension.undertow] (MSC service thread 1-1) JBAS017525: Started http handler io.undertow.server.handlers.resource.ResourceHandler@86c96d.
> [0m[0m21:39:37,439 INFO [org.jboss.as.mail.extension] (MSC service thread 1-1) JBAS015400: Bound mail session [java:jboss/mail/Default]
> [0m[0m21:39:37,440 INFO [org.wildfly.extension.undertow] (MSC service thread 1-1) Starting server server service: service jboss.undertow.server.default-server
> [0m[0m21:39:37,514 INFO [org.wildfly.extension.undertow] (MSC service thread 1-1) Starting host default-host
> [0m[0m21:39:37,533 INFO [org.wildfly.extension.undertow] (MSC service thread 1-2) JBAS017528: registering handler io.undertow.server.handlers.resource.ResourceHandler@86c96d under path '/'
> [0m[0m21:39:37,559 INFO [org.wildfly.extension.undertow] (MSC service thread 1-1) JBAS017519: Undertow HTTP listener default listening on localhost.localdomain/127.0.0.1:8080
> [0m[0m21:39:37,684 INFO [org.hornetq.core.server] (ServerService Thread Pool -- 58) HQ221034: Waiting to obtain live lock
> [0m[0m21:39:37,684 INFO [org.hornetq.core.server] (ServerService Thread Pool -- 58) HQ221035: Live Server Obtained live lock
> [0m[0m21:39:38,162 INFO [org.jboss.as.jacorb] (MSC service thread 1-1) JBAS016328: CORBA Naming Service started
> [0m[0m21:39:38,182 INFO [org.jboss.as.connector.subsystems.datasources] (ServerService Thread Pool -- 30) JBAS010403: Deploying JDBC-compliant driver class org.h2.Driver (version 1.3)
> [0m[0m21:39:38,423 INFO [org.jboss.as.connector.deployers.jdbc] (MSC service thread 1-2) JBAS010417: Started Driver service with driver-name = h2
> [0m[0m21:39:38,922 INFO [org.jboss.as.connector.subsystems.datasources] (MSC service thread 1-1) JBAS010400: Bound data source [java:jboss/datasources/ExampleDS]
> [0m[0m21:39:38,923 INFO [org.jboss.as.webservices] (MSC service thread 1-2) JBAS015539: Starting service jboss.ws.endpoint-publish.ws-c11
> [0m[0m21:39:39,081 INFO [org.jboss.ws.cxf.metadata] (MSC service thread 1-2) JBWS024061: Adding service endpoint metadata: id=ActivationService
> address=http://localhost:8080/ws-c11/ActivationService
> implementor=com.arjuna.webservices11.wscoor.sei.ActivationPortTypeImpl
> serviceName={http://docs.oasis-open.org/ws-tx/wscoor/2006/06}ActivationSe...
> portName={http://docs.oasis-open.org/ws-tx/wscoor/2006/06}ActivationPortType
> annotationWsdlLocation=null
> wsdlLocationOverride=null
> mtomEnabled=false
> [0m[0m21:39:39,082 INFO [org.jboss.ws.cxf.metadata] (MSC service thread 1-2) JBWS024061: Adding service endpoint metadata: id=RegistrationService
> address=http://localhost:8080/ws-c11/RegistrationService
> implementor=com.arjuna.webservices11.wscoor.sei.RegistrationPortTypeImpl
> serviceName={http://docs.oasis-open.org/ws-tx/wscoor/2006/06}Registration...
> portName={http://docs.oasis-open.org/ws-tx/wscoor/2006/06}RegistrationPor...
> annotationWsdlLocation=null
> wsdlLocationOverride=null
> mtomEnabled=false
> [0m[0m21:39:39,051 INFO [org.jboss.as.webservices] (MSC service thread 1-1) JBAS015539: Starting service jboss.ws.endpoint-publish.ws-t11-coordinator
> [0m[0m21:39:39,328 INFO [org.jboss.ws.cxf.metadata] (MSC service thread 1-1) JBWS024061: Adding service endpoint metadata: id=BusinessAgreementWithCoordinatorCompletionCoordinatorService
> address=http://localhost:8080/ws-t11-coordinator/BusinessAgreementWithCoordinatorCompletionCoordinatorService
> implementor=com.arjuna.webservices11.wsba.sei.BusinessAgreementWithCoordinatorCompletionCoordinatorPortTypeImpl
> serviceName={http://docs.oasis-open.org/ws-tx/wsba/2006/06}BusinessAgreem...
> portName={http://docs.oasis-open.org/ws-tx/wsba/2006/06}BusinessAgreement...
> annotationWsdlLocation=null
> wsdlLocationOverride=null
> mtomEnabled=false
> [0m[0m21:39:39,329 INFO [org.jboss.ws.cxf.metadata] (MSC service thread 1-1) JBWS024061: Adding service endpoint metadata: id=CoordinatorService
> address=http://localhost:8080/ws-t11-coordinator/CoordinatorService
> implementor=com.arjuna.webservices11.wsat.sei.CoordinatorPortTypeImpl
> serviceName={http://docs.oasis-open.org/ws-tx/wsat/2006/06}CoordinatorSer...
> portName={http://docs.oasis-open.org/ws-tx/wsat/2006/06}CoordinatorPortType
> annotationWsdlLocation=null
> wsdlLocationOverride=null
> mtomEnabled=false
> [0m[0m21:39:39,330 INFO [org.jboss.ws.cxf.metadata] (MSC service thread 1-1) JBWS024061: Adding service endpoint metadata: id=CompletionCoordinatorRPCService
> address=http://localhost:8080/ws-t11-coordinator/CompletionCoordinatorRPCService
> implementor=com.arjuna.webservices11.wsat.sei.CompletionCoordinatorRPCPortTypeImpl
> serviceName={http://docs.oasis-open.org/ws-tx/wsat/2006/06}CompletionCoor...
> portName={http://docs.oasis-open.org/ws-tx/wsat/2006/06}CompletionCoordin...
> annotationWsdlLocation=null
> wsdlLocationOverride=null
> mtomEnabled=false
> [0m[0m21:39:39,331 INFO [org.jboss.ws.cxf.metadata] (MSC service thread 1-1) JBWS024061: Adding service endpoint metadata: id=TerminationCoordinatorRPCService
> address=http://localhost:8080/ws-t11-coordinator/TerminationCoordinatorRPCService
> implementor=com.arjuna.webservices11.wsarjtx.sei.TerminationCoordinatorRPCPortTypeImpl
> serviceName={http://schemas.arjuna.com/ws/2005/10/wsarjtx}TerminationCoor...
> portName={http://schemas.arjuna.com/ws/2005/10/wsarjtx}TerminationCoordin...
> annotationWsdlLocation=null
> wsdlLocationOverride=null
> mtomEnabled=false
> [0m[0m21:39:39,333 INFO [org.jboss.ws.cxf.metadata] (MSC service thread 1-1) JBWS024061: Adding service endpoint metadata: id=TerminationCoordinatorService
> address=http://localhost:8080/ws-t11-coordinator/TerminationCoordinatorService
> implementor=com.arjuna.webservices11.wsarjtx.sei.TerminationCoordinatorPortTypeImpl
> serviceName={http://schemas.arjuna.com/ws/2005/10/wsarjtx}TerminationCoor...
> portName={http://schemas.arjuna.com/ws/2005/10/wsarjtx}TerminationCoordin...
> annotationWsdlLocation=null
> wsdlLocationOverride=null
> mtomEnabled=false
> [0m[0m21:39:39,334 INFO [org.jboss.ws.cxf.metadata] (MSC service thread 1-1) JBWS024061: Adding service endpoint metadata: id=BusinessAgreementWithParticipantCompletionCoordinatorService
> address=http://localhost:8080/ws-t11-coordinator/BusinessAgreementWithParticipantCompletionCoordinatorService
> implementor=com.arjuna.webservices11.wsba.sei.BusinessAgreementWithParticipantCompletionCoordinatorPortTypeImpl
> serviceName={http://docs.oasis-open.org/ws-tx/wsba/2006/06}BusinessAgreem...
> portName={http://docs.oasis-open.org/ws-tx/wsba/2006/06}BusinessAgreement...
> annotationWsdlLocation=null
> wsdlLocationOverride=null
> mtomEnabled=false
> [0m[0m21:39:39,335 INFO [org.jboss.ws.cxf.metadata] (MSC service thread 1-1) JBWS024061: Adding service endpoint metadata: id=CompletionCoordinatorService
> address=http://localhost:8080/ws-t11-coordinator/CompletionCoordinatorService
> implementor=com.arjuna.webservices11.wsat.sei.CompletionCoordinatorPortTypeImpl
> serviceName={http://docs.oasis-open.org/ws-tx/wsat/2006/06}CompletionCoor...
> portName={http://docs.oasis-open.org/ws-tx/wsat/2006/06}CompletionCoordin...
> annotationWsdlLocation=null
> wsdlLocationOverride=null
> mtomEnabled=false
> [0m[0m21:39:39,887 INFO [org.apache.cxf.service.factory.ReflectionServiceFactoryBean] (MSC service thread 1-1) Creating Service {http://docs.oasis-open.org/ws-tx/wsba/2006/06}BusinessAgreementWithCoordinatorCompletionCoordinatorService from class com.arjuna.webservices11.wsba.sei.BusinessAgreementWithCoordinatorCompletionCoordinatorPortTypeImpl
> [0m[0m21:39:40,154 INFO [org.hornetq.core.server] (ServerService Thread Pool -- 58) HQ221020: Started Netty Acceptor version 3.6.2.Final-c0d783c 127.0.0.1:5445 for CORE protocol
> [0m[0m21:39:40,153 INFO [org.apache.cxf.service.factory.ReflectionServiceFactoryBean] (MSC service thread 1-2) Creating Service {http://docs.oasis-open.org/ws-tx/wscoor/2006/06}ActivationService from class com.arjuna.webservices11.wscoor.sei.ActivationPortTypeImpl
> [0m[0m21:39:40,240 INFO [org.hornetq.core.server] (ServerService Thread Pool -- 58) HQ221020: Started Netty Acceptor version 3.6.2.Final-c0d783c 127.0.0.1:5455 for CORE protocol
> [0m[0m21:39:40,243 INFO [org.hornetq.core.server] (ServerService Thread Pool -- 58) HQ221020: Started Netty Acceptor version 3.6.2.Final-c0d783c org.hornetq.default.servlet:5445 for CORE protocol
> [0m[0m21:39:40,495 INFO [org.hornetq.core.server] (ServerService Thread Pool -- 58) HQ221007: Server is now live
> [0m[0m21:39:40,495 INFO [org.hornetq.core.server] (ServerService Thread Pool -- 58) HQ221001: HornetQ Server version 2.3.1.Final (Wild Hornet, 123) [84bf850e-f0a5-11e2-b06f-99351d644b18]
> [0m[0m21:39:41,365 INFO [org.apache.cxf.endpoint.ServerImpl] (MSC service thread 1-2) Setting the server's publish address to be http://localhost:8080/ws-c11/ActivationService
> [0m[0m21:39:41,607 INFO [org.apache.cxf.endpoint.ServerImpl] (MSC service thread 1-1) Setting the server's publish address to be http://localhost:8080/ws-t11-coordinator/BusinessAgreementWithCoordinator...
> [0m[0m21:39:41,969 INFO [org.jboss.ws.cxf.deployment] (MSC service thread 1-2) JBWS024074: WSDL published to: file:/home/hudson/workspace/narayana-codeCoverage/jboss-as/build/target/wildfly-8.0.0.Alpha4-SNAPSHOT/standalone/data/wsdl/ws-c11.deployment/ActivationService.wsdl
> [0m[0m21:39:41,970 INFO [org.apache.cxf.service.factory.ReflectionServiceFactoryBean] (MSC service thread 1-2) Creating Service {http://docs.oasis-open.org/ws-tx/wscoor/2006/06}RegistrationService from class com.arjuna.webservices11.wscoor.sei.RegistrationPortTypeImpl
> [0m[0m21:39:42,124 INFO [org.apache.cxf.endpoint.ServerImpl] (MSC service thread 1-2) Setting the server's publish address to be http://localhost:8080/ws-c11/RegistrationService
> [0m[0m21:39:42,182 INFO [org.jboss.ws.cxf.deployment] (MSC service thread 1-1) JBWS024074: WSDL published to: file:/home/hudson/workspace/narayana-codeCoverage/jboss-as/build/target/wildfly-8.0.0.Alpha4-SNAPSHOT/standalone/data/wsdl/ws-t11-coordinator.deployment/BusinessAgreementWithCoordinatorCompletionCoordinatorService.wsdl
> [0m[0m21:39:42,211 INFO [org.apache.cxf.service.factory.ReflectionServiceFactoryBean] (MSC service thread 1-1) Creating Service {http://docs.oasis-open.org/ws-tx/wsat/2006/06}CoordinatorService from class com.arjuna.webservices11.wsat.sei.CoordinatorPortTypeImpl
> [0m[0m21:39:42,223 INFO [org.jboss.ws.cxf.deployment] (MSC service thread 1-2) JBWS024074: WSDL published to: file:/home/hudson/workspace/narayana-codeCoverage/jboss-as/build/target/wildfly-8.0.0.Alpha4-SNAPSHOT/standalone/data/wsdl/ws-c11.deployment/RegistrationService.wsdl
> [0m[0m21:39:42,341 INFO [org.apache.cxf.endpoint.ServerImpl] (MSC service thread 1-1) Setting the server's publish address to be http://localhost:8080/ws-t11-coordinator/CoordinatorService
> [0m[0m21:39:42,378 INFO [org.wildfly.extension.undertow] (MSC service thread 1-2) JBAS018210: Register web context: /ws-c11
> [0m[0m21:39:42,379 INFO [org.jboss.as.webservices] (MSC service thread 1-2) JBAS015539: Starting service jboss.ws.endpoint-publish.ws-t11-participant
> [0m[0m21:39:42,397 INFO [org.jboss.ws.cxf.metadata] (MSC service thread 1-2) JBWS024061: Adding service endpoint metadata: id=ParticipantService
> address=http://localhost:8080/ws-t11-participant/ParticipantService
> implementor=com.arjuna.webservices11.wsat.sei.ParticipantPortTypeImpl
> serviceName={http://docs.oasis-open.org/ws-tx/wsat/2006/06}ParticipantSer...
> portName={http://docs.oasis-open.org/ws-tx/wsat/2006/06}ParticipantPortType
> annotationWsdlLocation=null
> wsdlLocationOverride=null
> mtomEnabled=false
> [0m[0m21:39:42,399 INFO [org.jboss.ws.cxf.metadata] (MSC service thread 1-2) JBWS024061: Adding service endpoint metadata: id=BusinessAgreementWithParticipantCompletionParticipantService
> address=http://localhost:8080/ws-t11-participant/BusinessAgreementWithParticipantCompletionParticipantService
> implementor=com.arjuna.webservices11.wsba.sei.BusinessAgreementWithParticipantCompletionParticipantPortTypeImpl
> serviceName={http://docs.oasis-open.org/ws-tx/wsba/2006/06}BusinessAgreem...
> portName={http://docs.oasis-open.org/ws-tx/wsba/2006/06}BusinessAgreement...
> annotationWsdlLocation=null
> wsdlLocationOverride=null
> mtomEnabled=false
> [0m[0m21:39:42,400 INFO [org.jboss.ws.cxf.metadata] (MSC service thread 1-2) JBWS024061: Adding service endpoint metadata: id=BusinessAgreementWithCoordinatorCompletionParticipantService
> address=http://localhost:8080/ws-t11-participant/BusinessAgreementWithCoordinatorCompletionParticipantService
> implementor=com.arjuna.webservices11.wsba.sei.BusinessAgreementWithCoordinatorCompletionParticipantPortTypeImpl
> serviceName={http://docs.oasis-open.org/ws-tx/wsba/2006/06}BusinessAgreem...
> portName={http://docs.oasis-open.org/ws-tx/wsba/2006/06}BusinessAgreement...
> annotationWsdlLocation=null
> wsdlLocationOverride=null
> mtomEnabled=false
> [0m[0m21:39:42,412 INFO [org.jboss.ws.cxf.deployment] (MSC service thread 1-1) JBWS024074: WSDL published to: file:/home/hudson/workspace/narayana-codeCoverage/jboss-as/build/target/wildfly-8.0.0.Alpha4-SNAPSHOT/standalone/data/wsdl/ws-t11-coordinator.deployment/CoordinatorService.wsdl
> [0m[0m21:39:42,413 INFO [org.apache.cxf.service.factory.ReflectionServiceFactoryBean] (MSC service thread 1-1) Creating Service {http://docs.oasis-open.org/ws-tx/wsat/2006/06}CompletionCoordinatorRPCService from class com.arjuna.webservices11.wsat.sei.CompletionCoordinatorRPCPortTypeImpl
> [0m[0m21:39:42,451 INFO [org.apache.cxf.service.factory.ReflectionServiceFactoryBean] (MSC service thread 1-2) Creating Service {http://docs.oasis-open.org/ws-tx/wsat/2006/06}ParticipantService from class com.arjuna.webservices11.wsat.sei.ParticipantPortTypeImpl
> [0m[0m21:39:42,497 INFO [org.apache.cxf.endpoint.ServerImpl] (MSC service thread 1-1) Setting the server's publish address to be http://localhost:8080/ws-t11-coordinator/CompletionCoordinatorRPCService
> [0m[0m21:39:42,584 INFO [org.apache.cxf.endpoint.ServerImpl] (MSC service thread 1-2) Setting the server's publish address to be http://localhost:8080/ws-t11-participant/ParticipantService
> [0m[0m21:39:42,651 INFO [org.jboss.ws.cxf.deployment] (MSC service thread 1-2) JBWS024074: WSDL published to: file:/home/hudson/workspace/narayana-codeCoverage/jboss-as/build/target/wildfly-8.0.0.Alpha4-SNAPSHOT/standalone/data/wsdl/ws-t11-participant.deployment/ParticipantService.wsdl
> [0m[0m21:39:42,652 INFO [org.apache.cxf.service.factory.ReflectionServiceFactoryBean] (MSC service thread 1-2) Creating Service {http://docs.oasis-open.org/ws-tx/wsba/2006/06}BusinessAgreementWithParticipantCompletionParticipantService from class com.arjuna.webservices11.wsba.sei.BusinessAgreementWithParticipantCompletionParticipantPortTypeImpl
> [0m[0m21:39:42,701 INFO [org.jboss.ws.cxf.deployment] (MSC service thread 1-1) JBWS024074: WSDL published to: file:/home/hudson/workspace/narayana-codeCoverage/jboss-as/build/target/wildfly-8.0.0.Alpha4-SNAPSHOT/standalone/data/wsdl/ws-t11-coordinator.deployment/CompletionCoordinatorRPCService.wsdl
> [0m[0m21:39:42,703 INFO [org.apache.cxf.service.factory.ReflectionServiceFactoryBean] (MSC service thread 1-1) Creating Service {http://schemas.arjuna.com/ws/2005/10/wsarjtx}TerminationCoordinatorRPCPortTypeImplService from class com.arjuna.webservices11.wsarjtx.sei.TerminationCoordinatorRPCPortTypeImpl
> [0m[0m21:39:42,825 INFO [org.apache.cxf.endpoint.ServerImpl] (MSC service thread 1-2) Setting the server's publish address to be http://localhost:8080/ws-t11-participant/BusinessAgreementWithParticipant...
> [0m[0m21:39:42,837 INFO [org.apache.cxf.endpoint.ServerImpl] (MSC service thread 1-1) Setting the server's publish address to be http://localhost:8080/ws-t11-coordinator/TerminationCoordinatorRPCService
> [0m[0m21:39:42,866 INFO [org.jboss.ws.cxf.deployment] (MSC service thread 1-1) JBWS024074: WSDL published to: file:/home/hudson/workspace/narayana-codeCoverage/jboss-as/build/target/wildfly-8.0.0.Alpha4-SNAPSHOT/standalone/data/wsdl/ws-t11-coordinator.deployment/TerminationCoordinatorRPCPortTypeImplService.wsdl
> [0m[0m21:39:42,893 INFO [org.apache.cxf.service.factory.ReflectionServiceFactoryBean] (MSC service thread 1-1) Creating Service {http://schemas.arjuna.com/ws/2005/10/wsarjtx}TerminationCoordinatorService from class com.arjuna.schemas.ws._2005._10.wsarjtx.TerminationCoordinatorPortType
> [0m[0m21:39:42,902 INFO [org.apache.cxf.endpoint.ServerImpl] (MSC service thread 1-1) Setting the server's publish address to be http://localhost:8080/ws-t11-coordinator/TerminationCoordinatorService
> [0m[0m21:39:42,906 INFO [org.jboss.ws.cxf.deployment] (MSC service thread 1-2) JBWS024074: WSDL published to: file:/home/hudson/workspace/narayana-codeCoverage/jboss-as/build/target/wildfly-8.0.0.Alpha4-SNAPSHOT/standalone/data/wsdl/ws-t11-participant.deployment/BusinessAgreementWithParticipantCompletionParticipantService.wsdl
> [0m[0m21:39:42,908 INFO [org.apache.cxf.service.factory.ReflectionServiceFactoryBean] (MSC service thread 1-2) Creating Service {http://docs.oasis-open.org/ws-tx/wsba/2006/06}BusinessAgreementWithCoordinatorCompletionParticipantService from class org.oasis_open.docs.ws_tx.wsba._2006._06.BusinessAgreementWithCoordinatorCompletionParticipantPortType
> [0m[0m21:39:42,937 INFO [org.jboss.ws.cxf.deployment] (MSC service thread 1-1) JBWS024074: WSDL published to: file:/home/hudson/workspace/narayana-codeCoverage/jboss-as/build/target/wildfly-8.0.0.Alpha4-SNAPSHOT/standalone/data/wsdl/ws-t11-coordinator.deployment/TerminationCoordinatorService.wsdl
> [0m[0m21:39:42,938 INFO [org.apache.cxf.service.factory.ReflectionServiceFactoryBean] (MSC service thread 1-1) Creating Service {http://docs.oasis-open.org/ws-tx/wsba/2006/06}BusinessAgreementWithParticipantCompletionCoordinatorService from class com.arjuna.webservices11.wsba.sei.BusinessAgreementWithParticipantCompletionCoordinatorPortTypeImpl
> [0m[0m21:39:42,978 INFO [org.apache.cxf.endpoint.ServerImpl] (MSC service thread 1-2) Setting the server's publish address to be http://localhost:8080/ws-t11-participant/BusinessAgreementWithCoordinator...
> [0m[0m21:39:42,985 INFO [org.apache.cxf.endpoint.ServerImpl] (MSC service thread 1-1) Setting the server's publish address to be http://localhost:8080/ws-t11-coordinator/BusinessAgreementWithParticipant...
> [0m[0m21:39:43,075 INFO [org.jboss.ws.cxf.deployment] (MSC service thread 1-1) JBWS024074: WSDL published to: file:/home/hudson/workspace/narayana-codeCoverage/jboss-as/build/target/wildfly-8.0.0.Alpha4-SNAPSHOT/standalone/data/wsdl/ws-t11-coordinator.deployment/BusinessAgreementWithParticipantCompletionCoordinatorService.wsdl
> [0m[0m21:39:43,085 INFO [org.jboss.ws.cxf.deployment] (MSC service thread 1-2) JBWS024074: WSDL published to: file:/home/hudson/workspace/narayana-codeCoverage/jboss-as/build/target/wildfly-8.0.0.Alpha4-SNAPSHOT/standalone/data/wsdl/ws-t11-participant.deployment/BusinessAgreementWithCoordinatorCompletionParticipantService.wsdl
> [0m[0m21:39:43,087 INFO [org.wildfly.extension.undertow] (MSC service thread 1-2) JBAS018210: Register web context: /ws-t11-participant
> [0m[0m21:39:43,087 INFO [org.jboss.as.webservices] (MSC service thread 1-2) JBAS015539: Starting service jboss.ws.endpoint-publish.ws-t11-client
> [0m[0m21:39:43,089 INFO [org.jboss.ws.cxf.metadata] (MSC service thread 1-2) JBWS024061: Adding service endpoint metadata: id=CompletionInitiatorService
> address=http://localhost:8080/ws-t11-client/CompletionInitiatorService
> implementor=com.arjuna.webservices11.wsat.sei.CompletionInitiatorPortTypeImpl
> serviceName={http://docs.oasis-open.org/ws-tx/wsat/2006/06}CompletionInit...
> portName={http://docs.oasis-open.org/ws-tx/wsat/2006/06}CompletionInitiat...
> annotationWsdlLocation=null
> wsdlLocationOverride=null
> mtomEnabled=false
> [0m[0m21:39:43,092 INFO [org.jboss.ws.cxf.metadata] (MSC service thread 1-2) JBWS024061: Adding service endpoint metadata: id=TerminationParticipantService
> address=http://localhost:8080/ws-t11-client/TerminationParticipantService
> implementor=com.arjuna.webservices11.wsarjtx.sei.TerminationParticipantPortTypeImpl
> serviceName={http://schemas.arjuna.com/ws/2005/10/wsarjtx}TerminationPart...
> portName={http://schemas.arjuna.com/ws/2005/10/wsarjtx}TerminationPartici...
> annotationWsdlLocation=null
> wsdlLocationOverride=null
> mtomEnabled=false
> [0m[0m21:39:43,093 INFO [org.apache.cxf.service.factory.ReflectionServiceFactoryBean] (MSC service thread 1-1) Creating Service {http://docs.oasis-open.org/ws-tx/wsat/2006/06}CompletionCoordinatorService from class com.arjuna.webservices11.wsat.sei.CompletionCoordinatorPortTypeImpl
> [0m[0m21:39:43,099 INFO [org.apache.cxf.endpoint.ServerImpl] (MSC service thread 1-1) Setting the server's publish address to be http://localhost:8080/ws-t11-coordinator/CompletionCoordinatorService
> [0m[0m21:39:43,150 INFO [org.jboss.ws.cxf.deployment] (MSC service thread 1-1) JBWS024074: WSDL published to: file:/home/hudson/workspace/narayana-codeCoverage/jboss-as/build/target/wildfly-8.0.0.Alpha4-SNAPSHOT/standalone/data/wsdl/ws-t11-coordinator.deployment/CompletionCoordinatorService.wsdl
> [0m[0m21:39:43,154 INFO [org.apache.cxf.service.factory.ReflectionServiceFactoryBean] (MSC service thread 1-2) Creating Service {http://docs.oasis-open.org/ws-tx/wsat/2006/06}CompletionInitiatorService from class com.arjuna.webservices11.wsat.sei.CompletionInitiatorPortTypeImpl
> [0m[0m21:39:43,185 INFO [org.apache.cxf.endpoint.ServerImpl] (MSC service thread 1-2) Setting the server's publish address to be http://localhost:8080/ws-t11-client/CompletionInitiatorService
> [0m[0m21:39:43,214 INFO [org.wildfly.extension.undertow] (MSC service thread 1-1) JBAS018210: Register web context: /ws-t11-coordinator
> [0m[0m21:39:43,215 INFO [org.jboss.as.webservices] (MSC service thread 1-1) JBAS015539: Starting service jboss.ws.endpoint."ws-c11.deployment".ActivationService
> [0m[0m21:39:43,221 INFO [org.jboss.as.webservices] (MSC service thread 1-1) JBAS015539: Starting service jboss.ws.endpoint."ws-c11.deployment".RegistrationService
> [0m[0m21:39:43,221 INFO [org.jboss.as.webservices] (MSC service thread 1-1) JBAS015539: Starting service jboss.ws.endpoint."ws-t11-participant.deployment".BusinessAgreementWithCoordinatorCompletionParticipantService
> [0m[0m21:39:43,222 INFO [org.jboss.as.webservices] (MSC service thread 1-1) JBAS015539: Starting service jboss.ws.endpoint."ws-t11-participant.deployment".BusinessAgreementWithParticipantCompletionParticipantService
> [0m[0m21:39:43,222 INFO [org.jboss.as.webservices] (MSC service thread 1-1) JBAS015539: Starting service jboss.ws.endpoint."ws-t11-participant.deployment".ParticipantService
> [0m[0m21:39:43,223 INFO [org.jboss.as.webservices] (MSC service thread 1-1) JBAS015539: Starting service jboss.ws.endpoint."ws-t11-coordinator.deployment".TerminationCoordinatorService
> [0m[0m21:39:43,223 INFO [org.jboss.as.webservices] (MSC service thread 1-1) JBAS015539: Starting service jboss.ws.endpoint."ws-t11-coordinator.deployment".BusinessAgreementWithCoordinatorCompletionCoordinatorService
> [0m[0m21:39:43,224 INFO [org.jboss.as.webservices] (MSC service thread 1-1) JBAS015539: Starting service jboss.ws.endpoint."ws-t11-coordinator.deployment".CompletionCoordinatorRPCService
> [0m[0m21:39:43,225 INFO [org.jboss.as.webservices] (MSC service thread 1-1) JBAS015539: Starting service jboss.ws.endpoint."ws-t11-coordinator.deployment".BusinessAgreementWithParticipantCompletionCoordinatorService
> [0m[0m21:39:43,225 INFO [org.jboss.as.webservices] (MSC service thread 1-1) JBAS015539: Starting service jboss.ws.endpoint."ws-t11-coordinator.deployment".CompletionCoordinatorService
> [0m[0m21:39:43,226 INFO [org.jboss.as.webservices] (MSC service thread 1-1) JBAS015539: Starting service jboss.ws.endpoint."ws-t11-coordinator.deployment".CoordinatorService
> [0m[0m21:39:43,226 INFO [org.jboss.as.webservices] (MSC service thread 1-1) JBAS015539: Starting service jboss.ws.endpoint."ws-t11-coordinator.deployment".TerminationCoordinatorRPCService
> [0m[0m21:39:43,233 INFO [org.wildfly.extension.undertow] (MSC service thread 1-1) JBAS018210: Register web context: /hornetq-server
> [0m[0m21:39:43,263 INFO [org.jboss.as.messaging] (ServerService Thread Pool -- 58) JBAS011601: Bound messaging object to jndi name java:/ConnectionFactory
> [0m[0m21:39:43,263 INFO [org.jboss.as.messaging] (ServerService Thread Pool -- 58) JBAS011601: Bound messaging object to jndi name java:jboss/DefaultJMSConnectionFactory
> [0m[0m21:39:43,269 INFO [org.jboss.as.messaging] (ServerService Thread Pool -- 58) JBAS011601: Bound messaging object to jndi name java:jboss/exported/jms/RemoteConnectionFactory
> [0m[0m21:39:43,542 INFO [org.jboss.as.connector.deployment] (MSC service thread 1-1) JBAS010406: Registered connection factory java:/JmsXA
> [0m[0m21:39:43,600 INFO [org.jboss.ws.cxf.deployment] (MSC service thread 1-2) JBWS024074: WSDL published to: file:/home/hudson/workspace/narayana-codeCoverage/jboss-as/build/target/wildfly-8.0.0.Alpha4-SNAPSHOT/standalone/data/wsdl/ws-t11-client.deployment/CompletionInitiatorService.wsdl
> [0m[0m21:39:43,601 INFO [org.apache.cxf.service.factory.ReflectionServiceFactoryBean] (MSC service thread 1-2) Creating Service {http://schemas.arjuna.com/ws/2005/10/wsarjtx}TerminationParticipantService from class com.arjuna.schemas.ws._2005._10.wsarjtx.TerminationParticipantPortType
> [0m[0m21:39:43,642 INFO [org.apache.cxf.endpoint.ServerImpl] (MSC service thread 1-2) Setting the server's publish address to be http://localhost:8080/ws-t11-client/TerminationParticipantService
> [0m[0m21:39:43,662 INFO [org.jboss.as.messaging] (ServerService Thread Pool -- 59) JBAS011601: Bound messaging object to jndi name java:jboss/exported/jms/ServletConnectionFactory
> [0m[0m21:39:43,669 INFO [org.jboss.ws.cxf.deployment] (MSC service thread 1-2) JBWS024074: WSDL published to: file:/home/hudson/workspace/narayana-codeCoverage/jboss-as/build/target/wildfly-8.0.0.Alpha4-SNAPSHOT/standalone/data/wsdl/ws-t11-client.deployment/TerminationParticipantService.wsdl
> [0m[0m21:39:43,670 INFO [org.wildfly.extension.undertow] (MSC service thread 1-2) JBAS018210: Register web context: /ws-t11-client
> [0m[0m21:39:43,802 INFO [org.jboss.as.webservices] (MSC service thread 1-2) JBAS015539: Starting service jboss.ws.endpoint."ws-t11-client.deployment".CompletionInitiatorService
> [0m[0m21:39:43,893 INFO [org.jboss.as.webservices] (MSC service thread 1-2) JBAS015539: Starting service jboss.ws.endpoint."ws-t11-client.deployment".TerminationParticipantService
> [0m[0m21:39:43,899 INFO [org.jboss.jbossts.txbridge] (MSC service thread 1-2) ARJUNA033006: InboundBridgeRecoveryManager starting
> [0m[0m21:39:43,900 INFO [org.jboss.jbossts.txbridge] (MSC service thread 1-2) ARJUNA033013: OutboundBridgeRecoveryManager starting
> [0m[0m21:39:44,115 INFO [org.jboss.as.remoting] (MSC service thread 1-2) JBAS017100: Listening on 127.0.0.1:9999
> [0m[0m21:39:44,123 INFO [org.jboss.as.server.deployment.scanner] (MSC service thread 1-2) JBAS015012: Started FileSystemDeploymentService for directory /home/hudson/workspace/narayana-codeCoverage/jboss-as/build/target/wildfly-8.0.0.Alpha4-SNAPSHOT/standalone/deployments
> [0m[0m21:39:44,130 INFO [org.jboss.as.server.deployment] (MSC service thread 1-2) JBAS015876: Starting deployment of "restat-web-5.0.0.M4-SNAPSHOT.war" (runtime-name: "restat-web-5.0.0.M4-SNAPSHOT.war")
> [0m[0m21:39:44,132 INFO [org.jboss.as.server.deployment] (MSC service thread 1-2) JBAS015876: Starting deployment of "xtstest.war" (runtime-name: "xtstest.war")
> [0m[33m21:39:45,432 WARN [org.jboss.as.dependency.private] (MSC service thread 1-2) JBAS018567: Deployment "deployment.restat-web-5.0.0.M4-SNAPSHOT.war" is using a private module ("org.jboss.jts:main") which may be changed or removed in future versions without notice.
> [0m[33m21:39:45,433 WARN [org.jboss.as.dependency.private] (MSC service thread 1-2) JBAS018567: Deployment "deployment.restat-web-5.0.0.M4-SNAPSHOT.war" is using a private module ("org.jboss.jts:main") which may be changed or removed in future versions without notice.
> [0m[33m21:39:45,496 WARN [org.jboss.as.dependency.private] (MSC service thread 1-2) JBAS018567: Deployment "deployment.xtstest.war" is using a private module ("org.jboss.jts:main") which may be changed or removed in future versions without notice.
> [0m[33m21:39:45,496 WARN [org.jboss.as.dependency.private] (MSC service thread 1-2) JBAS018567: Deployment "deployment.xtstest.war" is using a private module ("org.jboss.ws.jaxws-client:main") which may be changed or removed in future versions without notice.
> [0m[0m21:39:45,619 INFO [org.jboss.weld.deployer] (MSC service thread 1-2) JBAS016002: Processing weld deployment xtstest.war
> [0m[0m21:39:45,654 INFO [org.hibernate.validator.internal.util.Version] (MSC service thread 1-2) HV000001: Hibernate Validator 5.0.1.Final
> [0m[0m21:39:45,951 INFO [org.jboss.weld.deployer] (MSC service thread 1-2) JBAS016005: Starting Services for CDI deployment: xtstest.war
> [0m[0m21:39:46,015 INFO [org.jboss.weld.Version] (MSC service thread 1-2) WELD-000900 2.0.2 (Final)
> [0m[0m21:39:46,030 INFO [org.jboss.ws.cxf.metadata] (MSC service thread 1-2) JBWS024061: Adding service endpoint metadata: id=XTS_Service_Test_Subordinate_Service_One
> address=http://localhost:8080/xtstest/xtssubordinateservicetest1
> implementor=org.jboss.jbossts.xts.servicetests.service.subordinate.XTSSubordinateServiceTestPortTypeImpl
> serviceName={http://jbossts.jboss.org/xts/servicetests/generated}XTSServi...
> portName={http://jbossts.jboss.org/xts/servicetests/generated}XTSServiceT...
> annotationWsdlLocation=WEB-INF/wsdl/xtsservicetests.wsdl
> wsdlLocationOverride=null
> mtomEnabled=false
> [0m[0m21:39:46,030 INFO [org.jboss.ws.cxf.metadata] (MSC service thread 1-2) JBWS024061: Adding service endpoint metadata: id=XTS_Service_Test_Service_One
> address=http://localhost:8080/xtstest/xtsservicetest1
> implementor=org.jboss.jbossts.xts.servicetests.service.XTSServiceTestPortTypeImpl
> serviceName={http://jbossts.jboss.org/xts/servicetests/generated}XTSServi...
> portName={http://jbossts.jboss.org/xts/servicetests/generated}XTSServiceT...
> annotationWsdlLocation=WEB-INF/wsdl/xtsservicetests.wsdl
> wsdlLocationOverride=null
> mtomEnabled=false
> [0m[0m21:39:46,031 INFO [org.jboss.ws.cxf.metadata] (MSC service thread 1-2) JBWS024061: Adding service endpoint metadata: id=XTS_Service_Test_Service_Two
> address=http://localhost:8080/xtstest/xtsservicetest2
> implementor=org.jboss.jbossts.xts.servicetests.service.XTSServiceTestPortTypeImpl
> serviceName={http://jbossts.jboss.org/xts/servicetests/generated}XTSServi...
> portName={http://jbossts.jboss.org/xts/servicetests/generated}XTSServiceT...
> annotationWsdlLocation=WEB-INF/wsdl/xtsservicetests.wsdl
> wsdlLocationOverride=null
> mtomEnabled=false
> [0m[0m21:39:46,032 INFO [org.jboss.ws.cxf.metadata] (MSC service thread 1-2) JBWS024061: Adding service endpoint metadata: id=XTS_Service_Test_Service_Three
> address=http://localhost:8080/xtstest/xtsservicetest3
> implementor=org.jboss.jbossts.xts.servicetests.service.XTSServiceTestPortTypeImpl
> serviceName={http://jbossts.jboss.org/xts/servicetests/generated}XTSServi...
> portName={http://jbossts.jboss.org/xts/servicetests/generated}XTSServiceT...
> annotationWsdlLocation=WEB-INF/wsdl/xtsservicetests.wsdl
> wsdlLocationOverride=null
> mtomEnabled=false
> [0m[0m21:39:46,080 INFO [org.apache.cxf.service.factory.ReflectionServiceFactoryBean] (MSC service thread 1-2) Creating Service {http://jbossts.jboss.org/xts/servicetests/generated}XTSServiceTestService from WSDL: WEB-INF/wsdl/xtsservicetests.wsdl
> [0m[0m21:39:46,111 INFO [org.apache.cxf.endpoint.ServerImpl] (MSC service thread 1-2) Setting the server's publish address to be http://localhost:8080/xtstest/xtssubordinateservicetest1
> [0m[0m21:39:46,124 INFO [org.jboss.ws.cxf.deployment] (MSC service thread 1-2) JBWS024074: WSDL published to: file:/home/hudson/workspace/narayana-codeCoverage/jboss-as/build/target/wildfly-8.0.0.Alpha4-SNAPSHOT/standalone/data/wsdl/xtstest.war/xtsservicetests.wsdl
> [0m[0m21:39:46,125 INFO [org.apache.cxf.service.factory.ReflectionServiceFactoryBean] (MSC service thread 1-2) Creating Service {http://jbossts.jboss.org/xts/servicetests/generated}XTSServiceTestService from WSDL: WEB-INF/wsdl/xtsservicetests.wsdl
> [0m[0m21:39:46,135 INFO [org.apache.cxf.endpoint.ServerImpl] (MSC service thread 1-2) Setting the server's publish address to be http://localhost:8080/xtstest/xtsservicetest1
> [0m[0m21:39:46,160 INFO [org.jboss.ws.cxf.deployment] (MSC service thread 1-2) JBWS024074: WSDL published to: file:/home/hudson/workspace/narayana-codeCoverage/jboss-as/build/target/wildfly-8.0.0.Alpha4-SNAPSHOT/standalone/data/wsdl/xtstest.war/xtsservicetests.wsdl
> [0m[0m21:39:46,161 INFO [org.apache.cxf.service.factory.ReflectionServiceFactoryBean] (MSC service thread 1-2) Creating Service {http://jbossts.jboss.org/xts/servicetests/generated}XTSServiceTestService from WSDL: WEB-INF/wsdl/xtsservicetests.wsdl
> [0m[0m21:39:46,164 INFO [org.apache.cxf.endpoint.ServerImpl] (MSC service thread 1-2) Setting the server's publish address to be http://localhost:8080/xtstest/xtsservicetest2
> [0m[0m21:39:46,173 INFO [org.jboss.ws.cxf.deployment] (MSC service thread 1-2) JBWS024074: WSDL published to: file:/home/hudson/workspace/narayana-codeCoverage/jboss-as/build/target/wildfly-8.0.0.Alpha4-SNAPSHOT/standalone/data/wsdl/xtstest.war/xtsservicetests.wsdl
> [0m[0m21:39:46,174 INFO [org.apache.cxf.service.factory.ReflectionServiceFactoryBean] (MSC service thread 1-2) Creating Service {http://jbossts.jboss.org/xts/servicetests/generated}XTSServiceTestService from WSDL: WEB-INF/wsdl/xtsservicetests.wsdl
> [0m[0m21:39:46,187 INFO [org.apache.cxf.endpoint.ServerImpl] (MSC service thread 1-2) Setting the server's publish address to be http://localhost:8080/xtstest/xtsservicetest3
> [0m[0m21:39:46,195 INFO [org.jboss.ws.cxf.deployment] (MSC service thread 1-2) JBWS024074: WSDL published to: file:/home/hudson/workspace/narayana-codeCoverage/jboss-as/build/target/wildfly-8.0.0.Alpha4-SNAPSHOT/standalone/data/wsdl/xtstest.war/xtsservicetests.wsdl
> [0m[0m21:39:46,257 INFO [org.jboss.as.webservices] (MSC service thread 1-2) JBAS015539: Starting service jboss.ws.endpoint."xtstest.war".XTS_Service_Test_Service_Two
> [0m[0m21:39:46,259 INFO [org.jboss.as.webservices] (MSC service thread 1-2) JBAS015539: Starting service jboss.ws.endpoint."xtstest.war".XTS_Service_Test_Service_One
> [0m[0m21:39:46,259 INFO [org.jboss.as.webservices] (MSC service thread 1-2) JBAS015539: Starting service jboss.ws.endpoint."xtstest.war".XTS_Service_Test_Subordinate_Service_One
> [0m[0m21:39:46,260 INFO [org.jboss.as.webservices] (MSC service thread 1-2) JBAS015539: Starting service jboss.ws.endpoint."xtstest.war".XTS_Service_Test_Service_Three
> [0m[0m21:39:46,266 INFO [org.jboss.weld.deployer] (MSC service thread 1-2) JBAS016008: Starting weld service for deployment xtstest.war
> [0m[0m21:39:46,794 INFO [org.wildfly.extension.undertow] (MSC service thread 1-2) JBAS018210: Register web context: /rest-tx
> [0m[0m21:39:46,827 INFO [org.hornetq.ra] (MSC service thread 1-1) HornetQ resource adaptor started
> [0m[0m21:39:46,828 INFO [org.jboss.as.connector.services.resourceadapters.ResourceAdapterActivatorService$ResourceAdapterActivator] (MSC service thread 1-1) IJ020002: Deployed: file://RaActivatorhornetq-ra
> [0m[0m21:39:46,830 INFO [org.jboss.as.connector.deployment] (MSC service thread 1-1) JBAS010401: Bound JCA ConnectionFactory [java:/JmsXA]
> [0m[0m21:39:47,703 INFO [org.jboss.jbossts.xts.servicetests.bean.XTSServiceTestRunnerBean] (MSC service thread 1-1) Starting XTSServiceTestRunner
> [0m[0m21:39:47,817 INFO [org.jboss.jbossts.xts.servicetests.bean.XTSServiceTestRunnerBean] (MSC service thread 1-1) Started XTSServiceTestRunner
> [0m[0m21:39:47,882 INFO [org.wildfly.extension.undertow] (MSC service thread 1-1) JBAS018210: Register web context: /xtstest
> [0m[0m21:39:48,090 INFO [org.jboss.as.server] (Controller Boot Thread) JBAS018559: Deployed "xtstest.war" (runtime-name : "xtstest.war")
> [0m[0m21:39:48,091 INFO [org.jboss.as.server] (ServerService Thread Pool -- 31) JBAS018559: Deployed "restat-web-5.0.0.M4-SNAPSHOT.war" (runtime-name : "restat-web-5.0.0.M4-SNAPSHOT.war")
> [0m[0m21:39:48,318 INFO [org.jboss.as] (Controller Boot Thread) JBAS015961: Http management interface listening on http://127.0.0.1:9990/management
> [0m[0m21:39:48,319 INFO [org.jboss.as] (Controller Boot Thread) JBAS015951: Admin console listening on http://127.0.0.1:9990
> [0m[0m21:39:48,319 INFO [org.jboss.as] (Controller Boot Thread) JBAS015874: WildFly 8.0.0.Alpha4-SNAPSHOT "WildFly" started in 17605ms - Started 400 of 433 services (72 services are lazy, passive or on-demand)
> [0mJul 19, 2013 9:39:48 PM org.jboss.arquillian.container.test.impl.client.container.ClientContainerController start
> INFO: Automatic deploying of the managed deployment with name txbridge-outbound-tests-service for the container with name jboss
> [0m21:39:48,466 INFO [org.jboss.as.repository] (management-handler-thread - 3) JBAS014900: Content added at location /home/hudson/workspace/narayana-codeCoverage/jboss-as/build/target/wildfly-8.0.0.Alpha4-SNAPSHOT/standalone/data/content/1d/e639b98c43aa3ec3feab7379dc8ec14297d16b/content
> [0m[0m21:39:48,469 INFO [org.jboss.as.server.deployment] (MSC service thread 1-2) JBAS015876: Starting deployment of "txbridge-outbound-tests-service.war" (runtime-name: "txbridge-outbound-tests-service.war")
> [0m[33m21:39:48,835 WARN [org.jboss.as.dependency.private] (MSC service thread 1-1) JBAS018567: Deployment "deployment.txbridge-outbound-tests-service.war" is using a private module ("org.jboss.jts:main") which may be changed or removed in future versions without notice.
> [0m[0m21:39:48,862 INFO [org.jboss.as.ejb3.deployment.processors.EjbJndiBindingsDeploymentUnitProcessor] (MSC service thread 1-1) JNDI bindings for session bean named TestRecoveryModule in deployment unit deployment "txbridge-outbound-tests-service.war" are as follows:
> java:global/txbridge-outbound-tests-service/TestRecoveryModule!org.jboss.jbossts.xts.recovery.participant.at.XTSATRecoveryModule
> java:app/txbridge-outbound-tests-service/TestRecoveryModule!org.jboss.jbossts.xts.recovery.participant.at.XTSATRecoveryModule
> java:module/TestRecoveryModule!org.jboss.jbossts.xts.recovery.participant.at.XTSATRecoveryModule
> java:global/txbridge-outbound-tests-service/TestRecoveryModule
> java:app/txbridge-outbound-tests-service/TestRecoveryModule
> java:module/TestRecoveryModule
> [0m[0m21:39:48,966 INFO [org.jboss.ws.cxf.metadata] (MSC service thread 1-1) JBWS024061: Adding service endpoint metadata: id=OutboundTestServiceServlet
> address=http://localhost:8080/txbridge-outbound-tests-service/TestServiceImpl
> implementor=org.jboss.jbossts.txbridge.tests.outbound.service.TestServiceImpl
> serviceName={http://client.outbound.tests.txbridge.jbossts.jboss.org/}Tes...
> portName={http://client.outbound.tests.txbridge.jbossts.jboss.org/}TestSe...
> annotationWsdlLocation=null
> wsdlLocationOverride=null
> mtomEnabled=false
> [0m[0m21:39:48,981 INFO [org.apache.cxf.service.factory.ReflectionServiceFactoryBean] (MSC service thread 1-1) Creating Service {http://client.outbound.tests.txbridge.jbossts.jboss.org/}TestServiceImplService from class org.jboss.jbossts.txbridge.tests.outbound.service.TestServiceImpl
> [0m[0m21:39:49,026 INFO [org.apache.cxf.endpoint.ServerImpl] (MSC service thread 1-1) Setting the server's publish address to be http://localhost:8080/txbridge-outbound-tests-service/TestServiceImpl
> [0m[0m21:39:49,038 INFO [org.jboss.ws.cxf.deployment] (MSC service thread 1-1) JBWS024074: WSDL published to: file:/home/hudson/workspace/narayana-codeCoverage/jboss-as/build/target/wildfly-8.0.0.Alpha4-SNAPSHOT/standalone/data/wsdl/txbridge-outbound-tests-service.war/TestServiceImplService.wsdl
> [0m[0m21:39:49,043 INFO [org.jboss.as.webservices] (MSC service thread 1-2) JBAS015539: Starting service jboss.ws.endpoint."txbridge-outbound-tests-service.war".OutboundTestServiceServlet
> [0m[0m21:39:49,099 INFO [org.jboss.jbossts.txbridge.tests.outbound.utility.TestRecoveryModule] (ServerService Thread Pool -- 23) TestRecoveryModule starting
> [0m[0m21:39:49,100 INFO [org.jboss.jbossts.txbridge.tests.outbound.utility.TestRecoveryModule] (ServerService Thread Pool -- 23) trying to get XTSATRecoverManager = org.jboss.jbossts.xts.recovery.participant.at.XTSATRecoveryManagerImple@f42e4b
> [0m[0m21:39:49,211 INFO [org.wildfly.extension.undertow] (MSC service thread 1-1) JBAS018210: Register web context: /txbridge-outbound-tests-service
> [0m[0m21:39:49,409 INFO [org.jboss.as.server] (management-handler-thread - 3) JBAS018559: Deployed "txbridge-outbound-tests-service.war" (runtime-name : "txbridge-outbound-tests-service.war")
> [0mJul 19, 2013 9:39:50 PM org.jboss.arquillian.container.test.impl.client.container.ClientContainerController start
> INFO: Automatic deploying of the managed deployment with name txbridge-outbound-tests-client for the container with name jboss
> [0m21:39:50,158 INFO [org.jboss.as.repository] (management-handler-thread - 3) JBAS014900: Content added at location /home/hudson/workspace/narayana-codeCoverage/jboss-as/build/target/wildfly-8.0.0.Alpha4-SNAPSHOT/standalone/data/content/aa/5236f4f4a5cce47776c6153a5e0e5de0d35f06/content
> [0m[0m21:39:50,159 INFO [org.jboss.as.server.deployment] (MSC service thread 1-2) JBAS015876: Starting deployment of "txbridge-outbound-tests-client.war" (runtime-name: "txbridge-outbound-tests-client.war")
> [0m[33m21:39:50,182 WARN [org.jboss.as.dependency.private] (MSC service thread 1-2) JBAS018567: Deployment "deployment.txbridge-outbound-tests-client.war" is using a private module ("org.jboss.jts:main") which may be changed or removed in future versions without notice.
> [0m[0m21:39:50,211 INFO [org.wildfly.extension.undertow] (MSC service thread 1-1) JBAS018210: Register web context: /txbridge-outbound-tests-client
> [0m[0m21:39:50,318 INFO [org.jboss.as.server] (management-handler-thread - 3) JBAS018559: Deployed "txbridge-outbound-tests-client.war" (runtime-name : "txbridge-outbound-tests-client.war")
> [0minstalling: RULE org.jboss.byteman.contrib.dtest.Instrumentor_org.jboss.jbossts.txbridge.tests.outbound.utility.TestVolatileParticipant_error_remotetrace_entry
> CLASS org.jboss.jbossts.txbridge.tests.outbound.utility.TestVolatileParticipant
> METHOD error
> HELPER org.jboss.byteman.contrib.dtest.BytemanTestHelper
> AT ENTRY
> IF true
> DO setTriggering(false), debug("firing org.jboss.byteman.contrib.dtest.Instrumentor_org.jboss.jbossts.txbridge.tests.outbound.utility.TestVolatileParticipant_error_remotetrace_entry", $0), remoteTrace("org.jboss.jbossts.txbridge.tests.outbound.utility.TestVolatileParticipant", "error", $*)
> ENDRULE
> RULE org.jboss.byteman.contrib.dtest.Instrumentor_org.jboss.jbossts.txbridge.tests.outbound.utility.TestVolatileParticipant_rollback_remotetrace_entry
> CLASS org.jboss.jbossts.txbridge.tests.outbound.utility.TestVolatileParticipant
> METHOD rollback
> HELPER org.jboss.byteman.contrib.dtest.BytemanTestHelper
> AT ENTRY
> IF true
> DO setTriggering(false), debug("firing org.jboss.byteman.contrib.dtest.Instrumentor_org.jboss.jbossts.txbridge.tests.outbound.utility.TestVolatileParticipant_rollback_remotetrace_entry", $0), remoteTrace("org.jboss.jbossts.txbridge.tests.outbound.utility.TestVolatileParticipant", "rollback", $*)
> ENDRULE
> RULE org.jboss.byteman.contrib.dtest.Instrumentor_org.jboss.jbossts.txbridge.tests.outbound.utility.TestVolatileParticipant_prepare_remotetrace_entry
> CLASS org.jboss.jbossts.txbridge.tests.outbound.utility.TestVolatileParticipant
> METHOD prepare
> HELPER org.jboss.byteman.contrib.dtest.BytemanTestHelper
> AT ENTRY
> IF true
> DO setTriggering(false), debug("firing org.jboss.byteman.contrib.dtest.Instrumentor_org.jboss.jbossts.txbridge.tests.outbound.utility.TestVolatileParticipant_prepare_remotetrace_entry", $0), remoteTrace("org.jboss.jbossts.txbridge.tests.outbound.utility.TestVolatileParticipant", "prepare", $*)
> ENDRULE
> RULE org.jboss.byteman.contrib.dtest.Instrumentor_org.jboss.jbossts.txbridge.tests.outbound.utility.TestVolatileParticipant_commit_remotetrace_entry
> CLASS org.jboss.jbossts.txbridge.tests.outbound.utility.TestVolatileParticipant
> METHOD commit
> HELPER org.jboss.byteman.contrib.dtest.BytemanTestHelper
> AT ENTRY
> IF true
> DO setTriggering(false), debug("firing org.jboss.byteman.contrib.dtest.Instrumentor_org.jboss.jbossts.txbridge.tests.outbound.utility.TestVolatileParticipant_commit_remotetrace_entry", $0), remoteTrace("org.jboss.jbossts.txbridge.tests.outbound.utility.TestVolatileParticipant", "commit", $*)
> ENDRULE
> RULE org.jboss.byteman.contrib.dtest.Instrumentor_org.jboss.jbossts.txbridge.tests.outbound.utility.TestVolatileParticipant_unknown_remotetrace_entry
> CLASS org.jboss.jbossts.txbridge.tests.outbound.utility.TestVolatileParticipant
> METHOD unknown
> HELPER org.jboss.byteman.contrib.dtest.BytemanTestHelper
> AT ENTRY
> IF true
> DO setTriggering(false), debug("firing org.jboss.byteman.contrib.dtest.Instrumentor_org.jboss.jbossts.txbridge.tests.outbound.utility.TestVolatileParticipant_unknown_remotetrace_entry", $0), remoteTrace("org.jboss.jbossts.txbridge.tests.outbound.utility.TestVolatileParticipant", "unknown", $*)
> ENDRULE
> [0m21:39:50,337 INFO [stdout] (Thread-0) TransformListener() : handling connection on port 9091
> [0minstalling: RULE org.jboss.byteman.contrib.dtest.Instrumentor_org.jboss.jbossts.txbridge.tests.outbound.utility.TestDurableParticipant_error_remotetrace_entry
> CLASS org.jboss.jbossts.txbridge.tests.outbound.utility.TestDurableParticipant
> METHOD error
> HELPER org.jboss.byteman.contrib.dtest.BytemanTestHelper
> AT ENTRY
> IF true
> DO setTriggering(false), debug("firing org.jboss.byteman.contrib.dtest.Instrumentor_org.jboss.jbossts.txbridge.tests.outbound.utility.TestDurableParticipant_error_remotetrace_entry", $0), remoteTrace("org.jboss.jbossts.txbridge.tests.outbound.utility.TestDurableParticipant", "error", $*)
> ENDRULE
> RULE org.jboss.byteman.contrib.dtest.Instrumentor_org.jboss.jbossts.txbridge.tests.outbound.utility.TestDurableParticipant_rollback_remotetrace_entry
> CLASS org.jboss.jbossts.txbridge.tests.outbound.utility.TestDurableParticipant
> METHOD rollback
> HELPER org.jboss.byteman.contrib.dtest.BytemanTestHelper
> AT ENTRY
> IF true
> DO setTriggering(false), debug("firing org.jboss.byteman.contrib.dtest.Instrumentor_org.jboss.jbossts.txbridge.tests.outbound.utility.TestDurableParticipant_rollback_remotetrace_entry", $0), remoteTrace("org.jboss.jbossts.txbridge.tests.outbound.utility.TestDurableParticipant", "rollback", $*)
> ENDRULE
> RULE org.jboss.byteman.contrib.dtest.Instrumentor_org.jboss.jbossts.txbridge.tests.outbound.utility.TestDurableParticipant_prepare_remotetrace_entry
> CLASS org.jboss.jbossts.txbridge.tests.outbound.utility.TestDurableParticipant
> METHOD prepare
> HELPER org.jboss.byteman.contrib.dtest.BytemanTestHelper
> AT ENTRY
> IF true
> DO setTriggering(false), debug("firing org.jboss.byteman.contrib.dtest.Instrumentor_org.jboss.jbossts.txbridge.tests.outbound.utility.TestDurableParticipant_prepare_remotetrace_entry", $0), remoteTrace("org.jboss.jbossts.txbridge.tests.outbound.utility.TestDurableParticipant", "prepare", $*)
> ENDRULE
> RULE org.jboss.byteman.contrib.dtest.Instrumentor_org.jboss.jbossts.txbridge.tests.outbound.utility.TestDurableParticipant_commit_remotetrace_entry
> CLASS org.jboss.jbossts.txbridge.tests.outbound.utility.TestDurableParticipant
> METHOD commit
> HELPER org.jboss.byteman.contrib.dtest.BytemanTestHelper
> AT ENTRY
> IF true
> DO setTriggering(false), debug("firing org.jboss.byteman.contrib.dtest.Instrumentor_org.jboss.jbossts.txbridge.tests.outbound.utility.TestDurableParticipant_commit_remotetrace_entry", $0), remoteTrace("org.jboss.jbossts.txbridge.tests.outbound.utility.TestDurableParticipant", "commit", $*)
> ENDRULE
> RULE org.jboss.byteman.contrib.dtest.Instrumentor_org.jboss.jbossts.txbridge.tests.outbound.utility.TestDurableParticipant_unknown_remotetrace_entry
> CLASS org.jboss.jbossts.txbridge.tests.outbound.utility.TestDurableParticipant
> METHOD unknown
> HELPER org.jboss.byteman.contrib.dtest.BytemanTestHelper
> AT ENTRY
> IF true
> DO setTriggering(false), debug("firing org.jboss.byteman.contrib.dtest.Instrumentor_org.jboss.jbossts.txbridge.tests.outbound.utility.TestDurableParticipant_unknown_remotetrace_entry", $0), remoteTrace("org.jboss.jbossts.txbridge.tests.outbound.utility.TestDurableParticipant", "unknown", $*)
> ENDRULE
> [0m21:39:50,565 INFO [stdout] (Thread-0) TransformListener() : handling connection on port 9091
> [0minstalling: RULE org.jboss.byteman.contrib.dtest.Instrumentor_org.jboss.jbossts.txbridge.tests.outbound.service.TestServiceImpl_doNothing_injectionatENTRY
> CLASS org.jboss.jbossts.txbridge.tests.outbound.service.TestServiceImpl
> METHOD doNothing
> HELPER org.jboss.byteman.contrib.dtest.BytemanTestHelper
> AT ENTRY
> IF true
> DO $0.enlistVolatileParticipant(1), $0.enlistDurableParticipant(1)
> ENDRULE
> [0m21:39:50,646 INFO [stdout] (Thread-0) TransformListener() : handling connection on port 9091
> [0m[0m21:39:50,690 INFO [stdout] (Thread-0) retransforming org.jboss.jbossts.txbridge.tests.outbound.service.TestServiceImpl
> [0m[0m21:39:50,798 INFO [stdout] (Thread-0) org.jboss.byteman.agent.Transformer : possible trigger for rule org.jboss.byteman.contrib.dtest.Instrumentor_org.jboss.jbossts.txbridge.tests.outbound.service.TestServiceImpl_doNothing_injectionatENTRY in class org.jboss.jbossts.txbridge.tests.outbound.service.TestServiceImpl
> [0m[0m21:39:50,825 INFO [stdout] (Thread-0) RuleTriggerMethodAdapter.injectTriggerPoint : inserting trigger into org.jboss.jbossts.txbridge.tests.outbound.service.TestServiceImpl.doNothing() void for rule org.jboss.byteman.contrib.dtest.Instrumentor_org.jboss.jbossts.txbridge.tests.outbound.service.TestServiceImpl_doNothing_injectionatENTRY
> [0m[0m21:39:50,830 INFO [stdout] (Thread-0) org.jboss.byteman.agent.Transformer : inserted trigger for org.jboss.byteman.contrib.dtest.Instrumentor_org.jboss.jbossts.txbridge.tests.outbound.service.TestServiceImpl_doNothing_injectionatENTRY in class org.jboss.jbossts.txbridge.tests.outbound.service.TestServiceImpl
> [0m[0m21:39:51,309 INFO [org.apache.cxf.service.factory.ReflectionServiceFactoryBean] (default task-1) Creating Service {http://client.outbound.tests.txbridge.jbossts.jboss.org/}TestServiceImplService from WSDL: http://localhost:8080/txbridge-outbound-tests-service/TestServiceImpl?wsdl
> [0m[33m21:39:51,322 WARNING [org.apache.cxf.service.factory.ReflectionServiceFactoryBean] (default task-1) No method was found for the WSDL operation {http://client.outbound.tests.txbridge.jbossts.jboss.org/}enlistDurableParticipant.
> [0m[33m21:39:51,323 WARNING [org.apache.cxf.service.factory.ReflectionServiceFactoryBean] (default task-1) No method was found for the WSDL operation {http://client.outbound.tests.txbridge.jbossts.jboss.org/}enlistVolatileParticipant.
> [0m[0m21:39:51,326 INFO [org.apache.cxf.service.factory.ReflectionServiceFactoryBean] (default task-1) Creating Service {http://client.outbound.tests.txbridge.jbossts.jboss.org/}TestServiceImplService from WSDL: http://localhost:8080/txbridge-outbound-tests-service/TestServiceImpl?wsdl
> [0m[33m21:39:51,329 WARNING [org.apache.cxf.service.factory.ReflectionServiceFactoryBean] (default task-1) No method was found for the WSDL operation {http://client.outbound.tests.txbridge.jbossts.jboss.org/}enlistDurableParticipant.
> [0m[33m21:39:51,330 WARNING [org.apache.cxf.service.factory.ReflectionServiceFactoryBean] (default task-1) No method was found for the WSDL operation {http://client.outbound.tests.txbridge.jbossts.jboss.org/}enlistVolatileParticipant.
> [0m[0m21:39:51,353 INFO [org.jboss.jbossts.txbridge.tests.outbound.client.TestClient] (default task-1) starting the transaction...
> [0m[0m21:39:51,355 INFO [org.jboss.jbossts.txbridge.tests.outbound.client.TestClient] (default task-1) transaction ID= org.jboss.tm.usertx.client.ServerVMClientUserTransaction@a16042
> [0m[0m21:39:51,355 INFO [org.jboss.jbossts.txbridge.tests.outbound.client.TestClient] (default task-1) calling business Web Services...
> [0m[0m21:39:51,608 INFO [stdout] (default task-3) Rule.execute called for org.jboss.byteman.contrib.dtest.Instrumentor_org.jboss.jbossts.txbridge.tests.outbound.service.TestServiceImpl_doNothing_injectionatENTRY_0
> [0m[0m21:39:51,617 INFO [stdout] (default task-3) HelperManager.install for helper class org.jboss.byteman.contrib.dtest.BytemanTestHelper
> [0m[0m21:39:51,619 INFO [stdout] (default task-3) calling activated() for helper class org.jboss.byteman.contrib.dtest.BytemanTestHelper
> [0m[0m21:39:51,619 INFO [stdout] (default task-3) Default helper activated
> [0m[0m21:39:51,619 INFO [stdout] (default task-3) calling installed(org.jboss.byteman.contrib.dtest.Instrumentor_org.jboss.jbossts.txbridge.tests.outbound.service.TestServiceImpl_doNothing_injectionatENTRY) for helper classorg.jboss.byteman.contrib.dtest.BytemanTestHelper
> [0m[0m21:39:51,620 INFO [stdout] (default task-3) Installed rule using default helper : org.jboss.byteman.contrib.dtest.Instrumentor_org.jboss.jbossts.txbridge.tests.outbound.service.TestServiceImpl_doNothing_injectionatENTRY
> [0m[0m21:39:51,629 INFO [stdout] (default task-3) org.jboss.byteman.contrib.dtest.Instrumentor_org.jboss.jbossts.txbridge.tests.outbound.service.TestServiceImpl_doNothing_injectionatENTRY execute()
> [0m[0m21:39:51,632 INFO [stdout] (default task-3) org.jboss.byteman.agent.Transformer : possible trigger for rule org.jboss.byteman.contrib.dtest.Instrumentor_org.jboss.jbossts.txbridge.tests.outbound.utility.TestVolatileParticipant_unknown_remotetrace_entry in class org.jboss.jbossts.txbridge.tests.outbound.utility.TestVolatileParticipant
> [0m[0m21:39:51,633 INFO [stdout] (default task-3) RuleTriggerMethodAdapter.injectTriggerPoint : inserting trigger into org.jboss.jbossts.txbridge.tests.outbound.utility.TestVolatileParticipant.unknown() void for rule org.jboss.byteman.contrib.dtest.Instrumentor_org.jboss.jbossts.txbridge.tests.outbound.utility.TestVolatileParticipant_unknown_remotetrace_entry
> [0m[0m21:39:51,634 INFO [stdout] (default task-3) org.jboss.byteman.agent.Transformer : inserted trigger for org.jboss.byteman.contrib.dtest.Instrumentor_org.jboss.jbossts.txbridge.tests.outbound.utility.TestVolatileParticipant_unknown_remotetrace_entry in class org.jboss.jbossts.txbridge.tests.outbound.utility.TestVolatileParticipant
> [0m[0m21:39:52,566 INFO [stdout] (default task-3) org.jboss.byteman.agent.Transformer : possible trigger for rule org.jboss.byteman.contrib.dtest.Instrumentor_org.jboss.jbossts.txbridge.tests.outbound.utility.TestVolatileParticipant_commit_remotetrace_entry in class org.jboss.jbossts.txbridge.tests.outbound.utility.TestVolatileParticipant
> [0m[0m21:39:52,567 INFO [stdout] (default task-3) RuleTriggerMethodAdapter.injectTriggerPoint : inserting trigger into org.jboss.jbossts.txbridge.tests.outbound.utility.TestVolatileParticipant.commit() void for rule org.jboss.byteman.contrib.dtest.Instrumentor_org.jboss.jbossts.txbridge.tests.outbound.utility.TestVolatileParticipant_commit_remotetrace_entry
> [0m[0m21:39:52,584 INFO [stdout] (default task-3) org.jboss.byteman.agent.Transformer : inserted trigger for org.jboss.byteman.contrib.dtest.Instrumentor_org.jboss.jbossts.txbridge.tests.outbound.utility.TestVolatileParticipant_commit_remotetrace_entry in class org.jboss.jbossts.txbridge.tests.outbound.utility.TestVolatileParticipant
> [0m[0m21:39:52,587 INFO [stdout] (default task-3) org.jboss.byteman.agent.Transformer : possible trigger for rule org.jboss.byteman.contrib.dtest.Instrumentor_org.jboss.jbossts.txbridge.tests.outbound.utility.TestVolatileParticipant_prepare_remotetrace_entry in class org.jboss.jbossts.txbridge.tests.outbound.utility.TestVolatileParticipant
> [0m[0m21:39:52,587 INFO [stdout] (default task-3) RuleTriggerMethodAdapter.injectTriggerPoint : inserting trigger into org.jboss.jbossts.txbridge.tests.outbound.utility.TestVolatileParticipant.prepare() com.arjuna.wst.Vote for rule org.jboss.byteman.contrib.dtest.Instrumentor_org.jboss.jbossts.txbridge.tests.outbound.utility.TestVolatileParticipant_prepare_remotetrace_entry
> [0m[0m21:39:52,589 INFO [stdout] (default task-3) org.jboss.byteman.agent.Transformer : inserted trigger for org.jboss.byteman.contrib.dtest.Instrumentor_org.jboss.jbossts.txbridge.tests.outbound.utility.TestVolatileParticipant_prepare_remotetrace_entry in class org.jboss.jbossts.txbridge.tests.outbound.utility.TestVolatileParticipant
> [0m[0m21:39:52,592 INFO [stdout] (default task-3) org.jboss.byteman.agent.Transformer : possible trigger for rule org.jboss.byteman.contrib.dtest.Instrumentor_org.jboss.jbossts.txbridge.tests.outbound.utility.TestVolatileParticipant_rollback_remotetrace_entry in class org.jboss.jbossts.txbridge.tests.outbound.utility.TestVolatileParticipant
> [0m[0m21:39:52,593 INFO [stdout] (default task-3) RuleTriggerMethodAdapter.injectTriggerPoint : inserting trigger into org.jboss.jbossts.txbridge.tests.outbound.utility.TestVolatileParticipant.rollback() void for rule org.jboss.byteman.contrib.dtest.Instrumentor_org.jboss.jbossts.txbridge.tests.outbound.utility.TestVolatileParticipant_rollback_remotetrace_entry
> [0m[0m21:39:52,595 INFO [stdout] (default task-3) org.jboss.byteman.agent.Transformer : inserted trigger for org.jboss.byteman.contrib.dtest.Instrumentor_org.jboss.jbossts.txbridge.tests.outbound.utility.TestVolatileParticipant_rollback_remotetrace_entry in class org.jboss.jbossts.txbridge.tests.outbound.utility.TestVolatileParticipant
> [0m[0m21:39:52,596 INFO [stdout] (default task-3) org.jboss.byteman.agent.Transformer : possible trigger for rule org.jboss.byteman.contrib.dtest.Instrumentor_org.jboss.jbossts.txbridge.tests.outbound.utility.TestVolatileParticipant_error_remotetrace_entry in class org.jboss.jbossts.txbridge.tests.outbound.utility.TestVolatileParticipant
> [0m[0m21:39:52,619 INFO [stdout] (default task-3) RuleTriggerMethodAdapter.injectTriggerPoint : inserting trigger into org.jboss.jbossts.txbridge.tests.outbound.utility.TestVolatileParticipant.error() void for rule org.jboss.byteman.contrib.dtest.Instrumentor_org.jboss.jbossts.txbridge.tests.outbound.utility.TestVolatileParticipant_error_remotetrace_entry
> [0m[0m21:39:52,620 INFO [stdout] (default task-3) org.jboss.byteman.agent.Transformer : inserted trigger for org.jboss.byteman.contrib.dtest.Instrumentor_org.jboss.jbossts.txbridge.tests.outbound.utility.TestVolatileParticipant_error_remotetrace_entry in class org.jboss.jbossts.txbridge.tests.outbound.utility.TestVolatileParticipant
> [0m[0m21:39:52,914 INFO [org.apache.cxf.service.factory.ReflectionServiceFactoryBean] (default task-3) Creating Service {http://docs.oasis-open.org/ws-tx/wscoor/2006/06}RegistrationService from WSDL: jar:file:/home/hudson/workspace/narayana-codeCoverage/jboss-as/build/target/wildfly-8.0.0.Alpha4-SNAPSHOT/modules/system/layers/base/org/jboss/xts/main/jbossxts-5.0.0.M4-SNAPSHOT.jar!/org/oasis_open/docs/ws_tx/wscoor/_2006/_06/wsdl/wscoor-registration-binding.wsdl
> [0m[0m21:39:53,348 INFO [stdout] (default task-3) org.jboss.byteman.agent.Transformer : possible trigger for rule org.jboss.byteman.contrib.dtest.Instrumentor_org.jboss.jbossts.txbridge.tests.outbound.utility.TestDurableParticipant_unknown_remotetrace_entry in class org.jboss.jbossts.txbridge.tests.outbound.utility.TestDurableParticipant
> [0m[0m21:39:53,350 INFO [stdout] (default task-3) RuleTriggerMethodAdapter.injectTriggerPoint : inserting trigger into org.jboss.jbossts.txbridge.tests.outbound.utility.TestDurableParticipant.unknown() void for rule org.jboss.byteman.contrib.dtest.Instrumentor_org.jboss.jbossts.txbridge.tests.outbound.utility.TestDurableParticipant_unknown_remotetrace_entry
> [0m[0m21:39:53,352 INFO [stdout] (default task-3) org.jboss.byteman.agent.Transformer : inserted trigger for org.jboss.byteman.contrib.dtest.Instrumentor_org.jboss.jbossts.txbridge.tests.outbound.utility.TestDurableParticipant_unknown_remotetrace_entry in class org.jboss.jbossts.txbridge.tests.outbound.utility.TestDurableParticipant
> [0m[0m21:39:53,354 INFO [stdout] (default task-3) org.jboss.byteman.agent.Transformer : possible trigger for rule org.jboss.byteman.contrib.dtest.Instrumentor_org.jboss.jbossts.txbridge.tests.outbound.utility.TestDurableParticipant_commit_remotetrace_entry in class org.jboss.jbossts.txbridge.tests.outbound.utility.TestDurableParticipant
> [0m[0m21:39:53,355 INFO [stdout] (default task-3) RuleTriggerMethodAdapter.injectTriggerPoint : inserting trigger into org.jboss.jbossts.txbridge.tests.outbound.utility.TestDurableParticipant.commit() void for rule org.jboss.byteman.contrib.dtest.Instrumentor_org.jboss.jbossts.txbridge.tests.outbound.utility.TestDurableParticipant_commit_remotetrace_entry
> [0m[0m21:39:53,356 INFO [stdout] (default task-3) org.jboss.byteman.agent.Transformer : inserted trigger for org.jboss.byteman.contrib.dtest.Instrumentor_org.jboss.jbossts.txbridge.tests.outbound.utility.TestDurableParticipant_commit_remotetrace_entry in class org.jboss.jbossts.txbridge.tests.outbound.utility.TestDurableParticipant
> [0m[0m21:39:53,358 INFO [stdout] (default task-3) org.jboss.byteman.agent.Transformer : possible trigger for rule org.jboss.byteman.contrib.dtest.Instrumentor_org.jboss.jbossts.txbridge.tests.outbound.utility.TestDurableParticipant_prepare_remotetrace_entry in class org.jboss.jbossts.txbridge.tests.outbound.utility.TestDurableParticipant
> [0m[0m21:39:53,359 INFO [stdout] (default task-3) RuleTriggerMethodAdapter.injectTriggerPoint : inserting trigger into org.jboss.jbossts.txbridge.tests.outbound.utility.TestDurableParticipant.prepare() com.arjuna.wst.Vote for rule org.jboss.byteman.contrib.dtest.Instrumentor_org.jboss.jbossts.txbridge.tests.outbound.utility.TestDurableParticipant_prepare_remotetrace_entry
> [0m[0m21:39:53,361 INFO [stdout] (default task-3) org.jboss.byteman.agent.Transformer : inserted trigger for org.jboss.byteman.contrib.dtest.Instrumentor_org.jboss.jbossts.txbridge.tests.outbound.utility.TestDurableParticipant_prepare_remotetrace_entry in class org.jboss.jbossts.txbridge.tests.outbound.utility.TestDurableParticipant
> [0m[0m21:39:53,363 INFO [stdout] (default task-3) org.jboss.byteman.agent.Transformer : possible trigger for rule org.jboss.byteman.contrib.dtest.Instrumentor_org.jboss.jbossts.txbridge.tests.outbound.utility.TestDurableParticipant_rollback_remotetrace_entry in class org.jboss.jbossts.txbridge.tests.outbound.utility.TestDurableParticipant
> [0m[0m21:39:53,365 INFO [stdout] (default task-3) RuleTriggerMethodAdapter.injectTriggerPoint : inserting trigger into org.jboss.jbossts.txbridge.tests.outbound.utility.TestDurableParticipant.rollback() void for rule org.jboss.byteman.contrib.dtest.Instrumentor_org.jboss.jbossts.txbridge.tests.outbound.utility.TestDurableParticipant_rollback_remotetrace_entry
> [0m[0m21:39:53,373 INFO [stdout] (default task-3) org.jboss.byteman.agent.Transformer : inserted trigger for org.jboss.byteman.contrib.dtest.Instrumentor_org.jboss.jbossts.txbridge.tests.outbound.utility.TestDurableParticipant_rollback_remotetrace_entry in class org.jboss.jbossts.txbridge.tests.outbound.utility.TestDurableParticipant
> [0m[0m21:39:53,375 INFO [stdout] (default task-3) org.jboss.byteman.agent.Transformer : possible trigger for rule org.jboss.byteman.contrib.dtest.Instrumentor_org.jboss.jbossts.txbridge.tests.outbound.utility.TestDurableParticipant_error_remotetrace_entry in class org.jboss.jbossts.txbridge.tests.outbound.utility.TestDurableParticipant
> [0m[0m21:39:53,382 INFO [stdout] (default task-3) RuleTriggerMethodAdapter.injectTriggerPoint : inserting trigger into org.jboss.jbossts.txbridge.tests.outbound.utility.TestDurableParticipant.error() void for rule org.jboss.byteman.contrib.dtest.Instrumentor_org.jboss.jbossts.txbridge.tests.outbound.utility.TestDurableParticipant_error_remotetrace_entry
> [0m[0m21:39:53,383 INFO [stdout] (default task-3) org.jboss.byteman.agent.Transformer : inserted trigger for org.jboss.byteman.contrib.dtest.Instrumentor_org.jboss.jbossts.txbridge.tests.outbound.utility.TestDurableParticipant_error_remotetrace_entry in class org.jboss.jbossts.txbridge.tests.outbound.utility.TestDurableParticipant
> [0m[0m21:39:53,413 INFO [org.apache.cxf.service.factory.ReflectionServiceFactoryBean] (default task-3) Creating Service {http://docs.oasis-open.org/ws-tx/wscoor/2006/06}RegistrationService from WSDL: jar:file:/home/hudson/workspace/narayana-codeCoverage/jboss-as/build/target/wildfly-8.0.0.Alpha4-SNAPSHOT/modules/system/layers/base/org/jboss/xts/main/jbossxts-5.0.0.M4-SNAPSHOT.jar!/org/oasis_open/docs/ws_tx/wscoor/_2006/_06/wsdl/wscoor-registration-binding.wsdl
> [0m[0m21:39:53,474 INFO [org.jboss.jbossts.txbridge.tests.outbound.client.TestClient] (default task-1) terminating the transaction...
> [0m[0m21:39:53,475 INFO [org.jboss.jbossts.txbridge.tests.outbound.client.TestClient] (default task-1) shouldCommit=false
> [0m[0m21:39:53,642 INFO [org.apache.cxf.service.factory.ReflectionServiceFactoryBean] (default task-1) Creating Service {http://docs.oasis-open.org/ws-tx/wsat/2006/06}ParticipantService from WSDL: jar:file:/home/hudson/workspace/narayana-codeCoverage/jboss-as/build/target/wildfly-8.0.0.Alpha4-SNAPSHOT/modules/system/layers/base/org/jboss/xts/main/jbossxts-5.0.0.M4-SNAPSHOT.jar!/org/oasis_open/docs/ws_tx/wsat/_2006/_06/wsdl/wsat-participant-binding.wsdl
> [0m[0m21:39:53,762 INFO [stdout] (TaskWorker-1) Rule.execute called for org.jboss.byteman.contrib.dtest.Instrumentor_org.jboss.jbossts.txbridge.tests.outbound.utility.TestDurableParticipant_rollback_remotetrace_entry_9
> [0m[0m21:39:53,765 INFO [stdout] (TaskWorker-1) HelperManager.install for helper class org.jboss.byteman.contrib.dtest.BytemanTestHelper
> [0m[0m21:39:53,765 INFO [stdout] (TaskWorker-1) calling installed(org.jboss.byteman.contrib.dtest.Instrumentor_org.jboss.jbossts.txbridge.tests.outbound.utility.TestDurableParticipant_rollback_remotetrace_entry) for helper classorg.jboss.byteman.contrib.dtest.BytemanTestHelper
> [0m[0m21:39:53,765 INFO [stdout] (TaskWorker-1) Installed rule using default helper : org.jboss.byteman.contrib.dtest.Instrumentor_org.jboss.jbossts.txbridge.tests.outbound.utility.TestDurableParticipant_rollback_remotetrace_entry
> [0m[0m21:39:53,766 INFO [stdout] (TaskWorker-1) org.jboss.byteman.contrib.dtest.Instrumentor_org.jboss.jbossts.txbridge.tests.outbound.utility.TestDurableParticipant_rollback_remotetrace_entry execute()
> [0m[0m21:39:53,767 INFO [stdout] (TaskWorker-1) rule.debug{org.jboss.byteman.contrib.dtest.Instrumentor_org.jboss.jbossts.txbridge.tests.outbound.utility.TestDurableParticipant_rollback_remotetrace_entry} : firing org.jboss.byteman.contrib.dtest.Instrumentor_org.jboss.jbossts.txbridge.tests.outbound.utility.TestDurableParticipant_rollback_remotetrace_entry org.jboss.jbossts.txbridge.tests.outbound.utility.TestDurableParticipant@1386351
> [0m[0m21:39:54,931 INFO [org.apache.cxf.service.factory.ReflectionServiceFactoryBean] (TaskWorker-1) Creating Service {http://docs.oasis-open.org/ws-tx/wsat/2006/06}CoordinatorService from WSDL: jar:file:/home/hudson/workspace/narayana-codeCoverage/jboss-as/build/target/wildfly-8.0.0.Alpha4-SNAPSHOT/modules/system/layers/base/org/jboss/xts/main/jbossxts-5.0.0.M4-SNAPSHOT.jar!/org/oasis_open/docs/ws_tx/wsat/_2006/_06/wsdl/wsat-coordinator-binding.wsdl
> [0m[0m21:39:55,176 INFO [org.apache.cxf.service.factory.ReflectionServiceFactoryBean] (default task-1) Creating Service {http://docs.oasis-open.org/ws-tx/wsat/2006/06}ParticipantService from WSDL: jar:file:/home/hudson/workspace/narayana-codeCoverage/jboss-as/build/target/wildfly-8.0.0.Alpha4-SNAPSHOT/modules/system/layers/base/org/jboss/xts/main/jbossxts-5.0.0.M4-SNAPSHOT.jar!/org/oasis_open/docs/ws_tx/wsat/_2006/_06/wsdl/wsat-participant-binding.wsdl
> [0m[0m21:39:55,268 INFO [stdout] (TaskWorker-3) Rule.execute called for org.jboss.byteman.contrib.dtest.Instrumentor_org.jboss.jbossts.txbridge.tests.outbound.utility.TestVolatileParticipant_rollback_remotetrace_entry_4
> [0m[0m21:39:55,270 INFO [stdout] (TaskWorker-3) HelperManager.install for helper class org.jboss.byteman.contrib.dtest.BytemanTestHelper
> [0m[0m21:39:55,271 INFO [stdout] (TaskWorker-3) calling installed(org.jboss.byteman.contrib.dtest.Instrumentor_org.jboss.jbossts.txbridge.tests.outbound.utility.TestVolatileParticipant_rollback_remotetrace_entry) for helper classorg.jboss.byteman.contrib.dtest.BytemanTestHelper
> [0m[0m21:39:55,271 INFO [stdout] (TaskWorker-3) Installed rule using default helper : org.jboss.byteman.contrib.dtest.Instrumentor_org.jboss.jbossts.txbridge.tests.outbound.utility.TestVolatileParticipant_rollback_remotetrace_entry
> [0m[0m21:39:55,272 INFO [stdout] (TaskWorker-3) org.jboss.byteman.contrib.dtest.Instrumentor_org.jboss.jbossts.txbridge.tests.outbound.utility.TestVolatileParticipant_rollback_remotetrace_entry execute()
> [0m[0m21:39:55,273 INFO [stdout] (TaskWorker-3) rule.debug{org.jboss.byteman.contrib.dtest.Instrumentor_org.jboss.jbossts.txbridge.tests.outbound.utility.TestVolatileParticipant_rollback_remotetrace_entry} : firing org.jboss.byteman.contrib.dtest.Instrumentor_org.jboss.jbossts.txbridge.tests.outbound.utility.TestVolatileParticipant_rollback_remotetrace_entry org.jboss.jbossts.txbridge.tests.outbound.utility.TestVolatileParticipant@196cda5
> [0m[0m21:39:55,346 INFO [org.apache.cxf.service.factory.ReflectionServiceFactoryBean] (TaskWorker-3) Creating Service {http://docs.oasis-open.org/ws-tx/wsat/2006/06}CoordinatorService from WSDL: jar:file:/home/hudson/workspace/narayana-codeCoverage/jboss-as/build/target/wildfly-8.0.0.Alpha4-SNAPSHOT/modules/system/layers/base/org/jboss/xts/main/jbossxts-5.0.0.M4-SNAPSHOT.jar!/org/oasis_open/docs/ws_tx/wsat/_2006/_06/wsdl/wsat-coordinator-binding.wsdl
> [0m[0m21:39:55,421 INFO [stdout] (Thread-0) TransformListener() : handling connection on port 9091
> [0m[0m21:39:55,515 INFO [stdout] (Thread-0) retransforming org.jboss.jbossts.txbridge.tests.outbound.utility.TestVolatileParticipant
> [0m[0m21:39:55,516 INFO [stdout] (Thread-0) retransforming org.jboss.jbossts.txbridge.tests.outbound.utility.TestDurableParticipant
> [0m[0m21:39:55,516 INFO [stdout] (Thread-0) retransforming org.jboss.jbossts.txbridge.tests.outbound.service.TestServiceImpl
> [0m[0m21:39:55,584 INFO [stdout] (Thread-0) HelperManager.uninstall for helper class org.jboss.byteman.contrib.dtest.BytemanTestHelper
> [0m[0m21:39:55,584 INFO [stdout] (Thread-0) calling uninstalled(org.jboss.byteman.contrib.dtest.Instrumentor_org.jboss.jbossts.txbridge.tests.outbound.utility.TestVolatileParticipant_rollback_remotetrace_entry) for helper class org.jboss.byteman.contrib.dtest.BytemanTestHelper
> [0m[0m21:39:55,585 INFO [stdout] (Thread-0) Uninstalled rule using default helper : org.jboss.byteman.contrib.dtest.Instrumentor_org.jboss.jbossts.txbridge.tests.outbound.utility.TestVolatileParticipant_rollback_remotetrace_entry
> [0m[0m21:39:55,585 INFO [stdout] (Thread-0) HelperManager.uninstall for helper class org.jboss.byteman.contrib.dtest.BytemanTestHelper
> [0m[0m21:39:55,607 INFO [stdout] (Thread-0) calling uninstalled(org.jboss.byteman.contrib.dtest.Instrumentor_org.jboss.jbossts.txbridge.tests.outbound.utility.TestDurableParticipant_rollback_remotetrace_entry) for helper class org.jboss.byteman.contrib.dtest.BytemanTestHelper
> [0m[0m21:39:55,623 INFO [stdout] (Thread-0) Uninstalled rule using default helper : org.jboss.byteman.contrib.dtest.Instrumentor_org.jboss.jbossts.txbridge.tests.outbound.utility.TestDurableParticipant_rollback_remotetrace_entry
> [0m[0m21:39:55,639 INFO [stdout] (Thread-0) HelperManager.uninstall for helper class org.jboss.byteman.contrib.dtest.BytemanTestHelper
> [0m[0m21:39:55,639 INFO [stdout] (Thread-0) calling uninstalled(org.jboss.byteman.contrib.dtest.Instrumentor_org.jboss.jbossts.txbridge.tests.outbound.service.TestServiceImpl_doNothing_injectionatENTRY) for helper class org.jboss.byteman.contrib.dtest.BytemanTestHelper
> [0m[0m21:39:55,640 INFO [stdout] (Thread-0) Uninstalled rule using default helper : org.jboss.byteman.contrib.dtest.Instrumentor_org.jboss.jbossts.txbridge.tests.outbound.service.TestServiceImpl_doNothing_injectionatENTRY
> [0m[0m21:39:55,640 INFO [stdout] (Thread-0) calling deactivated() for helper classorg.jboss.byteman.contrib.dtest.BytemanTestHelper
> [0m[0m21:39:55,640 INFO [stdout] (Thread-0) Default helper deactivated
> [0mJul 19, 2013 9:39:55 PM org.jboss.arquillian.container.test.impl.client.container.ClientContainerController stop
> INFO: Automatic undeploying of the managed deployment with name txbridge-outbound-tests-service from the container with name jboss
> [0m21:39:55,660 INFO [org.wildfly.extension.undertow] (MSC service thread 1-2) JBAS018224: Unregister web context: /txbridge-outbound-tests-service
> [0m[0m21:39:56,001 INFO [org.jboss.jbossts.txbridge.tests.outbound.utility.TestRecoveryModule] (ServerService Thread Pool -- 25) TestRecoveryModule stopping
> [0m[0m21:39:56,002 INFO [org.jboss.as.webservices] (MSC service thread 1-1) JBAS015540: Stopping service jboss.ws.endpoint."txbridge-outbound-tests-service.war".OutboundTestServiceServlet
> [0m[31m21:39:56,005 ERROR [org.jboss.ws.common.deployment] (MSC service thread 1-1) JBWS022102: Cannot stop endpoint in state STOPPED: jboss.ws:context=txbridge-outbound-tests-service,endpoint=OutboundTestServiceServlet
> [0m[0m21:39:56,041 INFO [org.jboss.as.server.deployment] (MSC service thread 1-1) JBAS015877: Stopped deployment txbridge-outbound-tests-service.war (runtime-name: txbridge-outbound-tests-service.war) in 386ms
> [0mJul 19, 2013 9:39:56 PM org.jboss.arquillian.container.test.impl.client.container.ClientContainerController stop
> INFO: Automatic undeploying of the managed deployment with name txbridge-outbound-tests-client from the container with name jboss
> [0m21:39:56,169 INFO [org.jboss.as.repository] (management-handler-thread - 4) JBAS014901: Content removed from location /home/hudson/workspace/narayana-codeCoverage/jboss-as/build/target/wildfly-8.0.0.Alpha4-SNAPSHOT/standalone/data/content/1d/e639b98c43aa3ec3feab7379dc8ec14297d16b/content
> [0m[0m21:39:56,169 INFO [org.jboss.as.server] (management-handler-thread - 4) JBAS018558: Undeployed "txbridge-outbound-tests-service.war" (runtime-name: "txbridge-outbound-tests-service.war")
> [0m[0m21:39:56,183 INFO [org.wildfly.extension.undertow] (MSC service thread 1-1) JBAS018224: Unregister web context: /txbridge-outbound-tests-client
> [0m[0m21:39:56,195 INFO [org.jboss.as.server.deployment] (MSC service thread 1-1) JBAS015877: Stopped deployment txbridge-outbound-tests-client.war (runtime-name: txbridge-outbound-tests-client.war) in 13ms
> [0m[0m21:39:56,297 INFO [org.jboss.as.repository] (management-handler-thread - 2) JBAS014901: Content removed from location /home/hudson/workspace/narayana-codeCoverage/jboss-as/build/target/wildfly-8.0.0.Alpha4-SNAPSHOT/standalone/data/content/aa/5236f4f4a5cce47776c6153a5e0e5de0d35f06/content
> [0m[0m21:39:56,298 INFO [org.jboss.as.server] (management-handler-thread - 2) JBAS018558: Undeployed "txbridge-outbound-tests-client.war" (runtime-name: "txbridge-outbound-tests-client.war")
> [0mJul 19, 2013 9:39:56 PM org.jboss.arquillian.container.test.impl.client.container.ClientContainerController stop
> INFO: Manual stopping of a server instance
> [0m21:39:56,316 INFO [org.wildfly.extension.undertow] (MSC service thread 1-2) JBAS018224: Unregister web context: /rest-tx
> [0m[0m21:39:56,324 INFO [org.jboss.as.connector.deployment] (MSC service thread 1-2) JBAS010410: Unbound JCA ConnectionFactory [java:/JmsXA]
> [0m[0m21:39:56,344 INFO [org.jboss.as.webservices] (MSC service thread 1-1) JBAS015540: Stopping service jboss.ws.endpoint."ws-t11-participant.deployment".BusinessAgreementWithParticipantCompletionParticipantService
> [0m[0m21:39:56,346 INFO [org.wildfly.extension.undertow] (MSC service thread 1-1) JBAS018224: Unregister web context: /xtstest
> [0m[0m21:39:56,347 INFO [org.jboss.jbossts.xts.servicetests.bean.XTSServiceTestRunnerBean] (MSC service thread 1-1) Stopping XTSServiceTestRunner
> [0m[0m21:39:56,349 INFO [org.jboss.jbossts.xts.servicetests.bean.XTSServiceTestRunnerBean] (MSC service thread 1-1) Stopped XTSServiceTestRunner
> [0m[0m21:39:56,354 INFO [org.wildfly.extension.undertow] (MSC service thread 1-1) JBAS018224: Unregister web context: /hornetq-server
> [0m[0m21:39:56,355 INFO [org.wildfly.extension.undertow] (MSC service thread 1-1) JBAS017521: Undertow HTTP listener default suspending
> [0m[0m21:39:56,355 INFO [org.wildfly.extension.undertow] (MSC service thread 1-1) JBAS017520: Undertow HTTP listener default stopped, was bound to localhost.localdomain/127.0.0.1:8080
> [0m[0m21:39:56,374 INFO [org.jboss.as.messaging] (ServerService Thread Pool -- 29) JBAS011605: Unbound messaging object to jndi name java:/ConnectionFactory
> [0m[0m21:39:56,399 INFO [org.jboss.as.webservices] (MSC service thread 1-1) JBAS015540: Stopping service jboss.ws.endpoint."xtstest.war".XTS_Service_Test_Service_Three
> [0m[0m21:39:56,400 INFO [org.jboss.as.webservices] (MSC service thread 1-1) JBAS015540: Stopping service jboss.ws.endpoint."xtstest.war".XTS_Service_Test_Service_Two
> [0m[0m21:39:56,402 INFO [org.jboss.as.webservices] (MSC service thread 1-1) JBAS015540: Stopping service jboss.ws.endpoint."xtstest.war".XTS_Service_Test_Subordinate_Service_One
> [0m[0m21:39:56,403 INFO [org.jboss.as.webservices] (MSC service thread 1-1) JBAS015540: Stopping service jboss.ws.endpoint."xtstest.war".XTS_Service_Test_Service_One
> [0m[0m21:39:56,405 INFO [org.jboss.weld.deployer] (MSC service thread 1-1) JBAS016009: Stopping weld service for deployment xtstest.war
> [0m[0m21:39:56,409 INFO [org.jboss.as.messaging] (ServerService Thread Pool -- 29) JBAS011605: Unbound messaging object to jndi name java:jboss/DefaultJMSConnectionFactory
> [0m[0m21:39:56,488 INFO [org.jboss.as.webservices] (MSC service thread 1-1) JBAS015540: Stopping service jboss.ws.endpoint."ws-t11-coordinator.deployment".CompletionCoordinatorService
> [0m[0m21:39:56,489 INFO [org.jboss.as.webservices] (MSC service thread 1-1) JBAS015540: Stopping service jboss.ws.endpoint."ws-t11-client.deployment".CompletionInitiatorService
> [0m[0m21:39:56,492 INFO [org.jboss.as.webservices] (MSC service thread 1-1) JBAS015540: Stopping service jboss.ws.endpoint."ws-c11.deployment".RegistrationService
> [0m[0m21:39:56,493 INFO [org.jboss.as.webservices] (MSC service thread 1-1) JBAS015540: Stopping service jboss.ws.endpoint."ws-t11-coordinator.deployment".CoordinatorService
> [0m[0m21:39:56,494 INFO [org.jboss.as.webservices] (MSC service thread 1-1) JBAS015540: Stopping service jboss.ws.endpoint."ws-t11-coordinator.deployment".BusinessAgreementWithCoordinatorCompletionCoordinatorService
> [0m[0m21:39:56,494 INFO [org.jboss.as.webservices] (MSC service thread 1-1) JBAS015540: Stopping service jboss.ws.endpoint."ws-t11-client.deployment".TerminationParticipantService
> [0m[0m21:39:56,495 INFO [org.jboss.as.webservices] (MSC service thread 1-1) JBAS015540: Stopping service jboss.ws.endpoint."ws-t11-coordinator.deployment".BusinessAgreementWithParticipantCompletionCoordinatorService
> [0m[0m21:39:56,495 INFO [org.jboss.as.webservices] (MSC service thread 1-1) JBAS015540: Stopping service jboss.ws.endpoint."ws-t11-coordinator.deployment".CompletionCoordinatorRPCService
> [0m[0m21:39:56,498 INFO [org.hornetq.ra] (MSC service thread 1-2) HQ151003: HornetQ resource adaptor stopped
> [0m[0m21:39:56,499 INFO [org.jboss.as.webservices] (MSC service thread 1-2) JBAS015540: Stopping service jboss.ws.endpoint."ws-t11-coordinator.deployment".TerminationCoordinatorService
> [0m[0m21:39:56,500 INFO [stdout] (EMMA shutdown handler thread) EMMA: runtime coverage data merged into [/home/hudson/workspace/narayana-codeCoverage/txbridge/target/test-classes/coverage.ec] {in 159 ms}
> [0m[0m21:39:56,501 INFO [org.jboss.as.webservices] (MSC service thread 1-2) JBAS015540: Stopping service jboss.ws.endpoint."ws-c11.deployment".ActivationService
> [0m[0m21:39:56,502 INFO [org.jboss.as.webservices] (MSC service thread 1-2) JBAS015540: Stopping service jboss.ws.endpoint."ws-t11-coordinator.deployment".TerminationCoordinatorRPCService
> [0m[0m21:39:56,505 INFO [org.jboss.as.webservices] (MSC service thread 1-2) JBAS015540: Stopping service jboss.ws.endpoint."ws-t11-participant.deployment".ParticipantService
> [0m[0m21:39:56,505 INFO [org.jboss.as.webservices] (MSC service thread 1-2) JBAS015540: Stopping service jboss.ws.endpoint."ws-t11-participant.deployment".BusinessAgreementWithCoordinatorCompletionParticipantService
> [0m[0m21:39:56,506 INFO [org.jboss.jbossts.txbridge] (MSC service thread 1-2) ARJUNA033007: InboundBridgeRecoveryManager stopping
> [0m[0m21:39:56,507 INFO [org.jboss.jbossts.txbridge] (MSC service thread 1-2) ARJUNA033014: OutboundBridgeRecoveryManager stopping
> [0m[0m21:39:56,518 INFO [org.jboss.as.connector.subsystems.datasources] (MSC service thread 1-2) JBAS010409: Unbound data source [java:jboss/datasources/ExampleDS]
> [0m[0m21:39:56,535 INFO [org.jboss.as.messaging] (ServerService Thread Pool -- 27) JBAS011605: Unbound messaging object to jndi name java:jboss/exported/jms/RemoteConnectionFactory
> [0m[31m21:39:56,601 ERROR [org.jboss.ws.common.deployment] (MSC service thread 1-1) JBWS022102: Cannot stop endpoint in state STOPPED: jboss.ws:context=xtstest,endpoint=XTS_Service_Test_Subordinate_Service_One
> [0m[31m21:39:56,601 ERROR [org.jboss.ws.common.deployment] (MSC service thread 1-1) JBWS022102: Cannot stop endpoint in state STOPPED: jboss.ws:context=xtstest,endpoint=XTS_Service_Test_Service_One
> [0m[31m21:39:56,601 ERROR [org.jboss.ws.common.deployment] (MSC service thread 1-1) JBWS022102: Cannot stop endpoint in state STOPPED: jboss.ws:context=xtstest,endpoint=XTS_Service_Test_Service_Two
> [0m[31m21:39:56,602 ERROR [org.jboss.ws.common.deployment] (MSC service thread 1-1) JBWS022102: Cannot stop endpoint in state STOPPED: jboss.ws:context=xtstest,endpoint=XTS_Service_Test_Service_Three
> [0m[0m21:39:56,610 INFO [org.jboss.as.connector.deployers.jdbc] (MSC service thread 1-1) JBAS010418: Stopped Driver service with driver-name = h2
> [0m[0m21:39:56,845 INFO [org.jboss.as.webservices] (MSC service thread 1-1) JBAS015540: Stopping service jboss.ws.endpoint-publish.ws-t11-client
> [0m[0m21:39:56,846 INFO [org.wildfly.extension.undertow] (MSC service thread 1-1) JBAS018224: Unregister web context: /ws-t11-client
> [0m[31m21:39:56,846 ERROR [org.jboss.ws.common.deployment] (MSC service thread 1-1) JBWS022102: Cannot stop endpoint in state STOPPED: jboss.ws:context=ws-t11-client,endpoint=CompletionInitiatorService
> [0m[31m21:39:56,846 ERROR [org.jboss.ws.common.deployment] (MSC service thread 1-1) JBWS022102: Cannot stop endpoint in state STOPPED: jboss.ws:context=ws-t11-client,endpoint=TerminationParticipantService
> [0m[0m21:39:56,849 INFO [org.jboss.as.webservices] (MSC service thread 1-1) JBAS015540: Stopping service jboss.ws.endpoint-publish.ws-t11-coordinator
> [0m[0m21:39:56,850 INFO [org.wildfly.extension.undertow] (MSC service thread 1-1) JBAS018224: Unregister web context: /ws-t11-coordinator
> [0m[31m21:39:56,851 ERROR [org.jboss.ws.common.deployment] (MSC service thread 1-1) JBWS022102: Cannot stop endpoint in state STOPPED: jboss.ws:context=ws-t11-coordinator,endpoint=BusinessAgreementWithCoordinatorCompletionCoordinatorService
> [0m[31m21:39:56,851 ERROR [org.jboss.ws.common.deployment] (MSC service thread 1-1) JBWS022102: Cannot stop endpoint in state STOPPED: jboss.ws:context=ws-t11-coordinator,endpoint=CoordinatorService
> [0m[31m21:39:56,851 ERROR [org.jboss.ws.common.deployment] (MSC service thread 1-1) JBWS022102: Cannot stop endpoint in state STOPPED: jboss.ws:context=ws-t11-coordinator,endpoint=CompletionCoordinatorRPCService
> [0m[31m21:39:56,851 ERROR [org.jboss.ws.common.deployment] (MSC service thread 1-1) JBWS022102: Cannot stop endpoint in state STOPPED: jboss.ws:context=ws-t11-coordinator,endpoint=TerminationCoordinatorRPCService
> [0m[31m21:39:56,851 ERROR [org.jboss.ws.common.deployment] (MSC service thread 1-1) JBWS022102: Cannot stop endpoint in state STOPPED: jboss.ws:context=ws-t11-coordinator,endpoint=TerminationCoordinatorService
> [0m[31m21:39:56,852 ERROR [org.jboss.ws.common.deployment] (MSC service thread 1-1) JBWS022102: Cannot stop endpoint in state STOPPED: jboss.ws:context=ws-t11-coordinator,endpoint=BusinessAgreementWithParticipantCompletionCoordinatorService
> [0m[31m21:39:56,852 ERROR [org.jboss.ws.common.deployment] (MSC service thread 1-1) JBWS022102: Cannot stop endpoint in state STOPPED: jboss.ws:context=ws-t11-coordinator,endpoint=CompletionCoordinatorService
> [0m[0m21:39:56,863 INFO [org.jboss.as.webservices] (MSC service thread 1-1) JBAS015540: Stopping service jboss.ws.endpoint-publish.ws-t11-participant
> [0m[0m21:39:56,863 INFO [org.wildfly.extension.undertow] (MSC service thread 1-1) JBAS018224: Unregister web context: /ws-t11-participant
> [0m[31m21:39:56,864 ERROR [org.jboss.ws.common.deployment] (MSC service thread 1-1) JBWS022102: Cannot stop endpoint in state STOPPED: jboss.ws:context=ws-t11-participant,endpoint=ParticipantService
> [0m[31m21:39:56,864 ERROR [org.jboss.ws.common.deployment] (MSC service thread 1-1) JBWS022102: Cannot stop endpoint in state STOPPED: jboss.ws:context=ws-t11-participant,endpoint=BusinessAgreementWithParticipantCompletionParticipantService
> [0m[31m21:39:56,865 ERROR [org.jboss.ws.common.deployment] (MSC service thread 1-1) JBWS022102: Cannot stop endpoint in state STOPPED: jboss.ws:context=ws-t11-participant,endpoint=BusinessAgreementWithCoordinatorCompletionParticipantService
> [0m[0m21:39:56,868 INFO [org.jboss.as.webservices] (MSC service thread 1-1) JBAS015540: Stopping service jboss.ws.endpoint-publish.ws-c11
> [0m[0m21:39:56,868 INFO [org.wildfly.extension.undertow] (MSC service thread 1-1) JBAS018224: Unregister web context: /ws-c11
> [0m[31m21:39:56,868 ERROR [org.jboss.ws.common.deployment] (MSC service thread 1-1) JBWS022102: Cannot stop endpoint in state STOPPED: jboss.ws:context=ws-c11,endpoint=ActivationService
> [0m[31m21:39:56,869 ERROR [org.jboss.ws.common.deployment] (MSC service thread 1-1) JBWS022102: Cannot stop endpoint in state STOPPED: jboss.ws:context=ws-c11,endpoint=RegistrationService
> [0m[0m21:39:56,888 INFO [org.wildfly.extension.undertow] (MSC service thread 1-1) Stopping host default-host
> [0m[0m21:39:56,919 INFO [org.wildfly.extension.undertow] (MSC service thread 1-2) JBAS017506: Undertow 1.0.0.Beta3 stopping
> [0m[0m21:39:56,969 INFO [org.jboss.as.server.deployment] (MSC service thread 1-1) JBAS015877: Stopped deployment xtstest.war (runtime-name: xtstest.war) in 510ms
> [0m[0m21:39:56,973 INFO [org.jboss.as.server.deployment] (MSC service thread 1-2) JBAS015877: Stopped deployment restat-web-5.0.0.M4-SNAPSHOT.war (runtime-name: restat-web-5.0.0.M4-SNAPSHOT.war) in 512ms
> [0m[0m21:39:57,047 INFO [org.hornetq.core.server] (ServerService Thread Pool -- 11) HQ221002: HornetQ Server version 2.3.1.Final (Wild Hornet, 123) [84bf850e-f0a5-11e2-b06f-99351d644b18] stopped
> [0m[0m21:39:57,055 INFO [org.jboss.as] (MSC service thread 1-2) JBAS015950: WildFly 8.0.0.Alpha4-SNAPSHOT "WildFly" stopped in 594ms
> [0mJul 19, 2013 9:39:57 PM org.jboss.arquillian.container.test.impl.client.container.ClientContainerController start
> INFO: Manual starting of a server instance
> Jul 19, 2013 9:39:57 PM org.jboss.as.arquillian.container.managed.ManagedDeployableContainer startInternal
> INFO: Starting container with: [/usr/local/jdk1.7.0_09//bin/java, -server, -Xms64m, -Xmx1024m, -XX:MaxPermSize=512m, -Dorg.jboss.byteman.debug=true, -Dorg.jboss.byteman.verbose=true, -Dorg.jboss.byteman.contrib.dtest.rmiregistry.port=1199, -Djboss.modules.system.pkgs=org.jboss.byteman, -javaagent:/home/hudson/workspace/narayana-codeCoverage/txbridge/target/byteman/byteman.jar=port:9091,listener:true,sys:/home/hudson/workspace/narayana-codeCoverage/txbridge/target/byteman/byteman-dtest.jar, -ea, -Djboss.home.dir=/home/hudson/workspace/narayana-codeCoverage/jboss-as/build/target/wildfly-8.0.0.Alpha4-SNAPSHOT, -Dorg.jboss.boot.log.file=/home/hudson/workspace/narayana-codeCoverage/jboss-as/build/target/wildfly-8.0.0.Alpha4-SNAPSHOT/standalone/log/boot.log, -Dlogging.configuration=file:/home/hudson/workspace/narayana-codeCoverage/jboss-as/build/target/wildfly-8.0.0.Alpha4-SNAPSHOT/standalone/configuration/logging.properties, -Djboss.bundles.dir=/home/hudson/workspace/narayana-codeCoverage/jboss-as/build/target/wildfly-8.0.0.Alpha4-SNAPSHOT/bundles, -jar, /home/hudson/workspace/narayana-codeCoverage/jboss-as/build/target/wildfly-8.0.0.Alpha4-SNAPSHOT/jboss-modules.jar, -mp, /home/hudson/workspace/narayana-codeCoverage/jboss-as/build/target/wildfly-8.0.0.Alpha4-SNAPSHOT/modules, org.jboss.as.standalone, -server-config, standalone-xts.xml]
> TransformListener() : accepting requests on localhost:9091
> [0m21:39:58,681 INFO [org.jboss.modules] (main) JBoss Modules version 1.2.4.Final
> [0m[0m21:39:59,181 INFO [org.jboss.msc] (main) JBoss MSC version 1.2.0.Beta2
> [0m[0m21:39:59,318 INFO [org.jboss.as] (MSC service thread 1-2) JBAS015899: WildFly 8.0.0.Alpha4-SNAPSHOT "WildFly" starting
> [0m[0m21:40:01,927 INFO [stdout] (ServerService Thread Pool -- 7) EMMA: collecting runtime coverage data ...
> [0m[0m21:40:02,162 INFO [org.xnio] (MSC service thread 1-1) XNIO Version 3.1.0.CR3
> [0m[0m21:40:02,169 INFO [org.xnio.nio] (MSC service thread 1-1) XNIO NIO Implementation Version 3.1.0.CR3
> [0m[0m21:40:02,204 INFO [org.jboss.remoting] (MSC service thread 1-1) JBoss Remoting version 4.0.0.Beta1
> [0m[0m21:40:02,290 INFO [org.jboss.as.server] (Controller Boot Thread) JBAS015888: Creating http management service using socket-binding (management-http)
> [0m[0m21:40:02,430 INFO [org.jboss.as.jacorb] (ServerService Thread Pool -- 36) JBAS016300: Activating JacORB Subsystem
> [0m[0m21:40:02,542 INFO [org.jboss.as.jsf] (ServerService Thread Pool -- 42) JBAS012605: Activated the following JSF Implementations: [main]
> [0m[0m21:40:02,806 INFO [org.jboss.as.naming] (ServerService Thread Pool -- 46) JBAS011800: Activating Naming Subsystem
> [0m[0m21:40:03,370 INFO [org.jboss.as.clustering.infinispan] (ServerService Thread Pool -- 35) JBAS010280: Activating Infinispan subsystem.
> [0m[0m21:40:03,434 INFO [org.jboss.as.webservices] (ServerService Thread Pool -- 55) JBAS015537: Activating WebServices Extension
> [0m[0m21:40:03,448 INFO [org.jboss.as.security] (ServerService Thread Pool -- 51) JBAS013171: Activating Security Subsystem
> [0m[0m21:40:03,552 INFO [org.jboss.as.naming] (MSC service thread 1-1) JBAS011802: Starting Naming Service
> [0m[0m21:40:03,744 INFO [org.jboss.ws.common.management] (MSC service thread 1-1) JBWS022052: Starting JBoss Web Services - Stack CXF Server 4.2.0.CR1
> [0m[0m21:40:03,802 INFO [org.jboss.as.connector.logging] (MSC service thread 1-1) JBAS010408: Starting JCA Subsystem (IronJacamar 1.0.17.Final)
> [0m[0m21:40:03,801 INFO [org.jboss.as.jacorb] (MSC service thread 1-2) JBAS016330: CORBA ORB Service started
> [0m[0m21:40:03,916 INFO [org.wildfly.extension.undertow] (ServerService Thread Pool -- 54) JBAS017502: Undertow 1.0.0.Beta3 starting
> [0m[0m21:40:04,070 INFO [org.jboss.as.security] (MSC service thread 1-1) JBAS013170: Current PicketBox version=4.0.17.Final
> [0m[0m21:40:04,346 INFO [org.jboss.as.connector.subsystems.datasources] (ServerService Thread Pool -- 30) JBAS010403: Deploying JDBC-compliant driver class org.h2.Driver (version 1.3)
> [0m[0m21:40:04,361 INFO [org.wildfly.extension.undertow] (MSC service thread 1-2) JBAS017502: Undertow 1.0.0.Beta3 starting
> [0m[0m21:40:04,690 INFO [org.jboss.as.mail.extension] (MSC service thread 1-2) JBAS015400: Bound mail session [java:jboss/mail/Default]
> [0m[0m21:40:04,779 INFO [org.jboss.as.connector.deployers.jdbc] (MSC service thread 1-2) JBAS010417: Started Driver service with driver-name = h2
> [0m[0m21:40:05,131 INFO [org.jboss.as.jacorb] (MSC service thread 1-2) JBAS016328: CORBA Naming Service started
> [0m[0m21:40:05,194 INFO [org.wildfly.extension.undertow] (ServerService Thread Pool -- 54) JBAS017527: Creating file handler for path /home/hudson/workspace/narayana-codeCoverage/jboss-as/build/target/wildfly-8.0.0.Alpha4-SNAPSHOT/welcome-content
> [0m[0m21:40:05,602 INFO [org.wildfly.extension.undertow] (MSC service thread 1-2) JBAS017525: Started http handler io.undertow.server.handlers.resource.ResourceHandler@152e4ea.
> [0m[0m21:40:05,718 INFO [org.wildfly.extension.undertow] (MSC service thread 1-2) Starting server server service: service jboss.undertow.server.default-server
> [0m[0m21:40:05,791 INFO [org.wildfly.extension.undertow] (MSC service thread 1-2) JBAS017519: Undertow HTTP listener default listening on localhost.localdomain/127.0.0.1:8080
> [0m[0m21:40:05,792 INFO [org.wildfly.extension.undertow] (MSC service thread 1-2) Starting host default-host
> [0m[0m21:40:05,839 INFO [org.wildfly.extension.undertow] (MSC service thread 1-1) JBAS017528: registering handler io.undertow.server.handlers.resource.ResourceHandler@152e4ea under path '/'
> [0m[0m21:40:05,839 INFO [org.jboss.as.webservices] (MSC service thread 1-1) JBAS015539: Starting service jboss.ws.endpoint-publish.ws-c11
> [0m[0m21:40:05,862 INFO [org.jboss.as.webservices] (MSC service thread 1-2) JBAS015539: Starting service jboss.ws.endpoint-publish.ws-t11-participant
> [0m[0m21:40:05,962 INFO [org.jboss.ws.cxf.metadata] (MSC service thread 1-2) JBWS024061: Adding service endpoint metadata: id=ParticipantService
> address=http://localhost:8080/ws-t11-participant/ParticipantService
> implementor=com.arjuna.webservices11.wsat.sei.ParticipantPortTypeImpl
> serviceName={http://docs.oasis-open.org/ws-tx/wsat/2006/06}ParticipantSer...
> portName={http://docs.oasis-open.org/ws-tx/wsat/2006/06}ParticipantPortType
> annotationWsdlLocation=null
> wsdlLocationOverride=null
> mtomEnabled=false
> [0m[0m21:40:05,963 INFO [org.jboss.ws.cxf.metadata] (MSC service thread 1-2) JBWS024061: Adding service endpoint metadata: id=BusinessAgreementWithParticipantCompletionParticipantService
> address=http://localhost:8080/ws-t11-participant/BusinessAgreementWithParticipantCompletionParticipantService
> implementor=com.arjuna.webservices11.wsba.sei.BusinessAgreementWithParticipantCompletionParticipantPortTypeImpl
> serviceName={http://docs.oasis-open.org/ws-tx/wsba/2006/06}BusinessAgreem...
> portName={http://docs.oasis-open.org/ws-tx/wsba/2006/06}BusinessAgreement...
> annotationWsdlLocation=null
> wsdlLocationOverride=null
> mtomEnabled=false
> [0m[0m21:40:05,965 INFO [org.jboss.ws.cxf.metadata] (MSC service thread 1-2) JBWS024061: Adding service endpoint metadata: id=BusinessAgreementWithCoordinatorCompletionParticipantService
> address=http://localhost:8080/ws-t11-participant/BusinessAgreementWithCoordinatorCompletionParticipantService
> implementor=com.arjuna.webservices11.wsba.sei.BusinessAgreementWithCoordinatorCompletionParticipantPortTypeImpl
> serviceName={http://docs.oasis-open.org/ws-tx/wsba/2006/06}BusinessAgreem...
> portName={http://docs.oasis-open.org/ws-tx/wsba/2006/06}BusinessAgreement...
> annotationWsdlLocation=null
> wsdlLocationOverride=null
> mtomEnabled=false
> [0m[0m21:40:06,666 INFO [org.apache.cxf.service.factory.ReflectionServiceFactoryBean] (MSC service thread 1-2) Creating Service {http://docs.oasis-open.org/ws-tx/wsat/2006/06}ParticipantService from class com.arjuna.webservices11.wsat.sei.ParticipantPortTypeImpl
> [0m[0m21:40:07,043 INFO [org.jboss.ws.cxf.metadata] (MSC service thread 1-1) JBWS024061: Adding service endpoint metadata: id=ActivationService
> address=http://localhost:8080/ws-c11/ActivationService
> implementor=com.arjuna.webservices11.wscoor.sei.ActivationPortTypeImpl
> serviceName={http://docs.oasis-open.org/ws-tx/wscoor/2006/06}ActivationSe...
> portName={http://docs.oasis-open.org/ws-tx/wscoor/2006/06}ActivationPortType
> annotationWsdlLocation=null
> wsdlLocationOverride=null
> mtomEnabled=false
> [0m[0m21:40:07,815 INFO [org.apache.cxf.endpoint.ServerImpl] (MSC service thread 1-2) Setting the server's publish address to be http://localhost:8080/ws-t11-participant/ParticipantService
> [0m[0m21:40:08,180 INFO [org.jboss.ws.cxf.deployment] (MSC service thread 1-2) JBWS024074: WSDL published to: file:/home/hudson/workspace/narayana-codeCoverage/jboss-as/build/target/wildfly-8.0.0.Alpha4-SNAPSHOT/standalone/data/wsdl/ws-t11-participant.deployment/ParticipantService.wsdl
> [0m[0m21:40:08,182 INFO [org.apache.cxf.service.factory.ReflectionServiceFactoryBean] (MSC service thread 1-2) Creating Service {http://docs.oasis-open.org/ws-tx/wsba/2006/06}BusinessAgreementWithParticipantCompletionParticipantService from class com.arjuna.webservices11.wsba.sei.BusinessAgreementWithParticipantCompletionParticipantPortTypeImpl
> [0m[0m21:40:08,264 INFO [org.apache.cxf.endpoint.ServerImpl] (MSC service thread 1-2) Setting the server's publish address to be http://localhost:8080/ws-t11-participant/BusinessAgreementWithParticipant...
> [0m[0m21:40:08,330 INFO [org.jboss.ws.cxf.deployment] (MSC service thread 1-2) JBWS024074: WSDL published to: file:/home/hudson/workspace/narayana-codeCoverage/jboss-as/build/target/wildfly-8.0.0.Alpha4-SNAPSHOT/standalone/data/wsdl/ws-t11-participant.deployment/BusinessAgreementWithParticipantCompletionParticipantService.wsdl
> [0m[0m21:40:08,332 INFO [org.apache.cxf.service.factory.ReflectionServiceFactoryBean] (MSC service thread 1-2) Creating Service {http://docs.oasis-open.org/ws-tx/wsba/2006/06}BusinessAgreementWithCoordinatorCompletionParticipantService from class org.oasis_open.docs.ws_tx.wsba._2006._06.BusinessAgreementWithCoordinatorCompletionParticipantPortType
> [0m[0m21:40:08,358 INFO [org.apache.cxf.endpoint.ServerImpl] (MSC service thread 1-2) Setting the server's publish address to be http://localhost:8080/ws-t11-participant/BusinessAgreementWithCoordinator...
> [0m[0m21:40:08,447 INFO [org.jboss.ws.cxf.deployment] (MSC service thread 1-2) JBWS024074: WSDL published to: file:/home/hudson/workspace/narayana-codeCoverage/jboss-as/build/target/wildfly-8.0.0.Alpha4-SNAPSHOT/standalone/data/wsdl/ws-t11-participant.deployment/BusinessAgreementWithCoordinatorCompletionParticipantService.wsdl
> [0m[0m21:40:08,503 INFO [org.wildfly.extension.undertow] (MSC service thread 1-2) JBAS018210: Register web context: /ws-t11-participant
> [0m[0m21:40:08,504 INFO [org.jboss.as.webservices] (MSC service thread 1-2) JBAS015539: Starting service jboss.ws.endpoint-publish.ws-t11-client
> [0m[0m21:40:08,506 INFO [org.jboss.ws.cxf.metadata] (MSC service thread 1-2) JBWS024061: Adding service endpoint metadata: id=CompletionInitiatorService
> address=http://localhost:8080/ws-t11-client/CompletionInitiatorService
> implementor=com.arjuna.webservices11.wsat.sei.CompletionInitiatorPortTypeImpl
> serviceName={http://docs.oasis-open.org/ws-tx/wsat/2006/06}CompletionInit...
> portName={http://docs.oasis-open.org/ws-tx/wsat/2006/06}CompletionInitiat...
> annotationWsdlLocation=null
> wsdlLocationOverride=null
> mtomEnabled=false
> [0m[0m21:40:08,507 INFO [org.jboss.ws.cxf.metadata] (MSC service thread 1-2) JBWS024061: Adding service endpoint metadata: id=TerminationParticipantService
> address=http://localhost:8080/ws-t11-client/TerminationParticipantService
> implementor=com.arjuna.webservices11.wsarjtx.sei.TerminationParticipantPortTypeImpl
> serviceName={http://schemas.arjuna.com/ws/2005/10/wsarjtx}TerminationPart...
> portName={http://schemas.arjuna.com/ws/2005/10/wsarjtx}TerminationPartici...
> annotationWsdlLocation=null
> wsdlLocationOverride=null
> mtomEnabled=false
> [0m[0m21:40:08,522 INFO [org.apache.cxf.service.factory.ReflectionServiceFactoryBean] (MSC service thread 1-2) Creating Service {http://docs.oasis-open.org/ws-tx/wsat/2006/06}CompletionInitiatorService from class com.arjuna.webservices11.wsat.sei.CompletionInitiatorPortTypeImpl
> [0m[0m21:40:08,554 INFO [org.apache.cxf.endpoint.ServerImpl] (MSC service thread 1-2) Setting the server's publish address to be http://localhost:8080/ws-t11-client/CompletionInitiatorService
> [0m[0m21:40:08,599 INFO [org.jboss.ws.cxf.deployment] (MSC service thread 1-2) JBWS024074: WSDL published to: file:/home/hudson/workspace/narayana-codeCoverage/jboss-as/build/target/wildfly-8.0.0.Alpha4-SNAPSHOT/standalone/data/wsdl/ws-t11-client.deployment/CompletionInitiatorService.wsdl
> [0m[0m21:40:08,602 INFO [org.apache.cxf.service.factory.ReflectionServiceFactoryBean] (MSC service thread 1-2) Creating Service {http://schemas.arjuna.com/ws/2005/10/wsarjtx}TerminationParticipantService from class com.arjuna.schemas.ws._2005._10.wsarjtx.TerminationParticipantPortType
> [0m[0m21:40:08,672 INFO [org.apache.cxf.endpoint.ServerImpl] (MSC service thread 1-2) Setting the server's publish address to be http://localhost:8080/ws-t11-client/TerminationParticipantService
> [0m[0m21:40:08,739 INFO [org.jboss.ws.cxf.deployment] (MSC service thread 1-2) JBWS024074: WSDL published to: file:/home/hudson/workspace/narayana-codeCoverage/jboss-as/build/target/wildfly-8.0.0.Alpha4-SNAPSHOT/standalone/data/wsdl/ws-t11-client.deployment/TerminationParticipantService.wsdl
> [0m[0m21:40:08,748 INFO [org.wildfly.extension.undertow] (MSC service thread 1-2) JBAS018210: Register web context: /ws-t11-client
> [0m[0m21:40:08,748 INFO [org.jboss.as.webservices] (MSC service thread 1-2) JBAS015539: Starting service jboss.ws.endpoint-publish.ws-t11-coordinator
> [0m[0m21:40:08,751 INFO [org.jboss.ws.cxf.metadata] (MSC service thread 1-2) JBWS024061: Adding service endpoint metadata: id=BusinessAgreementWithCoordinatorCompletionCoordinatorService
> address=http://localhost:8080/ws-t11-coordinator/BusinessAgreementWithCoordinatorCompletionCoordinatorService
> implementor=com.arjuna.webservices11.wsba.sei.BusinessAgreementWithCoordinatorCompletionCoordinatorPortTypeImpl
> serviceName={http://docs.oasis-open.org/ws-tx/wsba/2006/06}BusinessAgreem...
> portName={http://docs.oasis-open.org/ws-tx/wsba/2006/06}BusinessAgreement...
> annotationWsdlLocation=null
> wsdlLocationOverride=null
> mtomEnabled=false
> [0m[0m21:40:08,752 INFO [org.jboss.ws.cxf.metadata] (MSC service thread 1-2) JBWS024061: Adding service endpoint metadata: id=CoordinatorService
> address=http://localhost:8080/ws-t11-coordinator/CoordinatorService
> implementor=com.arjuna.webservices11.wsat.sei.CoordinatorPortTypeImpl
> serviceName={http://docs.oasis-open.org/ws-tx/wsat/2006/06}CoordinatorSer...
> portName={http://docs.oasis-open.org/ws-tx/wsat/2006/06}CoordinatorPortType
> annotationWsdlLocation=null
> wsdlLocationOverride=null
> mtomEnabled=false
> [0m[0m21:40:08,753 INFO [org.jboss.ws.cxf.metadata] (MSC service thread 1-2) JBWS024061: Adding service endpoint metadata: id=CompletionCoordinatorRPCService
> address=http://localhost:8080/ws-t11-coordinator/CompletionCoordinatorRPCService
> implementor=com.arjuna.webservices11.wsat.sei.CompletionCoordinatorRPCPortTypeImpl
> serviceName={http://docs.oasis-open.org/ws-tx/wsat/2006/06}CompletionCoor...
> portName={http://docs.oasis-open.org/ws-tx/wsat/2006/06}CompletionCoordin...
> annotationWsdlLocation=null
> wsdlLocationOverride=null
> mtomEnabled=false
> [0m[0m21:40:08,754 INFO [org.jboss.ws.cxf.metadata] (MSC service thread 1-2) JBWS024061: Adding service endpoint metadata: id=TerminationCoordinatorRPCService
> address=http://localhost:8080/ws-t11-coordinator/TerminationCoordinatorRPCService
> implementor=com.arjuna.webservices11.wsarjtx.sei.TerminationCoordinatorRPCPortTypeImpl
> serviceName={http://schemas.arjuna.com/ws/2005/10/wsarjtx}TerminationCoor...
> portName={http://schemas.arjuna.com/ws/2005/10/wsarjtx}TerminationCoordin...
> annotationWsdlLocation=null
> wsdlLocationOverride=null
> mtomEnabled=false
> [0m[0m21:40:08,755 INFO [org.jboss.ws.cxf.metadata] (MSC service thread 1-2) JBWS024061: Adding service endpoint metadata: id=TerminationCoordinatorService
> address=http://localhost:8080/ws-t11-coordinator/TerminationCoordinatorService
> implementor=com.arjuna.webservices11.wsarjtx.sei.TerminationCoordinatorPortTypeImpl
> serviceName={http://schemas.arjuna.com/ws/2005/10/wsarjtx}TerminationCoor...
> portName={http://schemas.arjuna.com/ws/2005/10/wsarjtx}TerminationCoordin...
> annotationWsdlLocation=null
> wsdlLocationOverride=null
> mtomEnabled=false
> [0m[0m21:40:08,756 INFO [org.jboss.ws.cxf.metadata] (MSC service thread 1-2) JBWS024061: Adding service endpoint metadata: id=BusinessAgreementWithParticipantCompletionCoordinatorService
> address=http://localhost:8080/ws-t11-coordinator/BusinessAgreementWithParticipantCompletionCoordinatorService
> implementor=com.arjuna.webservices11.wsba.sei.BusinessAgreementWithParticipantCompletionCoordinatorPortTypeImpl
> serviceName={http://docs.oasis-open.org/ws-tx/wsba/2006/06}BusinessAgreem...
> portName={http://docs.oasis-open.org/ws-tx/wsba/2006/06}BusinessAgreement...
> annotationWsdlLocation=null
> wsdlLocationOverride=null
> mtomEnabled=false
> [0m[0m21:40:08,757 INFO [org.jboss.ws.cxf.metadata] (MSC service thread 1-2) JBWS024061: Adding service endpoint metadata: id=CompletionCoordinatorService
> address=http://localhost:8080/ws-t11-coordinator/CompletionCoordinatorService
> implementor=com.arjuna.webservices11.wsat.sei.CompletionCoordinatorPortTypeImpl
> serviceName={http://docs.oasis-open.org/ws-tx/wsat/2006/06}CompletionCoor...
> portName={http://docs.oasis-open.org/ws-tx/wsat/2006/06}CompletionCoordin...
> annotationWsdlLocation=null
> wsdlLocationOverride=null
> mtomEnabled=false
> [0m[0m21:40:08,772 INFO [org.apache.cxf.service.factory.ReflectionServiceFactoryBean] (MSC service thread 1-2) Creating Service {http://docs.oasis-open.org/ws-tx/wsba/2006/06}BusinessAgreementWithCoordinatorCompletionCoordinatorService from class com.arjuna.webservices11.wsba.sei.BusinessAgreementWithCoordinatorCompletionCoordinatorPortTypeImpl
> [0m[0m21:40:08,914 INFO [org.apache.cxf.endpoint.ServerImpl] (MSC service thread 1-2) Setting the server's publish address to be http://localhost:8080/ws-t11-coordinator/BusinessAgreementWithCoordinator...
> [0m[0m21:40:08,983 INFO [org.jboss.ws.cxf.deployment] (MSC service thread 1-2) JBWS024074: WSDL published to: file:/home/hudson/workspace/narayana-codeCoverage/jboss-as/build/target/wildfly-8.0.0.Alpha4-SNAPSHOT/standalone/data/wsdl/ws-t11-coordinator.deployment/BusinessAgreementWithCoordinatorCompletionCoordinatorService.wsdl
> [0m[0m21:40:08,985 INFO [org.apache.cxf.service.factory.ReflectionServiceFactoryBean] (MSC service thread 1-2) Creating Service {http://docs.oasis-open.org/ws-tx/wsat/2006/06}CoordinatorService from class com.arjuna.webservices11.wsat.sei.CoordinatorPortTypeImpl
> [0m[0m21:40:09,002 INFO [org.apache.cxf.endpoint.ServerImpl] (MSC service thread 1-2) Setting the server's publish address to be http://localhost:8080/ws-t11-coordinator/CoordinatorService
> [0m[0m21:40:09,037 INFO [org.jboss.ws.cxf.deployment] (MSC service thread 1-2) JBWS024074: WSDL published to: file:/home/hudson/workspace/narayana-codeCoverage/jboss-as/build/target/wildfly-8.0.0.Alpha4-SNAPSHOT/standalone/data/wsdl/ws-t11-coordinator.deployment/CoordinatorService.wsdl
> [0m[0m21:40:09,038 INFO [org.apache.cxf.service.factory.ReflectionServiceFactoryBean] (MSC service thread 1-2) Creating Service {http://docs.oasis-open.org/ws-tx/wsat/2006/06}CompletionCoordinatorRPCService from class com.arjuna.webservices11.wsat.sei.CompletionCoordinatorRPCPortTypeImpl
> [0m[0m21:40:09,127 INFO [org.apache.cxf.endpoint.ServerImpl] (MSC service thread 1-2) Setting the server's publish address to be http://localhost:8080/ws-t11-coordinator/CompletionCoordinatorRPCService
> [0m[0m21:40:09,200 INFO [org.jboss.ws.cxf.deployment] (MSC service thread 1-2) JBWS024074: WSDL published to: file:/home/hudson/workspace/narayana-codeCoverage/jboss-as/build/target/wildfly-8.0.0.Alpha4-SNAPSHOT/standalone/data/wsdl/ws-t11-coordinator.deployment/CompletionCoordinatorRPCService.wsdl
> [0m[0m21:40:09,201 INFO [org.apache.cxf.service.factory.ReflectionServiceFactoryBean] (MSC service thread 1-2) Creating Service {http://schemas.arjuna.com/ws/2005/10/wsarjtx}TerminationCoordinatorRPCPortTypeImplService from class com.arjuna.webservices11.wsarjtx.sei.TerminationCoordinatorRPCPortTypeImpl
> [0m[0m21:40:09,228 INFO [org.apache.cxf.endpoint.ServerImpl] (MSC service thread 1-2) Setting the server's publish address to be http://localhost:8080/ws-t11-coordinator/TerminationCoordinatorRPCService
> [0m[0m21:40:09,288 INFO [org.jboss.ws.cxf.deployment] (MSC service thread 1-2) JBWS024074: WSDL published to: file:/home/hudson/workspace/narayana-codeCoverage/jboss-as/build/target/wildfly-8.0.0.Alpha4-SNAPSHOT/standalone/data/wsdl/ws-t11-coordinator.deployment/TerminationCoordinatorRPCPortTypeImplService.wsdl
> [0m[0m21:40:09,301 INFO [org.apache.cxf.service.factory.ReflectionServiceFactoryBean] (MSC service thread 1-2) Creating Service {http://schemas.arjuna.com/ws/2005/10/wsarjtx}TerminationCoordinatorService from class com.arjuna.schemas.ws._2005._10.wsarjtx.TerminationCoordinatorPortType
> [0m[0m21:40:09,328 INFO [org.apache.cxf.endpoint.ServerImpl] (MSC service thread 1-2) Setting the server's publish address to be http://localhost:8080/ws-t11-coordinator/TerminationCoordinatorService
> [0m[0m21:40:09,353 INFO [org.jboss.ws.cxf.deployment] (MSC service thread 1-2) JBWS024074: WSDL published to: file:/home/hudson/workspace/narayana-codeCoverage/jboss-as/build/target/wildfly-8.0.0.Alpha4-SNAPSHOT/standalone/data/wsdl/ws-t11-coordinator.deployment/TerminationCoordinatorService.wsdl
> [0m[0m21:40:09,354 INFO [org.apache.cxf.service.factory.ReflectionServiceFactoryBean] (MSC service thread 1-2) Creating Service {http://docs.oasis-open.org/ws-tx/wsba/2006/06}BusinessAgreementWithParticipantCompletionCoordinatorService from class com.arjuna.webservices11.wsba.sei.BusinessAgreementWithParticipantCompletionCoordinatorPortTypeImpl
> [0m[0m21:40:09,375 INFO [org.apache.cxf.endpoint.ServerImpl] (MSC service thread 1-2) Setting the server's publish address to be http://localhost:8080/ws-t11-coordinator/BusinessAgreementWithParticipant...
> [0m[0m21:40:09,465 INFO [org.jboss.ws.cxf.deployment] (MSC service thread 1-2) JBWS024074: WSDL published to: file:/home/hudson/workspace/narayana-codeCoverage/jboss-as/build/target/wildfly-8.0.0.Alpha4-SNAPSHOT/standalone/data/wsdl/ws-t11-coordinator.deployment/BusinessAgreementWithParticipantCompletionCoordinatorService.wsdl
> [0m[0m21:40:09,466 INFO [org.apache.cxf.service.factory.ReflectionServiceFactoryBean] (MSC service thread 1-2) Creating Service {http://docs.oasis-open.org/ws-tx/wsat/2006/06}CompletionCoordinatorService from class com.arjuna.webservices11.wsat.sei.CompletionCoordinatorPortTypeImpl
> [0m[0m21:40:09,476 INFO [org.apache.cxf.endpoint.ServerImpl] (MSC service thread 1-2) Setting the server's publish address to be http://localhost:8080/ws-t11-coordinator/CompletionCoordinatorService
> [0m[0m21:40:09,506 INFO [org.jboss.ws.cxf.deployment] (MSC service thread 1-2) JBWS024074: WSDL published to: file:/home/hudson/workspace/narayana-codeCoverage/jboss-as/build/target/wildfly-8.0.0.Alpha4-SNAPSHOT/standalone/data/wsdl/ws-t11-coordinator.deployment/CompletionCoordinatorService.wsdl
> [0m[0m21:40:09,509 INFO [org.wildfly.extension.undertow] (MSC service thread 1-2) JBAS018210: Register web context: /ws-t11-coordinator
> [0m[0m21:40:09,511 INFO [org.jboss.as.webservices] (MSC service thread 1-2) JBAS015539: Starting service jboss.ws.endpoint."ws-t11-participant.deployment".ParticipantService
> [0m[0m21:40:09,520 INFO [org.jboss.as.webservices] (MSC service thread 1-2) JBAS015539: Starting service jboss.ws.endpoint."ws-t11-participant.deployment".BusinessAgreementWithCoordinatorCompletionParticipantService
> [0m[0m21:40:09,521 INFO [org.jboss.as.webservices] (MSC service thread 1-2) JBAS015539: Starting service jboss.ws.endpoint."ws-t11-participant.deployment".BusinessAgreementWithParticipantCompletionParticipantService
> [0m[0m21:40:09,522 INFO [org.jboss.as.webservices] (MSC service thread 1-2) JBAS015539: Starting service jboss.ws.endpoint."ws-t11-client.deployment".CompletionInitiatorService
> [0m[0m21:40:09,522 INFO [org.jboss.as.webservices] (MSC service thread 1-2) JBAS015539: Starting service jboss.ws.endpoint."ws-t11-client.deployment".TerminationParticipantService
> [0m[0m21:40:09,523 INFO [org.jboss.as.webservices] (MSC service thread 1-2) JBAS015539: Starting service jboss.ws.endpoint."ws-t11-coordinator.deployment".CoordinatorService
> [0m[0m21:40:09,524 INFO [org.jboss.as.webservices] (MSC service thread 1-2) JBAS015539: Starting service jboss.ws.endpoint."ws-t11-coordinator.deployment".BusinessAgreementWithCoordinatorCompletionCoordinatorService
> [0m[0m21:40:09,525 INFO [org.jboss.as.webservices] (MSC service thread 1-2) JBAS015539: Starting service jboss.ws.endpoint."ws-t11-coordinator.deployment".CompletionCoordinatorRPCService
> [0m[0m21:40:09,526 INFO [org.jboss.as.webservices] (MSC service thread 1-2) JBAS015539: Starting service jboss.ws.endpoint."ws-t11-coordinator.deployment".TerminationCoordinatorService
> [0m[0m21:40:09,527 INFO [org.jboss.as.webservices] (MSC service thread 1-2) JBAS015539: Starting service jboss.ws.endpoint."ws-t11-coordinator.deployment".BusinessAgreementWithParticipantCompletionCoordinatorService
> [0m[0m21:40:09,528 INFO [org.jboss.as.webservices] (MSC service thread 1-2) JBAS015539: Starting service jboss.ws.endpoint."ws-t11-coordinator.deployment".CompletionCoordinatorService
> [0m[0m21:40:09,528 INFO [org.jboss.as.webservices] (MSC service thread 1-2) JBAS015539: Starting service jboss.ws.endpoint."ws-t11-coordinator.deployment".TerminationCoordinatorRPCService
> [0m[0m21:40:09,530 INFO [org.jboss.as.connector.subsystems.datasources] (MSC service thread 1-2) JBAS010400: Bound data source [java:jboss/datasources/ExampleDS]
> [0m[0m21:40:09,436 INFO [org.jboss.ws.cxf.metadata] (MSC service thread 1-1) JBWS024061: Adding service endpoint metadata: id=RegistrationService
> address=http://localhost:8080/ws-c11/RegistrationService
> implementor=com.arjuna.webservices11.wscoor.sei.RegistrationPortTypeImpl
> serviceName={http://docs.oasis-open.org/ws-tx/wscoor/2006/06}Registration...
> portName={http://docs.oasis-open.org/ws-tx/wscoor/2006/06}RegistrationPor...
> annotationWsdlLocation=null
> wsdlLocationOverride=null
> mtomEnabled=false
> [0m[0m21:40:09,553 INFO [org.apache.cxf.service.factory.ReflectionServiceFactoryBean] (MSC service thread 1-1) Creating Service {http://docs.oasis-open.org/ws-tx/wscoor/2006/06}ActivationService from class com.arjuna.webservices11.wscoor.sei.ActivationPortTypeImpl
> [0m[0m21:40:09,901 INFO [org.apache.cxf.endpoint.ServerImpl] (MSC service thread 1-1) Setting the server's publish address to be http://localhost:8080/ws-c11/ActivationService
> [0m[0m21:40:09,944 INFO [org.jboss.ws.cxf.deployment] (MSC service thread 1-1) JBWS024074: WSDL published to: file:/home/hudson/workspace/narayana-codeCoverage/jboss-as/build/target/wildfly-8.0.0.Alpha4-SNAPSHOT/standalone/data/wsdl/ws-c11.deployment/ActivationService.wsdl
> [0m[0m21:40:09,946 INFO [org.apache.cxf.service.factory.ReflectionServiceFactoryBean] (MSC service thread 1-1) Creating Service {http://docs.oasis-open.org/ws-tx/wscoor/2006/06}RegistrationService from class com.arjuna.webservices11.wscoor.sei.RegistrationPortTypeImpl
> [0m[0m21:40:10,034 INFO [org.apache.cxf.endpoint.ServerImpl] (MSC service thread 1-1) Setting the server's publish address to be http://localhost:8080/ws-c11/RegistrationService
> [0m[0m21:40:10,064 INFO [org.jboss.ws.cxf.deployment] (MSC service thread 1-1) JBWS024074: WSDL published to: file:/home/hudson/workspace/narayana-codeCoverage/jboss-as/build/target/wildfly-8.0.0.Alpha4-SNAPSHOT/standalone/data/wsdl/ws-c11.deployment/RegistrationService.wsdl
> [0m[0m21:40:10,067 INFO [org.wildfly.extension.undertow] (MSC service thread 1-1) JBAS018210: Register web context: /ws-c11
> [0m[0m21:40:10,498 INFO [org.jboss.as.webservices] (MSC service thread 1-1) JBAS015539: Starting service jboss.ws.endpoint."ws-c11.deployment".ActivationService
> [0m[0m21:40:10,499 INFO [org.jboss.as.webservices] (MSC service thread 1-1) JBAS015539: Starting service jboss.ws.endpoint."ws-c11.deployment".RegistrationService
> [0m[0m21:40:10,563 INFO [org.jboss.jbossts.txbridge] (MSC service thread 1-2) ARJUNA033013: OutboundBridgeRecoveryManager starting
> [0m[0m21:40:10,567 INFO [org.jboss.jbossts.txbridge] (MSC service thread 1-1) ARJUNA033006: InboundBridgeRecoveryManager starting
> [0m[0m21:40:10,756 INFO [org.hornetq.core.server] (ServerService Thread Pool -- 58) HQ221000: live server is starting with configuration HornetQ Configuration (clustered=false,backup=false,sharedStore=true,journalDirectory=/home/hudson/workspace/narayana-codeCoverage/jboss-as/build/target/wildfly-8.0.0.Alpha4-SNAPSHOT/standalone/data/messagingjournal,bindingsDirectory=/home/hudson/workspace/narayana-codeCoverage/jboss-as/build/target/wildfly-8.0.0.Alpha4-SNAPSHOT/standalone/data/messagingbindings,largeMessagesDirectory=/home/hudson/workspace/narayana-codeCoverage/jboss-as/build/target/wildfly-8.0.0.Alpha4-SNAPSHOT/standalone/data/messaginglargemessages,pagingDirectory=/home/hudson/workspace/narayana-codeCoverage/jboss-as/build/target/wildfly-8.0.0.Alpha4-SNAPSHOT/standalone/data/messagingpaging)
> [0m[0m21:40:10,759 INFO [org.hornetq.core.server] (ServerService Thread Pool -- 58) HQ221006: Waiting to obtain live lock
> [0m[0m21:40:10,789 INFO [org.hornetq.core.server] (ServerService Thread Pool -- 58) HQ221012: Using AIO Journal
> [0m[0m21:40:11,087 INFO [org.jboss.as.remoting] (MSC service thread 1-2) JBAS017100: Listening on 127.0.0.1:9999
> [0m[0m21:40:11,100 INFO [org.jboss.as.server.deployment] (MSC service thread 1-2) JBAS015876: Starting deployment of "xtstest.war" (runtime-name: "xtstest.war")
> [0m[0m21:40:11,103 INFO [org.jboss.as.server.deployment] (MSC service thread 1-2) JBAS015876: Starting deployment of "restat-web-5.0.0.M4-SNAPSHOT.war" (runtime-name: "restat-web-5.0.0.M4-SNAPSHOT.war")
> [0m[0m21:40:11,131 INFO [org.jboss.as.server.deployment.scanner] (MSC service thread 1-2) JBAS015012: Started FileSystemDeploymentService for directory /home/hudson/workspace/narayana-codeCoverage/jboss-as/build/target/wildfly-8.0.0.Alpha4-SNAPSHOT/standalone/deployments
> [0m[0m21:40:11,200 INFO [org.hornetq.core.server] (ServerService Thread Pool -- 58) HQ221034: Waiting to obtain live lock
> [0m[0m21:40:11,201 INFO [org.hornetq.core.server] (ServerService Thread Pool -- 58) HQ221035: Live Server Obtained live lock
> [0m[33m21:40:12,195 WARN [org.jboss.as.dependency.private] (MSC service thread 1-1) JBAS018567: Deployment "deployment.restat-web-5.0.0.M4-SNAPSHOT.war" is using a private module ("org.jboss.jts:main") which may be changed or removed in future versions without notice.
> [0m[33m21:40:12,195 WARN [org.jboss.as.dependency.private] (MSC service thread 1-1) JBAS018567: Deployment "deployment.restat-web-5.0.0.M4-SNAPSHOT.war" is using a private module ("org.jboss.jts:main") which may be changed or removed in future versions without notice.
> [0m[33m21:40:13,395 WARN [org.jboss.as.dependency.private] (MSC service thread 1-2) JBAS018567: Deployment "deployment.xtstest.war" is using a private module ("org.jboss.jts:main") which may be changed or removed in future versions without notice.
> [0m[33m21:40:13,396 WARN [org.jboss.as.dependency.private] (MSC service thread 1-2) JBAS018567: Deployment "deployment.xtstest.war" is using a private module ("org.jboss.ws.jaxws-client:main") which may be changed or removed in future versions without notice.
> [0m[0m21:40:13,434 INFO [org.jboss.weld.deployer] (MSC service thread 1-2) JBAS016002: Processing weld deployment xtstest.war
> [0m[0m21:40:13,479 INFO [org.hibernate.validator.internal.util.Version] (MSC service thread 1-2) HV000001: Hibernate Validator 5.0.1.Final
> [0m[0m21:40:13,731 INFO [org.jboss.weld.deployer] (MSC service thread 1-2) JBAS016005: Starting Services for CDI deployment: xtstest.war
> [0m[0m21:40:13,760 INFO [org.hornetq.core.server] (ServerService Thread Pool -- 58) HQ221020: Started Netty Acceptor version 3.6.2.Final-c0d783c 127.0.0.1:5445 for CORE protocol
> [0m[0m21:40:13,774 INFO [org.jboss.weld.Version] (MSC service thread 1-2) WELD-000900 2.0.2 (Final)
> [0m[0m21:40:13,790 INFO [org.jboss.ws.cxf.metadata] (MSC service thread 1-2) JBWS024061: Adding service endpoint metadata: id=XTS_Service_Test_Subordinate_Service_One
> address=http://localhost:8080/xtstest/xtssubordinateservicetest1
> implementor=org.jboss.jbossts.xts.servicetests.service.subordinate.XTSSubordinateServiceTestPortTypeImpl
> serviceName={http://jbossts.jboss.org/xts/servicetests/generated}XTSServi...
> portName={http://jbossts.jboss.org/xts/servicetests/generated}XTSServiceT...
> annotationWsdlLocation=WEB-INF/wsdl/xtsservicetests.wsdl
> wsdlLocationOverride=null
> mtomEnabled=false
> [0m[0m21:40:13,791 INFO [org.jboss.ws.cxf.metadata] (MSC service thread 1-2) JBWS024061: Adding service endpoint metadata: id=XTS_Service_Test_Service_One
> address=http://localhost:8080/xtstest/xtsservicetest1
> implementor=org.jboss.jbossts.xts.servicetests.service.XTSServiceTestPortTypeImpl
> serviceName={http://jbossts.jboss.org/xts/servicetests/generated}XTSServi...
> portName={http://jbossts.jboss.org/xts/servicetests/generated}XTSServiceT...
> annotationWsdlLocation=WEB-INF/wsdl/xtsservicetests.wsdl
> wsdlLocationOverride=null
> mtomEnabled=false
> [0m[0m21:40:13,791 INFO [org.jboss.ws.cxf.metadata] (MSC service thread 1-2) JBWS024061: Adding service endpoint metadata: id=XTS_Service_Test_Service_Two
> address=http://localhost:8080/xtstest/xtsservicetest2
> implementor=org.jboss.jbossts.xts.servicetests.service.XTSServiceTestPortTypeImpl
> serviceName={http://jbossts.jboss.org/xts/servicetests/generated}XTSServi...
> portName={http://jbossts.jboss.org/xts/servicetests/generated}XTSServiceT...
> annotationWsdlLocation=WEB-INF/wsdl/xtsservicetests.wsdl
> wsdlLocationOverride=null
> mtomEnabled=false
> [0m[0m21:40:13,799 INFO [org.jboss.ws.cxf.metadata] (MSC service thread 1-2) JBWS024061: Adding service endpoint metadata: id=XTS_Service_Test_Service_Three
> address=http://localhost:8080/xtstest/xtsservicetest3
> implementor=org.jboss.jbossts.xts.servicetests.service.XTSServiceTestPortTypeImpl
> serviceName={http://jbossts.jboss.org/xts/servicetests/generated}XTSServi...
> portName={http://jbossts.jboss.org/xts/servicetests/generated}XTSServiceT...
> annotationWsdlLocation=WEB-INF/wsdl/xtsservicetests.wsdl
> wsdlLocationOverride=null
> mtomEnabled=false
> [0m[0m21:40:13,856 INFO [org.apache.cxf.service.factory.ReflectionServiceFactoryBean] (MSC service thread 1-2) Creating Service {http://jbossts.jboss.org/xts/servicetests/generated}XTSServiceTestService from WSDL: WEB-INF/wsdl/xtsservicetests.wsdl
> [0m[0m21:40:13,886 INFO [org.apache.cxf.endpoint.ServerImpl] (MSC service thread 1-2) Setting the server's publish address to be http://localhost:8080/xtstest/xtssubordinateservicetest1
> [0m[0m21:40:13,904 INFO [org.jboss.ws.cxf.deployment] (MSC service thread 1-2) JBWS024074: WSDL published to: file:/home/hudson/workspace/narayana-codeCoverage/jboss-as/build/target/wildfly-8.0.0.Alpha4-SNAPSHOT/standalone/data/wsdl/xtstest.war/xtsservicetests.wsdl
> [0m[0m21:40:13,905 INFO [org.apache.cxf.service.factory.ReflectionServiceFactoryBean] (MSC service thread 1-2) Creating Service {http://jbossts.jboss.org/xts/servicetests/generated}XTSServiceTestService from WSDL: WEB-INF/wsdl/xtsservicetests.wsdl
> [0m[0m21:40:13,914 INFO [org.apache.cxf.endpoint.ServerImpl] (MSC service thread 1-2) Setting the server's publish address to be http://localhost:8080/xtstest/xtsservicetest1
> [0m[0m21:40:13,929 INFO [org.jboss.ws.cxf.deployment] (MSC service thread 1-2) JBWS024074: WSDL published to: file:/home/hudson/workspace/narayana-codeCoverage/jboss-as/build/target/wildfly-8.0.0.Alpha4-SNAPSHOT/standalone/data/wsdl/xtstest.war/xtsservicetests.wsdl
> [0m[0m21:40:13,929 INFO [org.apache.cxf.service.factory.ReflectionServiceFactoryBean] (MSC service thread 1-2) Creating Service {http://jbossts.jboss.org/xts/servicetests/generated}XTSServiceTestService from WSDL: WEB-INF/wsdl/xtsservicetests.wsdl
> [0m[0m21:40:13,933 INFO [org.apache.cxf.endpoint.ServerImpl] (MSC service thread 1-2) Setting the server's publish address to be http://localhost:8080/xtstest/xtsservicetest2
> [0m[0m21:40:13,947 INFO [org.jboss.ws.cxf.deployment] (MSC service thread 1-2) JBWS024074: WSDL published to: file:/home/hudson/workspace/narayana-codeCoverage/jboss-as/build/target/wildfly-8.0.0.Alpha4-SNAPSHOT/standalone/data/wsdl/xtstest.war/xtsservicetests.wsdl
> [0m[0m21:40:13,948 INFO [org.apache.cxf.service.factory.ReflectionServiceFactoryBean] (MSC service thread 1-2) Creating Service {http://jbossts.jboss.org/xts/servicetests/generated}XTSServiceTestService from WSDL: WEB-INF/wsdl/xtsservicetests.wsdl
> [0m[0m21:40:13,951 INFO [org.apache.cxf.endpoint.ServerImpl] (MSC service thread 1-2) Setting the server's publish address to be http://localhost:8080/xtstest/xtsservicetest3
> [0m[0m21:40:13,960 INFO [org.jboss.ws.cxf.deployment] (MSC service thread 1-2) JBWS024074: WSDL published to: file:/home/hudson/workspace/narayana-codeCoverage/jboss-as/build/target/wildfly-8.0.0.Alpha4-SNAPSHOT/standalone/data/wsdl/xtstest.war/xtsservicetests.wsdl
> [0m[0m21:40:13,990 INFO [org.jboss.as.webservices] (MSC service thread 1-1) JBAS015539: Starting service jboss.ws.endpoint."xtstest.war".XTS_Service_Test_Service_Two
> [0m[0m21:40:14,016 INFO [org.hornetq.core.server] (ServerService Thread Pool -- 58) HQ221020: Started Netty Acceptor version 3.6.2.Final-c0d783c org.hornetq.default.servlet:5445 for CORE protocol
> [0m[0m21:40:14,018 INFO [org.jboss.as.webservices] (MSC service thread 1-1) JBAS015539: Starting service jboss.ws.endpoint."xtstest.war".XTS_Service_Test_Subordinate_Service_One
> [0m[0m21:40:14,019 INFO [org.jboss.as.webservices] (MSC service thread 1-1) JBAS015539: Starting service jboss.ws.endpoint."xtstest.war".XTS_Service_Test_Service_One
> [0m[0m21:40:14,020 INFO [org.jboss.as.webservices] (MSC service thread 1-1) JBAS015539: Starting service jboss.ws.endpoint."xtstest.war".XTS_Service_Test_Service_Three
> [0m[0m21:40:14,027 INFO [org.hornetq.core.server] (ServerService Thread Pool -- 58) HQ221020: Started Netty Acceptor version 3.6.2.Final-c0d783c 127.0.0.1:5455 for CORE protocol
> [0m[0m21:40:14,031 INFO [org.hornetq.core.server] (ServerService Thread Pool -- 58) HQ221007: Server is now live
> [0m[0m21:40:14,032 INFO [org.hornetq.core.server] (ServerService Thread Pool -- 58) HQ221001: HornetQ Server version 2.3.1.Final (Wild Hornet, 123) [84bf850e-f0a5-11e2-b06f-99351d644b18]
> [0m[0m21:40:14,026 INFO [org.jboss.weld.deployer] (MSC service thread 1-1) JBAS016008: Starting weld service for deployment xtstest.war
> [0m[0m21:40:14,123 INFO [org.jboss.as.messaging] (ServerService Thread Pool -- 58) JBAS011601: Bound messaging object to jndi name java:/ConnectionFactory
> [0m[0m21:40:14,123 INFO [org.jboss.as.messaging] (ServerService Thread Pool -- 58) JBAS011601: Bound messaging object to jndi name java:jboss/DefaultJMSConnectionFactory
> [0m[0m21:40:14,137 INFO [org.wildfly.extension.undertow] (MSC service thread 1-2) JBAS018210: Register web context: /hornetq-server
> [0m[0m21:40:14,173 INFO [org.jboss.as.messaging] (ServerService Thread Pool -- 59) JBAS011601: Bound messaging object to jndi name java:jboss/exported/jms/RemoteConnectionFactory
> [0m[0m21:40:14,539 INFO [org.jboss.as.messaging] (ServerService Thread Pool -- 60) JBAS011601: Bound messaging object to jndi name java:jboss/exported/jms/ServletConnectionFactory
> [0m[0m21:40:14,591 INFO [org.jboss.as.connector.deployment] (MSC service thread 1-2) JBAS010406: Registered connection factory java:/JmsXA
> [0m[0m21:40:14,838 INFO [org.wildfly.extension.undertow] (MSC service thread 1-1) JBAS018210: Register web context: /rest-tx
> [0m[0m21:40:15,252 INFO [org.hornetq.ra] (MSC service thread 1-2) HornetQ resource adaptor started
> [0m[0m21:40:15,252 INFO [org.jboss.as.connector.services.resourceadapters.ResourceAdapterActivatorService$ResourceAdapterActivator] (MSC service thread 1-2) IJ020002: Deployed: file://RaActivatorhornetq-ra
> [0m[0m21:40:15,255 INFO [org.jboss.as.connector.deployment] (MSC service thread 1-2) JBAS010401: Bound JCA ConnectionFactory [java:/JmsXA]
> [0m[0m21:40:15,986 INFO [org.jboss.jbossts.xts.servicetests.bean.XTSServiceTestRunnerBean] (MSC service thread 1-2) Starting XTSServiceTestRunner
> [0m[0m21:40:16,090 INFO [org.jboss.jbossts.xts.servicetests.bean.XTSServiceTestRunnerBean] (MSC service thread 1-2) Started XTSServiceTestRunner
> [0m[0m21:40:16,114 INFO [org.wildfly.extension.undertow] (MSC service thread 1-2) JBAS018210: Register web context: /xtstest
> [0m[0m21:40:16,186 INFO [org.jboss.as.server] (Controller Boot Thread) JBAS018559: Deployed "xtstest.war" (runtime-name : "xtstest.war")
> [0m[0m21:40:16,189 INFO [org.jboss.as.server] (ServerService Thread Pool -- 31) JBAS018559: Deployed "restat-web-5.0.0.M4-SNAPSHOT.war" (runtime-name : "restat-web-5.0.0.M4-SNAPSHOT.war")
> [0m[0m21:40:16,406 INFO [org.jboss.as] (Controller Boot Thread) JBAS015961: Http management interface listening on http://127.0.0.1:9990/management
> [0m[0m21:40:16,407 INFO [org.jboss.as] (Controller Boot Thread) JBAS015951: Admin console listening on http://127.0.0.1:9990
> [0m[0m21:40:16,408 INFO [org.jboss.as] (Controller Boot Thread) JBAS015874: WildFly 8.0.0.Alpha4-SNAPSHOT "WildFly" started in 18788ms - Started 398 of 431 services (72 services are lazy, passive or on-demand)
> [0mJul 19, 2013 9:40:16 PM org.jboss.arquillian.container.test.impl.client.container.ClientContainerController start
> INFO: Automatic deploying of the managed deployment with name txbridge-outbound-tests-service for the container with name jboss
> [0m21:40:16,600 INFO [org.jboss.as.repository] (management-handler-thread - 4) JBAS014900: Content added at location /home/hudson/workspace/narayana-codeCoverage/jboss-as/build/target/wildfly-8.0.0.Alpha4-SNAPSHOT/standalone/data/content/fe/fd556cb2892f4597716dc0626a4711ee9b6b58/content
> [0m[0m21:40:16,604 INFO [org.jboss.as.server.deployment] (MSC service thread 1-2) JBAS015876: Starting deployment of "txbridge-outbound-tests-service.war" (runtime-name: "txbridge-outbound-tests-service.war")
> [0m[33m21:40:16,682 WARN [org.jboss.as.dependency.private] (MSC service thread 1-2) JBAS018567: Deployment "deployment.txbridge-outbound-tests-service.war" is using a private module ("org.jboss.jts:main") which may be changed or removed in future versions without notice.
> [0m[0m21:40:17,032 INFO [org.jboss.as.ejb3.deployment.processors.EjbJndiBindingsDeploymentUnitProcessor] (MSC service thread 1-1) JNDI bindings for session bean named TestRecoveryModule in deployment unit deployment "txbridge-outbound-tests-service.war" are as follows:
> java:global/txbridge-outbound-tests-service/TestRecoveryModule!org.jboss.jbossts.xts.recovery.participant.at.XTSATRecoveryModule
> java:app/txbridge-outbound-tests-service/TestRecoveryModule!org.jboss.jbossts.xts.recovery.participant.at.XTSATRecoveryModule
> java:module/TestRecoveryModule!org.jboss.jbossts.xts.recovery.participant.at.XTSATRecoveryModule
> java:global/txbridge-outbound-tests-service/TestRecoveryModule
> java:app/txbridge-outbound-tests-service/TestRecoveryModule
> java:module/TestRecoveryModule
> [0m[0m21:40:17,106 INFO [org.jboss.ws.cxf.metadata] (MSC service thread 1-1) JBWS024061: Adding service endpoint metadata: id=OutboundTestServiceServlet
> address=http://localhost:8080/txbridge-outbound-tests-service/TestServiceImpl
> implementor=org.jboss.jbossts.txbridge.tests.outbound.service.TestServiceImpl
> serviceName={http://client.outbound.tests.txbridge.jbossts.jboss.org/}Tes...
> portName={http://client.outbound.tests.txbridge.jbossts.jboss.org/}TestSe...
> annotationWsdlLocation=null
> wsdlLocationOverride=null
> mtomEnabled=false
> [0m[0m21:40:17,120 INFO [org.apache.cxf.service.factory.ReflectionServiceFactoryBean] (MSC service thread 1-1) Creating Service {http://client.outbound.tests.txbridge.jbossts.jboss.org/}TestServiceImplService from class org.jboss.jbossts.txbridge.tests.outbound.service.TestServiceImpl
> [0m[0m21:40:17,139 INFO [org.apache.cxf.endpoint.ServerImpl] (MSC service thread 1-1) Setting the server's publish address to be http://localhost:8080/txbridge-outbound-tests-service/TestServiceImpl
> [0m[0m21:40:17,171 INFO [org.jboss.ws.cxf.deployment] (MSC service thread 1-1) JBWS024074: WSDL published to: file:/home/hudson/workspace/narayana-codeCoverage/jboss-as/build/target/wildfly-8.0.0.Alpha4-SNAPSHOT/standalone/data/wsdl/txbridge-outbound-tests-service.war/TestServiceImplService.wsdl
> [0m[0m21:40:17,179 INFO [org.jboss.as.webservices] (MSC service thread 1-2) JBAS015539: Starting service jboss.ws.endpoint."txbridge-outbound-tests-service.war".OutboundTestServiceServlet
> [0m[0m21:40:17,232 INFO [org.jboss.jbossts.txbridge.tests.outbound.utility.TestRecoveryModule] (ServerService Thread Pool -- 24) TestRecoveryModule starting
> [0m[0m21:40:17,233 INFO [org.jboss.jbossts.txbridge.tests.outbound.utility.TestRecoveryModule] (ServerService Thread Pool -- 24) trying to get XTSATRecoverManager = org.jboss.jbossts.xts.recovery.participant.at.XTSATRecoveryManagerImple@19e8e83
> [0m[0m21:40:17,349 INFO [org.wildfly.extension.undertow] (MSC service thread 1-2) JBAS018210: Register web context: /txbridge-outbound-tests-service
> [0m[0m21:40:17,572 INFO [org.jboss.as.server] (management-handler-thread - 4) JBAS018559: Deployed "txbridge-outbound-tests-service.war" (runtime-name : "txbridge-outbound-tests-service.war")
> [0mJul 19, 2013 9:40:18 PM org.jboss.arquillian.container.test.impl.client.container.ClientContainerController start
> INFO: Automatic deploying of the managed deployment with name txbridge-outbound-tests-client for the container with name jboss
> [0m21:40:18,223 INFO [org.jboss.as.repository] (management-handler-thread - 4) JBAS014900: Content added at location /home/hudson/workspace/narayana-codeCoverage/jboss-as/build/target/wildfly-8.0.0.Alpha4-SNAPSHOT/standalone/data/content/eb/1e733309cb3d8a6a743c1a10ec41cccc6cad4d/content
> [0m[0m21:40:18,225 INFO [org.jboss.as.server.deployment] (MSC service thread 1-2) JBAS015876: Starting deployment of "txbridge-outbound-tests-client.war" (runtime-name: "txbridge-outbound-tests-client.war")
> [0m[33m21:40:18,250 WARN [org.jboss.as.dependency.private] (MSC service thread 1-2) JBAS018567: Deployment "deployment.txbridge-outbound-tests-client.war" is using a private module ("org.jboss.jts:main") which may be changed or removed in future versions without notice.
> [0m[0m21:40:18,280 INFO [org.wildfly.extension.undertow] (MSC service thread 1-1) JBAS018210: Register web context: /txbridge-outbound-tests-client
> [0minstalling: RULE org.jboss.byteman.contrib.dtest.Instrumentor_org.jboss.jbossts.txbridge.tests.outbound.utility.TestVolatileParticipant_error_remotetrace_entry
> CLASS org.jboss.jbossts.txbridge.tests.outbound.utility.TestVolatileParticipant
> METHOD error
> HELPER org.jboss.byteman.contrib.dtest.BytemanTestHelper
> AT ENTRY
> IF true
> DO setTriggering(false), debug("firing org.jboss.byteman.contrib.dtest.Instrumentor_org.jboss.jbossts.txbridge.tests.outbound.utility.TestVolatileParticipant_error_remotetrace_entry", $0), remoteTrace("org.jboss.jbossts.txbridge.tests.outbound.utility.TestVolatileParticipant", "error", $*)
> ENDRULE
> RULE org.jboss.byteman.contrib.dtest.Instrumentor_org.jboss.jbossts.txbridge.tests.outbound.utility.TestVolatileParticipant_rollback_remotetrace_entry
> CLASS org.jboss.jbossts.txbridge.tests.outbound.utility.TestVolatileParticipant
> METHOD rollback
> HELPER org.jboss.byteman.contrib.dtest.BytemanTestHelper
> AT ENTRY
> IF true
> DO setTriggering(false), debug("firing org.jboss.byteman.contrib.dtest.Instrumentor_org.jboss.jbossts.txbridge.tests.outbound.utility.TestVolatileParticipant_rollback_remotetrace_entry", $0), remoteTrace("org.jboss.jbossts.txbridge.tests.outbound.utility.TestVolatileParticipant", "rollback", $*)
> ENDRULE
> RULE org.jboss.byteman.contrib.dtest.Instrumentor_org.jboss.jbossts.txbridge.tests.outbound.utility.TestVolatileParticipant_prepare_remotetrace_entry
> CLASS org.jboss.jbossts.txbridge.tests.outbound.utility.TestVolatileParticipant
> METHOD prepare
> HELPER org.jboss.byteman.contrib.dtest.BytemanTestHelper
> AT ENTRY
> IF true
> DO setTriggering(false), debug("firing org.jboss.byteman.contrib.dtest.Instrumentor_org.jboss.jbossts.txbridge.tests.outbound.utility.TestVolatileParticipant_prepare_remotetrace_entry", $0), remoteTrace("org.jboss.jbossts.txbridge.tests.outbound.utility.TestVolatileParticipant", "prepare", $*)
> ENDRULE
> RULE org.jboss.byteman.contrib.dtest.Instrumentor_org.jboss.jbossts.txbridge.tests.outbound.utility.TestVolatileParticipant_commit_remotetrace_entry
> CLASS org.jboss.jbossts.txbridge.tests.outbound.utility.TestVolatileParticipant
> METHOD commit
> HELPER org.jboss.byteman.contrib.dtest.BytemanTestHelper
> AT ENTRY
> IF true
> DO setTriggering(false), debug("firing org.jboss.byteman.contrib.dtest.Instrumentor_org.jboss.jbossts.txbridge.tests.outbound.utility.TestVolatileParticipant_commit_remotetrace_entry", $0), remoteTrace("org.jboss.jbossts.txbridge.tests.outbound.utility.TestVolatileParticipant", "commit", $*)
> ENDRULE
> RULE org.jboss.byteman.contrib.dtest.Instrumentor_org.jboss.jbossts.txbridge.tests.outbound.utility.TestVolatileParticipant_unknown_remotetrace_entry
> CLASS org.jboss.jbossts.txbridge.tests.outbound.utility.TestVolatileParticipant
> METHOD unknown
> HELPER org.jboss.byteman.contrib.dtest.BytemanTestHelper
> AT ENTRY
> IF true
> DO setTriggering(false), debug("firing org.jboss.byteman.contrib.dtest.Instrumentor_org.jboss.jbossts.txbridge.tests.outbound.utility.TestVolatileParticipant_unknown_remotetrace_entry", $0), remoteTrace("org.jboss.jbossts.txbridge.tests.outbound.utility.TestVolatileParticipant", "unknown", $*)
> ENDRULE
> [0m21:40:18,408 INFO [org.jboss.as.server] (management-handler-thread - 4) JBAS018559: Deployed "txbridge-outbound-tests-client.war" (runtime-name : "txbridge-outbound-tests-client.war")
> [0m[0m21:40:18,423 INFO [stdout] (Thread-0) TransformListener() : handling connection on port 9091
> [0minstalling: RULE org.jboss.byteman.contrib.dtest.Instrumentor_org.jboss.jbossts.txbridge.tests.outbound.utility.TestDurableParticipant_error_remotetrace_entry
> CLASS org.jboss.jbossts.txbridge.tests.outbound.utility.TestDurableParticipant
> METHOD error
> HELPER org.jboss.byteman.contrib.dtest.BytemanTestHelper
> AT ENTRY
> IF true
> DO setTriggering(false), debug("firing org.jboss.byteman.contrib.dtest.Instrumentor_org.jboss.jbossts.txbridge.tests.outbound.utility.TestDurableParticipant_error_remotetrace_entry", $0), remoteTrace("org.jboss.jbossts.txbridge.tests.outbound.utility.TestDurableParticipant", "error", $*)
> ENDRULE
> RULE org.jboss.byteman.contrib.dtest.Instrumentor_org.jboss.jbossts.txbridge.tests.outbound.utility.TestDurableParticipant_rollback_remotetrace_entry
> CLASS org.jboss.jbossts.txbridge.tests.outbound.utility.TestDurableParticipant
> METHOD rollback
> HELPER org.jboss.byteman.contrib.dtest.BytemanTestHelper
> AT ENTRY
> IF true
> DO setTriggering(false), debug("firing org.jboss.byteman.contrib.dtest.Instrumentor_org.jboss.jbossts.txbridge.tests.outbound.utility.TestDurableParticipant_rollback_remotetrace_entry", $0), remoteTrace("org.jboss.jbossts.txbridge.tests.outbound.utility.TestDurableParticipant", "rollback", $*)
> ENDRULE
> RULE org.jboss.byteman.contrib.dtest.Instrumentor_org.jboss.jbossts.txbridge.tests.outbound.utility.TestDurableParticipant_prepare_remotetrace_entry
> CLASS org.jboss.jbossts.txbridge.tests.outbound.utility.TestDurableParticipant
> METHOD prepare
> HELPER org.jboss.byteman.contrib.dtest.BytemanTestHelper
> AT ENTRY
> IF true
> DO setTriggering(false), debug("firing org.jboss.byteman.contrib.dtest.Instrumentor_org.jboss.jbossts.txbridge.tests.outbound.utility.TestDurableParticipant_prepare_remotetrace_entry", $0), remoteTrace("org.jboss.jbossts.txbridge.tests.outbound.utility.TestDurableParticipant", "prepare", $*)
> ENDRULE
> RULE org.jboss.byteman.contrib.dtest.Instrumentor_org.jboss.jbossts.txbridge.tests.outbound.utility.TestDurableParticipant_commit_remotetrace_entry
> CLASS org.jboss.jbossts.txbridge.tests.outbound.utility.TestDurableParticipant
> METHOD commit
> HELPER org.jboss.byteman.contrib.dtest.BytemanTestHelper
> AT ENTRY
> IF true
> DO setTriggering(false), debug("firing org.jboss.byteman.contrib.dtest.Instrumentor_org.jboss.jbossts.txbridge.tests.outbound.utility.TestDurableParticipant_commit_remotetrace_entry", $0), remoteTrace("org.jboss.jbossts.txbridge.tests.outbound.utility.TestDurableParticipant", "commit", $*)
> ENDRULE
> RULE org.jboss.byteman.contrib.dtest.Instrumentor_org.jboss.jbossts.txbridge.tests.outbound.utility.TestDurableParticipant_unknown_remotetrace_entry
> CLASS org.jboss.jbossts.txbridge.tests.outbound.utility.TestDurableParticipant
> METHOD unknown
> HELPER org.jboss.byteman.contrib.dtest.BytemanTestHelper
> AT ENTRY
> IF true
> DO setTriggering(false), debug("firing org.jboss.byteman.contrib.dtest.Instrumentor_org.jboss.jbossts.txbridge.tests.outbound.utility.TestDurableParticipant_unknown_remotetrace_entry", $0), remoteTrace("org.jboss.jbossts.txbridge.tests.outbound.utility.TestDurableParticipant", "unknown", $*)
> ENDRULE
> installing: RULE org.jboss.byteman.contrib.dtest.Instrumentor_org.jboss.jbossts.txbridge.tests.outbound.service.TestServiceImpl_doNothing_injectionatENTRY
> CLASS org.jboss.jbossts.txbridge.tests.outbound.service.TestServiceImpl
> METHOD doNothing
> HELPER org.jboss.byteman.contrib.dtest.BytemanTestHelper
> AT ENTRY
> IF true
> DO $0.enlistVolatileParticipant(1), $0.enlistDurableParticipant(1)
> ENDRULE
> [0m21:40:18,602 INFO [stdout] (Thread-0) TransformListener() : handling connection on port 9091
> [0m[0m21:40:18,682 INFO [stdout] (Thread-0) TransformListener() : handling connection on port 9091
> [0m[0m21:40:18,728 INFO [stdout] (Thread-0) retransforming org.jboss.jbossts.txbridge.tests.outbound.service.TestServiceImpl
> [0m[0m21:40:18,834 INFO [stdout] (Thread-0) org.jboss.byteman.agent.Transformer : possible trigger for rule org.jboss.byteman.contrib.dtest.Instrumentor_org.jboss.jbossts.txbridge.tests.outbound.service.TestServiceImpl_doNothing_injectionatENTRY in class org.jboss.jbossts.txbridge.tests.outbound.service.TestServiceImpl
> [0m[0m21:40:18,861 INFO [stdout] (Thread-0) RuleTriggerMethodAdapter.injectTriggerPoint : inserting trigger into org.jboss.jbossts.txbridge.tests.outbound.service.TestServiceImpl.doNothing() void for rule org.jboss.byteman.contrib.dtest.Instrumentor_org.jboss.jbossts.txbridge.tests.outbound.service.TestServiceImpl_doNothing_injectionatENTRY
> [0minstalling: RULE org.jboss.byteman.contrib.dtest.Instrumentor_org.jboss.jbossts.txbridge.tests.outbound.client.TestClient_terminateTransaction_injectionatENTRY
> CLASS org.jboss.jbossts.txbridge.tests.outbound.client.TestClient
> METHOD terminateTransaction
> HELPER org.jboss.byteman.contrib.dtest.BytemanTestHelper
> AT ENTRY
> IF true
> DO $1 = true
> ENDRULE
> [0m21:40:18,896 INFO [stdout] (Thread-0) org.jboss.byteman.agent.Transformer : inserted trigger for org.jboss.byteman.contrib.dtest.Instrumentor_org.jboss.jbossts.txbridge.tests.outbound.service.TestServiceImpl_doNothing_injectionatENTRY in class org.jboss.jbossts.txbridge.tests.outbound.service.TestServiceImpl
> [0m[0m21:40:18,931 INFO [stdout] (Thread-0) TransformListener() : handling connection on port 9091
> [0m[0m21:40:18,952 INFO [stdout] (Thread-0) retransforming org.jboss.jbossts.txbridge.tests.outbound.client.TestClient
> [0m[0m21:40:18,955 INFO [stdout] (Thread-0) org.jboss.byteman.agent.Transformer : possible trigger for rule org.jboss.byteman.contrib.dtest.Instrumentor_org.jboss.jbossts.txbridge.tests.outbound.client.TestClient_terminateTransaction_injectionatENTRY in class org.jboss.jbossts.txbridge.tests.outbound.client.TestClient
> [0m[0m21:40:18,973 INFO [stdout] (Thread-0) RuleTriggerMethodAdapter.injectTriggerPoint : inserting trigger into org.jboss.jbossts.txbridge.tests.outbound.client.TestClient.terminateTransaction(boolean) void for rule org.jboss.byteman.contrib.dtest.Instrumentor_org.jboss.jbossts.txbridge.tests.outbound.client.TestClient_terminateTransaction_injectionatENTRY
> [0m[0m21:40:18,975 INFO [stdout] (Thread-0) org.jboss.byteman.agent.Transformer : inserted trigger for org.jboss.byteman.contrib.dtest.Instrumentor_org.jboss.jbossts.txbridge.tests.outbound.client.TestClient_terminateTransaction_injectionatENTRY in class org.jboss.jbossts.txbridge.tests.outbound.client.TestClient
> [0m[0m21:40:21,108 INFO [org.apache.cxf.service.factory.ReflectionServiceFactoryBean] (default task-1) Creating Service {http://client.outbound.tests.txbridge.jbossts.jboss.org/}TestServiceImplService from WSDL: http://localhost:8080/txbridge-outbound-tests-service/TestServiceImpl?wsdl
> [0m[33m21:40:21,135 WARNING [org.apache.cxf.service.factory.ReflectionServiceFactoryBean] (default task-1) No method was found for the WSDL operation {http://client.outbound.tests.txbridge.jbossts.jboss.org/}enlistDurableParticipant.
> [0m[33m21:40:21,136 WARNING [org.apache.cxf.service.factory.ReflectionServiceFactoryBean] (default task-1) No method was found for the WSDL operation {http://client.outbound.tests.txbridge.jbossts.jboss.org/}enlistVolatileParticipant.
> [0m[0m21:40:21,139 INFO [org.apache.cxf.service.factory.ReflectionServiceFactoryBean] (default task-1) Creating Service {http://client.outbound.tests.txbridge.jbossts.jboss.org/}TestServiceImplService from WSDL: http://localhost:8080/txbridge-outbound-tests-service/TestServiceImpl?wsdl
> [0m[33m21:40:21,141 WARNING [org.apache.cxf.service.factory.ReflectionServiceFactoryBean] (default task-1) No method was found for the WSDL operation {http://client.outbound.tests.txbridge.jbossts.jboss.org/}enlistDurableParticipant.
> [0m[33m21:40:21,142 WARNING [org.apache.cxf.service.factory.ReflectionServiceFactoryBean] (default task-1) No method was found for the WSDL operation {http://client.outbound.tests.txbridge.jbossts.jboss.org/}enlistVolatileParticipant.
> [0m[0m21:40:21,166 INFO [org.jboss.jbossts.txbridge.tests.outbound.client.TestClient] (default task-1) starting the transaction...
> [0m[0m21:40:21,167 INFO [org.jboss.jbossts.txbridge.tests.outbound.client.TestClient] (default task-1) transaction ID= org.jboss.tm.usertx.client.ServerVMClientUserTransaction@d7aa52
> [0m[0m21:40:21,168 INFO [org.jboss.jbossts.txbridge.tests.outbound.client.TestClient] (default task-1) calling business Web Services...
> [0m[0m21:40:21,444 INFO [stdout] (default task-3) Rule.execute called for org.jboss.byteman.contrib.dtest.Instrumentor_org.jboss.jbossts.txbridge.tests.outbound.service.TestServiceImpl_doNothing_injectionatENTRY_0
> [0m[0m21:40:21,454 INFO [stdout] (default task-3) HelperManager.install for helper class org.jboss.byteman.contrib.dtest.BytemanTestHelper
> [0m[0m21:40:21,455 INFO [stdout] (default task-3) calling activated() for helper class org.jboss.byteman.contrib.dtest.BytemanTestHelper
> [0m[0m21:40:21,456 INFO [stdout] (default task-3) Default helper activated
> [0m[0m21:40:21,456 INFO [stdout] (default task-3) calling installed(org.jboss.byteman.contrib.dtest.Instrumentor_org.jboss.jbossts.txbridge.tests.outbound.service.TestServiceImpl_doNothing_injectionatENTRY) for helper classorg.jboss.byteman.contrib.dtest.BytemanTestHelper
> [0m[0m21:40:21,456 INFO [stdout] (default task-3) Installed rule using default helper : org.jboss.byteman.contrib.dtest.Instrumentor_org.jboss.jbossts.txbridge.tests.outbound.service.TestServiceImpl_doNothing_injectionatENTRY
> [0m[0m21:40:21,466 INFO [stdout] (default task-3) org.jboss.byteman.contrib.dtest.Instrumentor_org.jboss.jbossts.txbridge.tests.outbound.service.TestServiceImpl_doNothing_injectionatENTRY execute()
> [0m[0m21:40:21,469 INFO [stdout] (default task-3) org.jboss.byteman.agent.Transformer : possible trigger for rule org.jboss.byteman.contrib.dtest.Instrumentor_org.jboss.jbossts.txbridge.tests.outbound.utility.TestVolatileParticipant_unknown_remotetrace_entry in class org.jboss.jbossts.txbridge.tests.outbound.utility.TestVolatileParticipant
> [0m[0m21:40:21,476 INFO [stdout] (default task-3) RuleTriggerMethodAdapter.injectTriggerPoint : inserting trigger into org.jboss.jbossts.txbridge.tests.outbound.utility.TestVolatileParticipant.unknown() void for rule org.jboss.byteman.contrib.dtest.Instrumentor_org.jboss.jbossts.txbridge.tests.outbound.utility.TestVolatileParticipant_unknown_remotetrace_entry
> [0m[0m21:40:21,477 INFO [stdout] (default task-3) org.jboss.byteman.agent.Transformer : inserted trigger for org.jboss.byteman.contrib.dtest.Instrumentor_org.jboss.jbossts.txbridge.tests.outbound.utility.TestVolatileParticipant_unknown_remotetrace_entry in class org.jboss.jbossts.txbridge.tests.outbound.utility.TestVolatileParticipant
> [0m[0m21:40:21,479 INFO [stdout] (default task-3) org.jboss.byteman.agent.Transformer : possible trigger for rule org.jboss.byteman.contrib.dtest.Instrumentor_org.jboss.jbossts.txbridge.tests.outbound.utility.TestVolatileParticipant_commit_remotetrace_entry in class org.jboss.jbossts.txbridge.tests.outbound.utility.TestVolatileParticipant
> [0m[0m21:40:21,480 INFO [stdout] (default task-3) RuleTriggerMethodAdapter.injectTriggerPoint : inserting trigger into org.jboss.jbossts.txbridge.tests.outbound.utility.TestVolatileParticipant.commit() void for rule org.jboss.byteman.contrib.dtest.Instrumentor_org.jboss.jbossts.txbridge.tests.outbound.utility.TestVolatileParticipant_commit_remotetrace_entry
> [0m[0m21:40:21,481 INFO [stdout] (default task-3) org.jboss.byteman.agent.Transformer : inserted trigger for org.jboss.byteman.contrib.dtest.Instrumentor_org.jboss.jbossts.txbridge.tests.outbound.utility.TestVolatileParticipant_commit_remotetrace_entry in class org.jboss.jbossts.txbridge.tests.outbound.utility.TestVolatileParticipant
> [0m[0m21:40:21,483 INFO [stdout] (default task-3) org.jboss.byteman.agent.Transformer : possible trigger for rule org.jboss.byteman.contrib.dtest.Instrumentor_org.jboss.jbossts.txbridge.tests.outbound.utility.TestVolatileParticipant_prepare_remotetrace_entry in class org.jboss.jbossts.txbridge.tests.outbound.utility.TestVolatileParticipant
> [0m[0m21:40:21,484 INFO [stdout] (default task-3) RuleTriggerMethodAdapter.injectTriggerPoint : inserting trigger into org.jboss.jbossts.txbridge.tests.outbound.utility.TestVolatileParticipant.prepare() com.arjuna.wst.Vote for rule org.jboss.byteman.contrib.dtest.Instrumentor_org.jboss.jbossts.txbridge.tests.outbound.utility.TestVolatileParticipant_prepare_remotetrace_entry
> [0m[0m21:40:21,486 INFO [stdout] (default task-3) org.jboss.byteman.agent.Transformer : inserted trigger for org.jboss.byteman.contrib.dtest.Instrumentor_org.jboss.jbossts.txbridge.tests.outbound.utility.TestVolatileParticipant_prepare_remotetrace_entry in class org.jboss.jbossts.txbridge.tests.outbound.utility.TestVolatileParticipant
> [0m[0m21:40:21,487 INFO [stdout] (default task-3) org.jboss.byteman.agent.Transformer : possible trigger for rule org.jboss.byteman.contrib.dtest.Instrumentor_org.jboss.jbossts.txbridge.tests.outbound.utility.TestVolatileParticipant_rollback_remotetrace_entry in class org.jboss.jbossts.txbridge.tests.outbound.utility.TestVolatileParticipant
> [0m[0m21:40:21,489 INFO [stdout] (default task-3) RuleTriggerMethodAdapter.injectTriggerPoint : inserting trigger into org.jboss.jbossts.txbridge.tests.outbound.utility.TestVolatileParticipant.rollback() void for rule org.jboss.byteman.contrib.dtest.Instrumentor_org.jboss.jbossts.txbridge.tests.outbound.utility.TestVolatileParticipant_rollback_remotetrace_entry
> [0m[0m21:40:21,490 INFO [stdout] (default task-3) org.jboss.byteman.agent.Transformer : inserted trigger for org.jboss.byteman.contrib.dtest.Instrumentor_org.jboss.jbossts.txbridge.tests.outbound.utility.TestVolatileParticipant_rollback_remotetrace_entry in class org.jboss.jbossts.txbridge.tests.outbound.utility.TestVolatileParticipant
> [0m[0m21:40:21,492 INFO [stdout] (default task-3) org.jboss.byteman.agent.Transformer : possible trigger for rule org.jboss.byteman.contrib.dtest.Instrumentor_org.jboss.jbossts.txbridge.tests.outbound.utility.TestVolatileParticipant_error_remotetrace_entry in class org.jboss.jbossts.txbridge.tests.outbound.utility.TestVolatileParticipant
> [0m[0m21:40:21,494 INFO [stdout] (default task-3) RuleTriggerMethodAdapter.injectTriggerPoint : inserting trigger into org.jboss.jbossts.txbridge.tests.outbound.utility.TestVolatileParticipant.error() void for rule org.jboss.byteman.contrib.dtest.Instrumentor_org.jboss.jbossts.txbridge.tests.outbound.utility.TestVolatileParticipant_error_remotetrace_entry
> [0m[0m21:40:21,495 INFO [stdout] (default task-3) org.jboss.byteman.agent.Transformer : inserted trigger for org.jboss.byteman.contrib.dtest.Instrumentor_org.jboss.jbossts.txbridge.tests.outbound.utility.TestVolatileParticipant_error_remotetrace_entry in class org.jboss.jbossts.txbridge.tests.outbound.utility.TestVolatileParticipant
> [0m[0m21:40:21,698 INFO [org.apache.cxf.service.factory.ReflectionServiceFactoryBean] (default task-3) Creating Service {http://docs.oasis-open.org/ws-tx/wscoor/2006/06}RegistrationService from WSDL: jar:file:/home/hudson/workspace/narayana-codeCoverage/jboss-as/build/target/wildfly-8.0.0.Alpha4-SNAPSHOT/modules/system/layers/base/org/jboss/xts/main/jbossxts-5.0.0.M4-SNAPSHOT.jar!/org/oasis_open/docs/ws_tx/wscoor/_2006/_06/wsdl/wscoor-registration-binding.wsdl
> [0m[0m21:40:22,056 INFO [stdout] (default task-3) org.jboss.byteman.agent.Transformer : possible trigger for rule org.jboss.byteman.contrib.dtest.Instrumentor_org.jboss.jbossts.txbridge.tests.outbound.utility.TestDurableParticipant_unknown_remotetrace_entry in class org.jboss.jbossts.txbridge.tests.outbound.utility.TestDurableParticipant
> [0m[0m21:40:22,057 INFO [stdout] (default task-3) RuleTriggerMethodAdapter.injectTriggerPoint : inserting trigger into org.jboss.jbossts.txbridge.tests.outbound.utility.TestDurableParticipant.unknown() void for rule org.jboss.byteman.contrib.dtest.Instrumentor_org.jboss.jbossts.txbridge.tests.outbound.utility.TestDurableParticipant_unknown_remotetrace_entry
> [0m[0m21:40:22,058 INFO [stdout] (default task-3) org.jboss.byteman.agent.Transformer : inserted trigger for org.jboss.byteman.contrib.dtest.Instrumentor_org.jboss.jbossts.txbridge.tests.outbound.utility.TestDurableParticipant_unknown_remotetrace_entry in class org.jboss.jbossts.txbridge.tests.outbound.utility.TestDurableParticipant
> [0m[0m21:40:22,061 INFO [stdout] (default task-3) org.jboss.byteman.agent.Transformer : possible trigger for rule org.jboss.byteman.contrib.dtest.Instrumentor_org.jboss.jbossts.txbridge.tests.outbound.utility.TestDurableParticipant_commit_remotetrace_entry in class org.jboss.jbossts.txbridge.tests.outbound.utility.TestDurableParticipant
> [0m[0m21:40:22,062 INFO [stdout] (default task-3) RuleTriggerMethodAdapter.injectTriggerPoint : inserting trigger into org.jboss.jbossts.txbridge.tests.outbound.utility.TestDurableParticipant.commit() void for rule org.jboss.byteman.contrib.dtest.Instrumentor_org.jboss.jbossts.txbridge.tests.outbound.utility.TestDurableParticipant_commit_remotetrace_entry
> [0m[0m21:40:22,063 INFO [stdout] (default task-3) org.jboss.byteman.agent.Transformer : inserted trigger for org.jboss.byteman.contrib.dtest.Instrumentor_org.jboss.jbossts.txbridge.tests.outbound.utility.TestDurableParticipant_commit_remotetrace_entry in class org.jboss.jbossts.txbridge.tests.outbound.utility.TestDurableParticipant
> [0m[0m21:40:22,065 INFO [stdout] (default task-3) org.jboss.byteman.agent.Transformer : possible trigger for rule org.jboss.byteman.contrib.dtest.Instrumentor_org.jboss.jbossts.txbridge.tests.outbound.utility.TestDurableParticipant_prepare_remotetrace_entry in class org.jboss.jbossts.txbridge.tests.outbound.utility.TestDurableParticipant
> [0m[0m21:40:22,066 INFO [stdout] (default task-3) RuleTriggerMethodAdapter.injectTriggerPoint : inserting trigger into org.jboss.jbossts.txbridge.tests.outbound.utility.TestDurableParticipant.prepare() com.arjuna.wst.Vote for rule org.jboss.byteman.contrib.dtest.Instrumentor_org.jboss.jbossts.txbridge.tests.outbound.utility.TestDurableParticipant_prepare_remotetrace_entry
> [0m[0m21:40:22,081 INFO [stdout] (default task-3) org.jboss.byteman.agent.Transformer : inserted trigger for org.jboss.byteman.contrib.dtest.Instrumentor_org.jboss.jbossts.txbridge.tests.outbound.utility.TestDurableParticipant_prepare_remotetrace_entry in class org.jboss.jbossts.txbridge.tests.outbound.utility.TestDurableParticipant
> [0m[0m21:40:22,105 INFO [stdout] (default task-3) org.jboss.byteman.agent.Transformer : possible trigger for rule org.jboss.byteman.contrib.dtest.Instrumentor_org.jboss.jbossts.txbridge.tests.outbound.utility.TestDurableParticipant_rollback_remotetrace_entry in class org.jboss.jbossts.txbridge.tests.outbound.utility.TestDurableParticipant
> [0m[0m21:40:22,107 INFO [stdout] (default task-3) RuleTriggerMethodAdapter.injectTriggerPoint : inserting trigger into org.jboss.jbossts.txbridge.tests.outbound.utility.TestDurableParticipant.rollback() void for rule org.jboss.byteman.contrib.dtest.Instrumentor_org.jboss.jbossts.txbridge.tests.outbound.utility.TestDurableParticipant_rollback_remotetrace_entry
> [0m[0m21:40:22,108 INFO [stdout] (default task-3) org.jboss.byteman.agent.Transformer : inserted trigger for org.jboss.byteman.contrib.dtest.Instrumentor_org.jboss.jbossts.txbridge.tests.outbound.utility.TestDurableParticipant_rollback_remotetrace_entry in class org.jboss.jbossts.txbridge.tests.outbound.utility.TestDurableParticipant
> [0m[0m21:40:22,120 INFO [stdout] (default task-3) org.jboss.byteman.agent.Transformer : possible trigger for rule org.jboss.byteman.contrib.dtest.Instrumentor_org.jboss.jbossts.txbridge.tests.outbound.utility.TestDurableParticipant_error_remotetrace_entry in class org.jboss.jbossts.txbridge.tests.outbound.utility.TestDurableParticipant
> [0m[0m21:40:22,122 INFO [stdout] (default task-3) RuleTriggerMethodAdapter.injectTriggerPoint : inserting trigger into org.jboss.jbossts.txbridge.tests.outbound.utility.TestDurableParticipant.error() void for rule org.jboss.byteman.contrib.dtest.Instrumentor_org.jboss.jbossts.txbridge.tests.outbound.utility.TestDurableParticipant_error_remotetrace_entry
> [0m[0m21:40:22,123 INFO [stdout] (default task-3) org.jboss.byteman.agent.Transformer : inserted trigger for org.jboss.byteman.contrib.dtest.Instrumentor_org.jboss.jbossts.txbridge.tests.outbound.utility.TestDurableParticipant_error_remotetrace_entry in class org.jboss.jbossts.txbridge.tests.outbound.utility.TestDurableParticipant
> [0m[0m21:40:22,182 INFO [org.apache.cxf.service.factory.ReflectionServiceFactoryBean] (default task-3) Creating Service {http://docs.oasis-open.org/ws-tx/wscoor/2006/06}RegistrationService from WSDL: jar:file:/home/hudson/workspace/narayana-codeCoverage/jboss-as/build/target/wildfly-8.0.0.Alpha4-SNAPSHOT/modules/system/layers/base/org/jboss/xts/main/jbossxts-5.0.0.M4-SNAPSHOT.jar!/org/oasis_open/docs/ws_tx/wscoor/_2006/_06/wsdl/wscoor-registration-binding.wsdl
> [0m[0m21:40:23,278 INFO [org.jboss.jbossts.txbridge.tests.outbound.client.TestClient] (default task-1) terminating the transaction...
> [0m[0m21:40:23,279 INFO [stdout] (default task-1) Rule.execute called for org.jboss.byteman.contrib.dtest.Instrumentor_org.jboss.jbossts.txbridge.tests.outbound.client.TestClient_terminateTransaction_injectionatENTRY_1
> [0m[0m21:40:23,281 INFO [stdout] (default task-1) HelperManager.install for helper class org.jboss.byteman.contrib.dtest.BytemanTestHelper
> [0m[0m21:40:23,281 INFO [stdout] (default task-1) calling installed(org.jboss.byteman.contrib.dtest.Instrumentor_org.jboss.jbossts.txbridge.tests.outbound.client.TestClient_terminateTransaction_injectionatENTRY) for helper classorg.jboss.byteman.contrib.dtest.BytemanTestHelper
> [0m[0m21:40:23,282 INFO [stdout] (default task-1) Installed rule using default helper : org.jboss.byteman.contrib.dtest.Instrumentor_org.jboss.jbossts.txbridge.tests.outbound.client.TestClient_terminateTransaction_injectionatENTRY
> [0m[0m21:40:23,283 INFO [stdout] (default task-1) org.jboss.byteman.contrib.dtest.Instrumentor_org.jboss.jbossts.txbridge.tests.outbound.client.TestClient_terminateTransaction_injectionatENTRY execute()
> [0m[0m21:40:23,284 INFO [org.jboss.jbossts.txbridge.tests.outbound.client.TestClient] (default task-1) shouldCommit=true
> [0m[0m21:40:23,372 INFO [org.apache.cxf.service.factory.ReflectionServiceFactoryBean] (default task-1) Creating Service {http://docs.oasis-open.org/ws-tx/wsat/2006/06}ParticipantService from WSDL: jar:file:/home/hudson/workspace/narayana-codeCoverage/jboss-as/build/target/wildfly-8.0.0.Alpha4-SNAPSHOT/modules/system/layers/base/org/jboss/xts/main/jbossxts-5.0.0.M4-SNAPSHOT.jar!/org/oasis_open/docs/ws_tx/wsat/_2006/_06/wsdl/wsat-participant-binding.wsdl
> [0m[0m21:40:23,952 INFO [stdout] (TaskWorker-1) Rule.execute called for org.jboss.byteman.contrib.dtest.Instrumentor_org.jboss.jbossts.txbridge.tests.outbound.utility.TestVolatileParticipant_prepare_remotetrace_entry_4
> [0m[0m21:40:23,955 INFO [stdout] (TaskWorker-1) HelperManager.install for helper class org.jboss.byteman.contrib.dtest.BytemanTestHelper
> [0m[0m21:40:23,955 INFO [stdout] (TaskWorker-1) calling installed(org.jboss.byteman.contrib.dtest.Instrumentor_org.jboss.jbossts.txbridge.tests.outbound.utility.TestVolatileParticipant_prepare_remotetrace_entry) for helper classorg.jboss.byteman.contrib.dtest.BytemanTestHelper
> [0m[0m21:40:23,956 INFO [stdout] (TaskWorker-1) Installed rule using default helper : org.jboss.byteman.contrib.dtest.Instrumentor_org.jboss.jbossts.txbridge.tests.outbound.utility.TestVolatileParticipant_prepare_remotetrace_entry
> [0m[0m21:40:23,957 INFO [stdout] (TaskWorker-1) org.jboss.byteman.contrib.dtest.Instrumentor_org.jboss.jbossts.txbridge.tests.outbound.utility.TestVolatileParticipant_prepare_remotetrace_entry execute()
> [0m[0m21:40:23,957 INFO [stdout] (TaskWorker-1) rule.debug{org.jboss.byteman.contrib.dtest.Instrumentor_org.jboss.jbossts.txbridge.tests.outbound.utility.TestVolatileParticipant_prepare_remotetrace_entry} : firing org.jboss.byteman.contrib.dtest.Instrumentor_org.jboss.jbossts.txbridge.tests.outbound.utility.TestVolatileParticipant_prepare_remotetrace_entry org.jboss.jbossts.txbridge.tests.outbound.utility.TestVolatileParticipant@1e9901c
> [0m[0m21:40:24,233 INFO [org.apache.cxf.service.factory.ReflectionServiceFactoryBean] (TaskWorker-1) Creating Service {http://docs.oasis-open.org/ws-tx/wsat/2006/06}CoordinatorService from WSDL: jar:file:/home/hudson/workspace/narayana-codeCoverage/jboss-as/build/target/wildfly-8.0.0.Alpha4-SNAPSHOT/modules/system/layers/base/org/jboss/xts/main/jbossxts-5.0.0.M4-SNAPSHOT.jar!/org/oasis_open/docs/ws_tx/wsat/_2006/_06/wsdl/wsat-coordinator-binding.wsdl
> [0m[0m21:40:24,456 INFO [org.apache.cxf.service.factory.ReflectionServiceFactoryBean] (default task-1) Creating Service {http://docs.oasis-open.org/ws-tx/wsat/2006/06}ParticipantService from WSDL: jar:file:/home/hudson/workspace/narayana-codeCoverage/jboss-as/build/target/wildfly-8.0.0.Alpha4-SNAPSHOT/modules/system/layers/base/org/jboss/xts/main/jbossxts-5.0.0.M4-SNAPSHOT.jar!/org/oasis_open/docs/ws_tx/wsat/_2006/_06/wsdl/wsat-participant-binding.wsdl
> [0m[0m21:40:24,481 INFO [stdout] (TaskWorker-2) Rule.execute called for org.jboss.byteman.contrib.dtest.Instrumentor_org.jboss.jbossts.txbridge.tests.outbound.utility.TestDurableParticipant_prepare_remotetrace_entry_9
> [0m[0m21:40:24,483 INFO [stdout] (TaskWorker-2) HelperManager.install for helper class org.jboss.byteman.contrib.dtest.BytemanTestHelper
> [0m[0m21:40:24,483 INFO [stdout] (TaskWorker-2) calling installed(org.jboss.byteman.contrib.dtest.Instrumentor_org.jboss.jbossts.txbridge.tests.outbound.utility.TestDurableParticipant_prepare_remotetrace_entry) for helper classorg.jboss.byteman.contrib.dtest.BytemanTestHelper
> [0m[0m21:40:24,484 INFO [stdout] (TaskWorker-2) Installed rule using default helper : org.jboss.byteman.contrib.dtest.Instrumentor_org.jboss.jbossts.txbridge.tests.outbound.utility.TestDurableParticipant_prepare_remotetrace_entry
> [0m[0m21:40:24,485 INFO [stdout] (TaskWorker-2) org.jboss.byteman.contrib.dtest.Instrumentor_org.jboss.jbossts.txbridge.tests.outbound.utility.TestDurableParticipant_prepare_remotetrace_entry execute()
> [0m[0m21:40:24,486 INFO [stdout] (TaskWorker-2) rule.debug{org.jboss.byteman.contrib.dtest.Instrumentor_org.jboss.jbossts.txbridge.tests.outbound.utility.TestDurableParticipant_prepare_remotetrace_entry} : firing org.jboss.byteman.contrib.dtest.Instrumentor_org.jboss.jbossts.txbridge.tests.outbound.utility.TestDurableParticipant_prepare_remotetrace_entry org.jboss.jbossts.txbridge.tests.outbound.utility.TestDurableParticipant@1b144d6
> [0m[0m21:40:24,716 INFO [org.apache.cxf.service.factory.ReflectionServiceFactoryBean] (TaskWorker-2) Creating Service {http://docs.oasis-open.org/ws-tx/wsat/2006/06}CoordinatorService from WSDL: jar:file:/home/hudson/workspace/narayana-codeCoverage/jboss-as/build/target/wildfly-8.0.0.Alpha4-SNAPSHOT/modules/system/layers/base/org/jboss/xts/main/jbossxts-5.0.0.M4-SNAPSHOT.jar!/org/oasis_open/docs/ws_tx/wsat/_2006/_06/wsdl/wsat-coordinator-binding.wsdl
> [0m[0m21:40:24,858 INFO [org.apache.cxf.service.factory.ReflectionServiceFactoryBean] (default task-1) Creating Service {http://docs.oasis-open.org/ws-tx/wsat/2006/06}ParticipantService from WSDL: jar:file:/home/hudson/workspace/narayana-codeCoverage/jboss-as/build/target/wildfly-8.0.0.Alpha4-SNAPSHOT/modules/system/layers/base/org/jboss/xts/main/jbossxts-5.0.0.M4-SNAPSHOT.jar!/org/oasis_open/docs/ws_tx/wsat/_2006/_06/wsdl/wsat-participant-binding.wsdl
> [0m[0m21:40:24,884 INFO [stdout] (TaskWorker-1) Rule.execute called for org.jboss.byteman.contrib.dtest.Instrumentor_org.jboss.jbossts.txbridge.tests.outbound.utility.TestDurableParticipant_commit_remotetrace_entry_8
> [0m[0m21:40:24,886 INFO [stdout] (TaskWorker-1) HelperManager.install for helper class org.jboss.byteman.contrib.dtest.BytemanTestHelper
> [0m[0m21:40:24,886 INFO [stdout] (TaskWorker-1) calling installed(org.jboss.byteman.contrib.dtest.Instrumentor_org.jboss.jbossts.txbridge.tests.outbound.utility.TestDurableParticipant_commit_remotetrace_entry) for helper classorg.jboss.byteman.contrib.dtest.BytemanTestHelper
> [0m[0m21:40:24,887 INFO [stdout] (TaskWorker-1) Installed rule using default helper : org.jboss.byteman.contrib.dtest.Instrumentor_org.jboss.jbossts.txbridge.tests.outbound.utility.TestDurableParticipant_commit_remotetrace_entry
> [0m[0m21:40:24,888 INFO [stdout] (TaskWorker-1) org.jboss.byteman.contrib.dtest.Instrumentor_org.jboss.jbossts.txbridge.tests.outbound.utility.TestDurableParticipant_commit_remotetrace_entry execute()
> [0m[0m21:40:24,889 INFO [stdout] (TaskWorker-1) rule.debug{org.jboss.byteman.contrib.dtest.Instrumentor_org.jboss.jbossts.txbridge.tests.outbound.utility.TestDurableParticipant_commit_remotetrace_entry} : firing org.jboss.byteman.contrib.dtest.Instrumentor_org.jboss.jbossts.txbridge.tests.outbound.utility.TestDurableParticipant_commit_remotetrace_entry org.jboss.jbossts.txbridge.tests.outbound.utility.TestDurableParticipant@1b144d6
> [0m[0m21:40:24,927 INFO [org.apache.cxf.service.factory.ReflectionServiceFactoryBean] (TaskWorker-1) Creating Service {http://docs.oasis-open.org/ws-tx/wsat/2006/06}CoordinatorService from WSDL: jar:file:/home/hudson/workspace/narayana-codeCoverage/jboss-as/build/target/wildfly-8.0.0.Alpha4-SNAPSHOT/modules/system/layers/base/org/jboss/xts/main/jbossxts-5.0.0.M4-SNAPSHOT.jar!/org/oasis_open/docs/ws_tx/wsat/_2006/_06/wsdl/wsat-coordinator-binding.wsdl
> [0m[0m21:40:24,989 INFO [org.apache.cxf.service.factory.ReflectionServiceFactoryBean] (default task-1) Creating Service {http://docs.oasis-open.org/ws-tx/wsat/2006/06}ParticipantService from WSDL: jar:file:/home/hudson/workspace/narayana-codeCoverage/jboss-as/build/target/wildfly-8.0.0.Alpha4-SNAPSHOT/modules/system/layers/base/org/jboss/xts/main/jbossxts-5.0.0.M4-SNAPSHOT.jar!/org/oasis_open/docs/ws_tx/wsat/_2006/_06/wsdl/wsat-participant-binding.wsdl
> [0m[0m21:40:25,012 INFO [stdout] (TaskWorker-2) Rule.execute called for org.jboss.byteman.contrib.dtest.Instrumentor_org.jboss.jbossts.txbridge.tests.outbound.utility.TestVolatileParticipant_commit_remotetrace_entry_3
> [0m[0m21:40:25,022 INFO [stdout] (TaskWorker-2) HelperManager.install for helper class org.jboss.byteman.contrib.dtest.BytemanTestHelper
> [0m[0m21:40:25,022 INFO [stdout] (TaskWorker-2) calling installed(org.jboss.byteman.contrib.dtest.Instrumentor_org.jboss.jbossts.txbridge.tests.outbound.utility.TestVolatileParticipant_commit_remotetrace_entry) for helper classorg.jboss.byteman.contrib.dtest.BytemanTestHelper
> [0m[0m21:40:25,022 INFO [stdout] (TaskWorker-2) Installed rule using default helper : org.jboss.byteman.contrib.dtest.Instrumentor_org.jboss.jbossts.txbridge.tests.outbound.utility.TestVolatileParticipant_commit_remotetrace_entry
> [0m[0m21:40:25,023 INFO [stdout] (TaskWorker-2) org.jboss.byteman.contrib.dtest.Instrumentor_org.jboss.jbossts.txbridge.tests.outbound.utility.TestVolatileParticipant_commit_remotetrace_entry execute()
> [0m[0m21:40:25,024 INFO [stdout] (TaskWorker-2) rule.debug{org.jboss.byteman.contrib.dtest.Instrumentor_org.jboss.jbossts.txbridge.tests.outbound.utility.TestVolatileParticipant_commit_remotetrace_entry} : firing org.jboss.byteman.contrib.dtest.Instrumentor_org.jboss.jbossts.txbridge.tests.outbound.utility.TestVolatileParticipant_commit_remotetrace_entry org.jboss.jbossts.txbridge.tests.outbound.utility.TestVolatileParticipant@1e9901c
> [0m[0m21:40:25,053 INFO [org.apache.cxf.service.factory.ReflectionServiceFactoryBean] (TaskWorker-2) Creating Service {http://docs.oasis-open.org/ws-tx/wsat/2006/06}CoordinatorService from WSDL: jar:file:/home/hudson/workspace/narayana-codeCoverage/jboss-as/build/target/wildfly-8.0.0.Alpha4-SNAPSHOT/modules/system/layers/base/org/jboss/xts/main/jbossxts-5.0.0.M4-SNAPSHOT.jar!/org/oasis_open/docs/ws_tx/wsat/_2006/_06/wsdl/wsat-coordinator-binding.wsdl
> [0mJul 19, 2013 9:40:25 PM org.jboss.arquillian.container.test.impl.client.container.ClientContainerController stop
> INFO: Automatic undeploying of the managed deployment with name txbridge-outbound-tests-service from the container with name jboss
> [0m21:40:25,109 INFO [stdout] (Thread-0) TransformListener() : handling connection on port 9091
> [0m[0m21:40:25,163 INFO [stdout] (Thread-0) retransforming org.jboss.jbossts.txbridge.tests.outbound.service.TestServiceImpl
> [0m[0m21:40:25,167 INFO [stdout] (Thread-0) retransforming org.jboss.jbossts.txbridge.tests.outbound.utility.TestDurableParticipant
> [0m[0m21:40:25,168 INFO [stdout] (Thread-0) retransforming org.jboss.jbossts.txbridge.tests.outbound.client.TestClient
> [0m[0m21:40:25,168 INFO [stdout] (Thread-0) retransforming org.jboss.jbossts.txbridge.tests.outbound.utility.TestVolatileParticipant
> [0m[0m21:40:25,615 INFO [stdout] (Thread-0) HelperManager.uninstall for helper class org.jboss.byteman.contrib.dtest.BytemanTestHelper
> [0m[0m21:40:25,615 INFO [stdout] (Thread-0) calling uninstalled(org.jboss.byteman.contrib.dtest.Instrumentor_org.jboss.jbossts.txbridge.tests.outbound.utility.TestVolatileParticipant_prepare_remotetrace_entry) for helper class org.jboss.byteman.contrib.dtest.BytemanTestHelper
> [0m[0m21:40:25,616 INFO [stdout] (Thread-0) Uninstalled rule using default helper : org.jboss.byteman.contrib.dtest.Instrumentor_org.jboss.jbossts.txbridge.tests.outbound.utility.TestVolatileParticipant_prepare_remotetrace_entry
> [0m[0m21:40:25,616 INFO [stdout] (Thread-0) HelperManager.uninstall for helper class org.jboss.byteman.contrib.dtest.BytemanTestHelper
> [0m[0m21:40:25,616 INFO [stdout] (Thread-0) calling uninstalled(org.jboss.byteman.contrib.dtest.Instrumentor_org.jboss.jbossts.txbridge.tests.outbound.utility.TestVolatileParticipant_commit_remotetrace_entry) for helper class org.jboss.byteman.contrib.dtest.BytemanTestHelper
> [0m[0m21:40:25,617 INFO [stdout] (Thread-0) Uninstalled rule using default helper : org.jboss.byteman.contrib.dtest.Instrumentor_org.jboss.jbossts.txbridge.tests.outbound.utility.TestVolatileParticipant_commit_remotetrace_entry
> [0m[0m21:40:25,617 INFO [stdout] (Thread-0) HelperManager.uninstall for helper class org.jboss.byteman.contrib.dtest.BytemanTestHelper
> [0m[0m21:40:25,618 INFO [stdout] (Thread-0) calling uninstalled(org.jboss.byteman.contrib.dtest.Instrumentor_org.jboss.jbossts.txbridge.tests.outbound.utility.TestDurableParticipant_prepare_remotetrace_entry) for helper class org.jboss.byteman.contrib.dtest.BytemanTestHelper
> [0m[0m21:40:25,618 INFO [stdout] (Thread-0) Uninstalled rule using default helper : org.jboss.byteman.contrib.dtest.Instrumentor_org.jboss.jbossts.txbridge.tests.outbound.utility.TestDurableParticipant_prepare_remotetrace_entry
> [0m[0m21:40:25,618 INFO [stdout] (Thread-0) HelperManager.uninstall for helper class org.jboss.byteman.contrib.dtest.BytemanTestHelper
> [0m[0m21:40:25,619 INFO [stdout] (Thread-0) calling uninstalled(org.jboss.byteman.contrib.dtest.Instrumentor_org.jboss.jbossts.txbridge.tests.outbound.utility.TestDurableParticipant_commit_remotetrace_entry) for helper class org.jboss.byteman.contrib.dtest.BytemanTestHelper
> [0m[0m21:40:25,619 INFO [stdout] (Thread-0) Uninstalled rule using default helper : org.jboss.byteman.contrib.dtest.Instrumentor_org.jboss.jbossts.txbridge.tests.outbound.utility.TestDurableParticipant_commit_remotetrace_entry
> [0m[0m21:40:25,619 INFO [stdout] (Thread-0) HelperManager.uninstall for helper class org.jboss.byteman.contrib.dtest.BytemanTestHelper
> [0m[0m21:40:25,620 INFO [stdout] (Thread-0) calling uninstalled(org.jboss.byteman.contrib.dtest.Instrumentor_org.jboss.jbossts.txbridge.tests.outbound.service.TestServiceImpl_doNothing_injectionatENTRY) for helper class org.jboss.byteman.contrib.dtest.BytemanTestHelper
> [0m[0m21:40:25,620 INFO [stdout] (Thread-0) Uninstalled rule using default helper : org.jboss.byteman.contrib.dtest.Instrumentor_org.jboss.jbossts.txbridge.tests.outbound.service.TestServiceImpl_doNothing_injectionatENTRY
> [0m[0m21:40:25,621 INFO [stdout] (Thread-0) HelperManager.uninstall for helper class org.jboss.byteman.contrib.dtest.BytemanTestHelper
> [0m[0m21:40:25,621 INFO [stdout] (Thread-0) calling uninstalled(org.jboss.byteman.contrib.dtest.Instrumentor_org.jboss.jbossts.txbridge.tests.outbound.client.TestClient_terminateTransaction_injectionatENTRY) for helper class org.jboss.byteman.contrib.dtest.BytemanTestHelper
> [0m[0m21:40:25,621 INFO [stdout] (Thread-0) Uninstalled rule using default helper : org.jboss.byteman.contrib.dtest.Instrumentor_org.jboss.jbossts.txbridge.tests.outbound.client.TestClient_terminateTransaction_injectionatENTRY
> [0m[0m21:40:25,622 INFO [stdout] (Thread-0) calling deactivated() for helper classorg.jboss.byteman.contrib.dtest.BytemanTestHelper
> [0m[0m21:40:25,622 INFO [stdout] (Thread-0) Default helper deactivated
> [0m[0m21:40:25,665 INFO [org.wildfly.extension.undertow] (MSC service thread 1-1) JBAS018224: Unregister web context: /txbridge-outbound-tests-service
> [0m[0m21:40:25,741 INFO [org.jboss.jbossts.txbridge.tests.outbound.utility.TestRecoveryModule] (ServerService Thread Pool -- 20) TestRecoveryModule stopping
> [0m[0m21:40:25,742 INFO [org.jboss.as.webservices] (MSC service thread 1-1) JBAS015540: Stopping service jboss.ws.endpoint."txbridge-outbound-tests-service.war".OutboundTestServiceServlet
> [0m[31m21:40:25,745 ERROR [org.jboss.ws.common.deployment] (MSC service thread 1-1) JBWS022102: Cannot stop endpoint in state STOPPED: jboss.ws:context=txbridge-outbound-tests-service,endpoint=OutboundTestServiceServlet
> [0m[0m21:40:25,784 INFO [org.jboss.as.server.deployment] (MSC service thread 1-2) JBAS015877: Stopped deployment txbridge-outbound-tests-service.war (runtime-name: txbridge-outbound-tests-service.war) in 125ms
> [0mJul 19, 2013 9:40:25 PM org.jboss.arquillian.container.test.impl.client.container.ClientContainerController stop
> INFO: Automatic undeploying of the managed deployment with name txbridge-outbound-tests-client from the container with name jboss
> [0m21:40:25,909 INFO [org.jboss.as.repository] (management-handler-thread - 2) JBAS014901: Content removed from location /home/hudson/workspace/narayana-codeCoverage/jboss-as/build/target/wildfly-8.0.0.Alpha4-SNAPSHOT/standalone/data/content/fe/fd556cb2892f4597716dc0626a4711ee9b6b58/content
> [0m[0m21:40:25,910 INFO [org.jboss.as.server] (management-handler-thread - 2) JBAS018558: Undeployed "txbridge-outbound-tests-service.war" (runtime-name: "txbridge-outbound-tests-service.war")
> [0m[0m21:40:25,922 INFO [org.wildfly.extension.undertow] (MSC service thread 1-1) JBAS018224: Unregister web context: /txbridge-outbound-tests-client
> [0m[0m21:40:25,931 INFO [org.jboss.as.server.deployment] (MSC service thread 1-2) JBAS015877: Stopped deployment txbridge-outbound-tests-client.war (runtime-name: txbridge-outbound-tests-client.war) in 10ms
> [0mJul 19, 2013 9:40:26 PM org.jboss.arquillian.container.test.impl.client.container.ClientContainerController stop
> INFO: Manual stopping of a server instance
> [0m21:40:26,044 INFO [org.jboss.as.repository] (management-handler-thread - 2) JBAS014901: Content removed from location /home/hudson/workspace/narayana-codeCoverage/jboss-as/build/target/wildfly-8.0.0.Alpha4-SNAPSHOT/standalone/data/content/eb/1e733309cb3d8a6a743c1a10ec41cccc6cad4d/content
> [0m[0m21:40:26,044 INFO [org.jboss.as.server] (management-handler-thread - 2) JBAS018558: Undeployed "txbridge-outbound-tests-client.war" (runtime-name: "txbridge-outbound-tests-client.war")
> [0m[0m21:40:26,075 INFO [org.wildfly.extension.undertow] (MSC service thread 1-1) JBAS018224: Unregister web context: /rest-tx
> [0m[0m21:40:26,102 INFO [org.jboss.as.connector.deployment] (MSC service thread 1-1) JBAS010410: Unbound JCA ConnectionFactory [java:/JmsXA]
> [0m[0m21:40:26,121 INFO [org.hornetq.ra] (MSC service thread 1-1) HQ151003: HornetQ resource adaptor stopped
> [0m[0m21:40:26,122 INFO [stdout] (EMMA shutdown handler thread) EMMA: runtime coverage data merged into [/home/hudson/workspace/narayana-codeCoverage/txbridge/target/test-classes/coverage.ec] {in 69 ms}
> [0m[0m21:40:26,125 INFO [org.wildfly.extension.undertow] (MSC service thread 1-1) JBAS018224: Unregister web context: /hornetq-server
> [0m[0m21:40:26,126 INFO [org.wildfly.extension.undertow] (MSC service thread 1-1) JBAS017521: Undertow HTTP listener default suspending
> [0m[0m21:40:26,127 INFO [org.jboss.as.messaging] (ServerService Thread Pool -- 20) JBAS011605: Unbound messaging object to jndi name java:jboss/exported/jms/RemoteConnectionFactory
> [0m[0m21:40:26,128 INFO [org.jboss.as.messaging] (ServerService Thread Pool -- 29) JBAS011605: Unbound messaging object to jndi name java:/ConnectionFactory
> [0m[0m21:40:26,128 INFO [org.jboss.as.messaging] (ServerService Thread Pool -- 29) JBAS011605: Unbound messaging object to jndi name java:jboss/DefaultJMSConnectionFactory
> [0m[0m21:40:26,129 INFO [org.jboss.as.messaging] (ServerService Thread Pool -- 25) JBAS011605: Unbound messaging object to jndi name java:jboss/exported/jms/ServletConnectionFactory
> [0m[0m21:40:26,137 INFO [org.wildfly.extension.undertow] (MSC service thread 1-1) JBAS017520: Undertow HTTP listener default stopped, was bound to localhost.localdomain/127.0.0.1:8080
> [0m[0m21:40:26,138 INFO [org.jboss.as.webservices] (MSC service thread 1-1) JBAS015540: Stopping service jboss.ws.endpoint."ws-t11-participant.deployment".BusinessAgreementWithParticipantCompletionParticipantService
> [0m[0m21:40:26,144 INFO [org.wildfly.extension.undertow] (MSC service thread 1-1) JBAS018224: Unregister web context: /xtstest
> [0m[0m21:40:26,145 INFO [org.jboss.jbossts.xts.servicetests.bean.XTSServiceTestRunnerBean] (MSC service thread 1-1) Stopping XTSServiceTestRunner
> [0m[0m21:40:26,145 INFO [org.jboss.jbossts.xts.servicetests.bean.XTSServiceTestRunnerBean] (MSC service thread 1-1) Stopped XTSServiceTestRunner
> [0m[0m21:40:26,151 INFO [org.jboss.as.webservices] (MSC service thread 1-1) JBAS015540: Stopping service jboss.ws.endpoint."xtstest.war".XTS_Service_Test_Service_Three
> [0m[0m21:40:26,151 INFO [org.jboss.as.webservices] (MSC service thread 1-1) JBAS015540: Stopping service jboss.ws.endpoint."xtstest.war".XTS_Service_Test_Service_Two
> [0m[0m21:40:26,152 INFO [org.jboss.as.webservices] (MSC service thread 1-1) JBAS015540: Stopping service jboss.ws.endpoint."xtstest.war".XTS_Service_Test_Subordinate_Service_One
> [0m[0m21:40:26,152 INFO [org.jboss.as.webservices] (MSC service thread 1-1) JBAS015540: Stopping service jboss.ws.endpoint."xtstest.war".XTS_Service_Test_Service_One
> [0m[0m21:40:26,154 INFO [org.jboss.weld.deployer] (MSC service thread 1-1) JBAS016009: Stopping weld service for deployment xtstest.war
> [0m[31m21:40:26,181 ERROR [org.jboss.ws.common.deployment] (MSC service thread 1-1) JBWS022102: Cannot stop endpoint in state STOPPED: jboss.ws:context=xtstest,endpoint=XTS_Service_Test_Subordinate_Service_One
> [0m[31m21:40:26,181 ERROR [org.jboss.ws.common.deployment] (MSC service thread 1-1) JBWS022102: Cannot stop endpoint in state STOPPED: jboss.ws:context=xtstest,endpoint=XTS_Service_Test_Service_One
> [0m[31m21:40:26,181 ERROR [org.jboss.ws.common.deployment] (MSC service thread 1-1) JBWS022102: Cannot stop endpoint in state STOPPED: jboss.ws:context=xtstest,endpoint=XTS_Service_Test_Service_Two
> [0m[31m21:40:26,182 ERROR [org.jboss.ws.common.deployment] (MSC service thread 1-1) JBWS022102: Cannot stop endpoint in state STOPPED: jboss.ws:context=xtstest,endpoint=XTS_Service_Test_Service_Three
> [0m[0m21:40:26,212 INFO [org.jboss.as.connector.subsystems.datasources] (MSC service thread 1-2) JBAS010409: Unbound data source [java:jboss/datasources/ExampleDS]
> [0m[0m21:40:26,214 INFO [org.jboss.as.webservices] (MSC service thread 1-2) JBAS015540: Stopping service jboss.ws.endpoint."ws-c11.deployment".ActivationService
> [0m[0m21:40:26,214 INFO [org.jboss.as.webservices] (MSC service thread 1-2) JBAS015540: Stopping service jboss.ws.endpoint."ws-c11.deployment".RegistrationService
> [0m[0m21:40:26,215 INFO [org.jboss.as.webservices] (MSC service thread 1-2) JBAS015540: Stopping service jboss.ws.endpoint."ws-t11-participant.deployment".ParticipantService
> [0m[0m21:40:26,215 INFO [org.jboss.as.webservices] (MSC service thread 1-2) JBAS015540: Stopping service jboss.ws.endpoint."ws-t11-participant.deployment".BusinessAgreementWithCoordinatorCompletionParticipantService
> [0m[0m21:40:26,215 INFO [org.jboss.as.webservices] (MSC service thread 1-2) JBAS015540: Stopping service jboss.ws.endpoint."ws-t11-client.deployment".CompletionInitiatorService
> [0m[0m21:40:26,216 INFO [org.jboss.as.webservices] (MSC service thread 1-2) JBAS015540: Stopping service jboss.ws.endpoint."ws-t11-client.deployment".TerminationParticipantService
> [0m[0m21:40:26,216 INFO [org.jboss.as.webservices] (MSC service thread 1-2) JBAS015540: Stopping service jboss.ws.endpoint."ws-t11-coordinator.deployment".CoordinatorService
> [0m[0m21:40:26,217 INFO [org.jboss.as.webservices] (MSC service thread 1-2) JBAS015540: Stopping service jboss.ws.endpoint."ws-t11-coordinator.deployment".BusinessAgreementWithCoordinatorCompletionCoordinatorService
> [0m[0m21:40:26,260 INFO [org.jboss.as.webservices] (MSC service thread 1-2) JBAS015540: Stopping service jboss.ws.endpoint."ws-t11-coordinator.deployment".CompletionCoordinatorRPCService
> [0m[0m21:40:26,261 INFO [org.jboss.as.webservices] (MSC service thread 1-2) JBAS015540: Stopping service jboss.ws.endpoint."ws-t11-coordinator.deployment".TerminationCoordinatorService
> [0m[0m21:40:26,271 INFO [org.jboss.as.webservices] (MSC service thread 1-2) JBAS015540: Stopping service jboss.ws.endpoint."ws-t11-coordinator.deployment".BusinessAgreementWithParticipantCompletionCoordinatorService
> [0m[0m21:40:26,272 INFO [org.jboss.as.webservices] (MSC service thread 1-2) JBAS015540: Stopping service jboss.ws.endpoint."ws-t11-coordinator.deployment".CompletionCoordinatorService
> [0m[0m21:40:26,272 INFO [org.jboss.as.webservices] (MSC service thread 1-2) JBAS015540: Stopping service jboss.ws.endpoint."ws-t11-coordinator.deployment".TerminationCoordinatorRPCService
> [0m[0m21:40:26,273 INFO [org.jboss.jbossts.txbridge] (MSC service thread 1-2) ARJUNA033014: OutboundBridgeRecoveryManager stopping
> [0m[0m21:40:26,273 INFO [org.jboss.jbossts.txbridge] (MSC service thread 1-2) ARJUNA033007: InboundBridgeRecoveryManager stopping
> [0m[0m21:40:26,328 INFO [org.jboss.as.webservices] (MSC service thread 1-2) JBAS015540: Stopping service jboss.ws.endpoint-publish.ws-t11-client
> [0m[0m21:40:26,328 INFO [org.wildfly.extension.undertow] (MSC service thread 1-2) JBAS018224: Unregister web context: /ws-t11-client
> [0m[31m21:40:26,329 ERROR [org.jboss.ws.common.deployment] (MSC service thread 1-2) JBWS022102: Cannot stop endpoint in state STOPPED: jboss.ws:context=ws-t11-client,endpoint=CompletionInitiatorService
> [0m[31m21:40:26,330 ERROR [org.jboss.ws.common.deployment] (MSC service thread 1-2) JBWS022102: Cannot stop endpoint in state STOPPED: jboss.ws:context=ws-t11-client,endpoint=TerminationParticipantService
> [0m[0m21:40:26,333 INFO [org.jboss.as.webservices] (MSC service thread 1-2) JBAS015540: Stopping service jboss.ws.endpoint-publish.ws-t11-coordinator
> [0m[0m21:40:26,333 INFO [org.wildfly.extension.undertow] (MSC service thread 1-2) JBAS018224: Unregister web context: /ws-t11-coordinator
> [0m[31m21:40:26,335 ERROR [org.jboss.ws.common.deployment] (MSC service thread 1-2) JBWS022102: Cannot stop endpoint in state STOPPED: jboss.ws:context=ws-t11-coordinator,endpoint=BusinessAgreementWithCoordinatorCompletionCoordinatorService
> [0m[31m21:40:26,335 ERROR [org.jboss.ws.common.deployment] (MSC service thread 1-2) JBWS022102: Cannot stop endpoint in state STOPPED: jboss.ws:context=ws-t11-coordinator,endpoint=CoordinatorService
> [0m[31m21:40:26,335 ERROR [org.jboss.ws.common.deployment] (MSC service thread 1-2) JBWS022102: Cannot stop endpoint in state STOPPED: jboss.ws:context=ws-t11-coordinator,endpoint=CompletionCoordinatorRPCService
> [0m[31m21:40:26,335 ERROR [org.jboss.ws.common.deployment] (MSC service thread 1-2) JBWS022102: Cannot stop endpoint in state STOPPED: jboss.ws:context=ws-t11-coordinator,endpoint=TerminationCoordinatorRPCService
> [0m[31m21:40:26,335 ERROR [org.jboss.ws.common.deployment] (MSC service thread 1-2) JBWS022102: Cannot stop endpoint in state STOPPED: jboss.ws:context=ws-t11-coordinator,endpoint=TerminationCoordinatorService
> [0m[31m21:40:26,336 ERROR [org.jboss.ws.common.deployment] (MSC service thread 1-2) JBWS022102: Cannot stop endpoint in state STOPPED: jboss.ws:context=ws-t11-coordinator,endpoint=BusinessAgreementWithParticipantCompletionCoordinatorService
> [0m[31m21:40:26,336 ERROR [org.jboss.ws.common.deployment] (MSC service thread 1-2) JBWS022102: Cannot stop endpoint in state STOPPED: jboss.ws:context=ws-t11-coordinator,endpoint=CompletionCoordinatorService
> [0m[0m21:40:26,344 INFO [org.jboss.as.webservices] (MSC service thread 1-2) JBAS015540: Stopping service jboss.ws.endpoint-publish.ws-t11-participant
> [0m[0m21:40:26,344 INFO [org.wildfly.extension.undertow] (MSC service thread 1-2) JBAS018224: Unregister web context: /ws-t11-participant
> [0m[31m21:40:26,345 ERROR [org.jboss.ws.common.deployment] (MSC service thread 1-2) JBWS022102: Cannot stop endpoint in state STOPPED: jboss.ws:context=ws-t11-participant,endpoint=ParticipantService
> [0m[31m21:40:26,345 ERROR [org.jboss.ws.common.deployment] (MSC service thread 1-2) JBWS022102: Cannot stop endpoint in state STOPPED: jboss.ws:context=ws-t11-participant,endpoint=BusinessAgreementWithParticipantCompletionParticipantService
> [0m[31m21:40:26,345 ERROR [org.jboss.ws.common.deployment] (MSC service thread 1-2) JBWS022102: Cannot stop endpoint in state STOPPED: jboss.ws:context=ws-t11-participant,endpoint=BusinessAgreementWithCoordinatorCompletionParticipantService
> [0m[0m21:40:26,380 INFO [org.jboss.as.webservices] (MSC service thread 1-2) JBAS015540: Stopping service jboss.ws.endpoint-publish.ws-c11
> [0m[0m21:40:26,381 INFO [org.wildfly.extension.undertow] (MSC service thread 1-2) JBAS018224: Unregister web context: /ws-c11
> [0m[31m21:40:26,381 ERROR [org.jboss.ws.common.deployment] (MSC service thread 1-2) JBWS022102: Cannot stop endpoint in state STOPPED: jboss.ws:context=ws-c11,endpoint=ActivationService
> [0m[31m21:40:26,381 ERROR [org.jboss.ws.common.deployment] (MSC service thread 1-2) JBWS022102: Cannot stop endpoint in state STOPPED: jboss.ws:context=ws-c11,endpoint=RegistrationService
> [0m[0m21:40:26,385 INFO [org.wildfly.extension.undertow] (MSC service thread 1-2) Stopping host default-host
> [0m[0m21:40:26,720 INFO [org.jboss.as.server.deployment] (MSC service thread 1-2) JBAS015877: Stopped deployment restat-web-5.0.0.M4-SNAPSHOT.war (runtime-name: restat-web-5.0.0.M4-SNAPSHOT.war) in 3ms
> [0m[0m21:40:26,721 INFO [org.wildfly.extension.undertow] (MSC service thread 1-2) JBAS017506: Undertow 1.0.0.Beta3 stopping
> [0m[0m21:40:26,725 INFO [org.jboss.as.connector.deployers.jdbc] (MSC service thread 1-2) JBAS010418: Stopped Driver service with driver-name = h2
> [0m[0m21:40:26,740 INFO [org.jboss.as.server.deployment] (MSC service thread 1-2) JBAS015877: Stopped deployment xtstest.war (runtime-name: xtstest.war) in 23ms
> [0m[0m21:40:26,850 INFO [org.hornetq.core.server] (ServerService Thread Pool -- 25) HQ221002: HornetQ Server version 2.3.1.Final (Wild Hornet, 123) [84bf850e-f0a5-11e2-b06f-99351d644b18] stopped
> [0m[0m21:40:26,860 INFO [org.jboss.as] (MSC service thread 1-2) JBAS015950: WildFly 8.0.0.Alpha4-SNAPSHOT "WildFly" stopped in 62ms
> [0mJul 19, 2013 9:40:27 PM org.jboss.arquillian.container.test.impl.client.container.ClientContainerController start
> INFO: Manual starting of a server instance
> Jul 19, 2013 9:40:27 PM org.jboss.as.arquillian.container.managed.ManagedDeployableContainer startInternal
> INFO: Starting container with: [/usr/local/jdk1.7.0_09//bin/java, -server, -Xms64m, -Xmx1024m, -XX:MaxPermSize=512m, -Dorg.jboss.byteman.debug=true, -Dorg.jboss.byteman.verbose=true, -Dorg.jboss.byteman.contrib.dtest.rmiregistry.port=1199, -Djboss.modules.system.pkgs=org.jboss.byteman, -javaagent:/home/hudson/workspace/narayana-codeCoverage/txbridge/target/byteman/byteman.jar=port:9091,listener:true,sys:/home/hudson/workspace/narayana-codeCoverage/txbridge/target/byteman/byteman-dtest.jar, -ea, -Djboss.home.dir=/home/hudson/workspace/narayana-codeCoverage/jboss-as/build/target/wildfly-8.0.0.Alpha4-SNAPSHOT, -Dorg.jboss.boot.log.file=/home/hudson/workspace/narayana-codeCoverage/jboss-as/build/target/wildfly-8.0.0.Alpha4-SNAPSHOT/standalone/log/boot.log, -Dlogging.configuration=file:/home/hudson/workspace/narayana-codeCoverage/jboss-as/build/target/wildfly-8.0.0.Alpha4-SNAPSHOT/standalone/configuration/logging.properties, -Djboss.bundles.dir=/home/hudson/workspace/narayana-codeCoverage/jboss-as/build/target/wildfly-8.0.0.Alpha4-SNAPSHOT/bundles, -jar, /home/hudson/workspace/narayana-codeCoverage/jboss-as/build/target/wildfly-8.0.0.Alpha4-SNAPSHOT/jboss-modules.jar, -mp, /home/hudson/workspace/narayana-codeCoverage/jboss-as/build/target/wildfly-8.0.0.Alpha4-SNAPSHOT/modules, org.jboss.as.standalone, -server-config, standalone-xts.xml]
> TransformListener() : accepting requests on localhost:9091
> [0m21:40:28,498 INFO [org.jboss.modules] (main) JBoss Modules version 1.2.4.Final
> [0m[0m21:40:28,982 INFO [org.jboss.msc] (main) JBoss MSC version 1.2.0.Beta2
> [0m[0m21:40:29,184 INFO [org.jboss.as] (MSC service thread 1-2) JBAS015899: WildFly 8.0.0.Alpha4-SNAPSHOT "WildFly" starting
> [0m[0m21:40:31,665 INFO [stdout] (ServerService Thread Pool -- 3) EMMA: collecting runtime coverage data ...
> [0m[0m21:40:31,877 INFO [org.xnio] (MSC service thread 1-2) XNIO Version 3.1.0.CR3
> [0m[0m21:40:31,884 INFO [org.xnio.nio] (MSC service thread 1-2) XNIO NIO Implementation Version 3.1.0.CR3
> [0m[0m21:40:31,918 INFO [org.jboss.remoting] (MSC service thread 1-2) JBoss Remoting version 4.0.0.Beta1
> [0m[0m21:40:32,000 INFO [org.jboss.as.server] (Controller Boot Thread) JBAS015888: Creating http management service using socket-binding (management-http)
> [0m[0m21:40:32,144 INFO [org.jboss.as.clustering.infinispan] (ServerService Thread Pool -- 35) JBAS010280: Activating Infinispan subsystem.
> [0m[0m21:40:32,149 INFO [org.jboss.as.jsf] (ServerService Thread Pool -- 42) JBAS012605: Activated the following JSF Implementations: [main]
> [0m[0m21:40:32,174 INFO [org.jboss.as.security] (ServerService Thread Pool -- 51) JBAS013171: Activating Security Subsystem
> [0m[0m21:40:32,203 INFO [org.jboss.as.jacorb] (ServerService Thread Pool -- 36) JBAS016300: Activating JacORB Subsystem
> [0m[0m21:40:32,214 INFO [org.jboss.as.webservices] (ServerService Thread Pool -- 55) JBAS015537: Activating WebServices Extension
> [0m[0m21:40:32,280 INFO [org.jboss.as.naming] (ServerService Thread Pool -- 46) JBAS011800: Activating Naming Subsystem
> [0m[0m21:40:32,695 INFO [org.jboss.as.security] (MSC service thread 1-2) JBAS013170: Current PicketBox version=4.0.17.Final
> [0m[0m21:40:32,997 INFO [org.jboss.ws.common.management] (MSC service thread 1-1) JBWS022052: Starting JBoss Web Services - Stack CXF Server 4.2.0.CR1
> [0m[0m21:40:33,033 INFO [org.wildfly.extension.undertow] (MSC service thread 1-2) JBAS017502: Undertow 1.0.0.Beta3 starting
> [0m[0m21:40:33,037 INFO [org.jboss.as.naming] (MSC service thread 1-1) JBAS011802: Starting Naming Service
> [0m[0m21:40:33,537 INFO [org.wildfly.extension.undertow] (ServerService Thread Pool -- 54) JBAS017502: Undertow 1.0.0.Beta3 starting
> [0m[0m21:40:33,622 INFO [org.jboss.as.connector.subsystems.datasources] (ServerService Thread Pool -- 30) JBAS010403: Deploying JDBC-compliant driver class org.h2.Driver (version 1.3)
> [0m[0m21:40:33,632 INFO [org.jboss.as.connector.logging] (MSC service thread 1-2) JBAS010408: Starting JCA Subsystem (IronJacamar 1.0.17.Final)
> [0m[0m21:40:33,808 INFO [org.jboss.as.connector.deployers.jdbc] (MSC service thread 1-2) JBAS010417: Started Driver service with driver-name = h2
> [0m[0m21:40:33,820 INFO [org.jboss.as.mail.extension] (MSC service thread 1-2) JBAS015400: Bound mail session [java:jboss/mail/Default]
> [0m[0m21:40:34,234 INFO [org.jboss.as.jacorb] (MSC service thread 1-2) JBAS016330: CORBA ORB Service started
> [0m[0m21:40:34,262 INFO [org.hornetq.core.server] (ServerService Thread Pool -- 58) HQ221000: live server is starting with configuration HornetQ Configuration (clustered=false,backup=false,sharedStore=true,journalDirectory=/home/hudson/workspace/narayana-codeCoverage/jboss-as/build/target/wildfly-8.0.0.Alpha4-SNAPSHOT/standalone/data/messagingjournal,bindingsDirectory=/home/hudson/workspace/narayana-codeCoverage/jboss-as/build/target/wildfly-8.0.0.Alpha4-SNAPSHOT/standalone/data/messagingbindings,largeMessagesDirectory=/home/hudson/workspace/narayana-codeCoverage/jboss-as/build/target/wildfly-8.0.0.Alpha4-SNAPSHOT/standalone/data/messaginglargemessages,pagingDirectory=/home/hudson/workspace/narayana-codeCoverage/jboss-as/build/target/wildfly-8.0.0.Alpha4-SNAPSHOT/standalone/data/messagingpaging)
> [0m[0m21:40:34,264 INFO [org.hornetq.core.server] (ServerService Thread Pool -- 58) HQ221006: Waiting to obtain live lock
> [0m[0m21:40:34,577 INFO [org.hornetq.core.server] (ServerService Thread Pool -- 58) HQ221012: Using AIO Journal
> [0m[0m21:40:34,803 INFO [org.jboss.as.jacorb] (MSC service thread 1-2) JBAS016328: CORBA Naming Service started
> [0m[0m21:40:34,845 INFO [org.hornetq.core.server] (ServerService Thread Pool -- 58) HQ221034: Waiting to obtain live lock
> [0m[0m21:40:34,845 INFO [org.hornetq.core.server] (ServerService Thread Pool -- 58) HQ221035: Live Server Obtained live lock
> [0m[0m21:40:35,085 INFO [org.jboss.as.connector.subsystems.datasources] (MSC service thread 1-2) JBAS010400: Bound data source [java:jboss/datasources/ExampleDS]
> [0m[0m21:40:35,115 INFO [org.wildfly.extension.undertow] (ServerService Thread Pool -- 54) JBAS017527: Creating file handler for path /home/hudson/workspace/narayana-codeCoverage/jboss-as/build/target/wildfly-8.0.0.Alpha4-SNAPSHOT/welcome-content
> [0m[0m21:40:35,374 INFO [org.wildfly.extension.undertow] (MSC service thread 1-2) JBAS017525: Started http handler io.undertow.server.handlers.resource.ResourceHandler@7c2713.
> [0m[0m21:40:35,378 INFO [org.wildfly.extension.undertow] (MSC service thread 1-2) Starting server server service: service jboss.undertow.server.default-server
> [0m[0m21:40:35,443 INFO [org.wildfly.extension.undertow] (MSC service thread 1-2) JBAS017519: Undertow HTTP listener default listening on localhost.localdomain/127.0.0.1:8080
> [0m[0m21:40:35,444 INFO [org.wildfly.extension.undertow] (MSC service thread 1-2) Starting host default-host
> [0m[0m21:40:35,445 INFO [org.wildfly.extension.undertow] (MSC service thread 1-2) JBAS017528: registering handler io.undertow.server.handlers.resource.ResourceHandler@7c2713 under path '/'
> [0m[0m21:40:35,445 INFO [org.jboss.as.webservices] (MSC service thread 1-2) JBAS015539: Starting service jboss.ws.endpoint-publish.ws-c11
> [0m[0m21:40:35,767 INFO [org.jboss.ws.cxf.metadata] (MSC service thread 1-2) JBWS024061: Adding service endpoint metadata: id=ActivationService
> address=http://localhost:8080/ws-c11/ActivationService
> implementor=com.arjuna.webservices11.wscoor.sei.ActivationPortTypeImpl
> serviceName={http://docs.oasis-open.org/ws-tx/wscoor/2006/06}ActivationSe...
> portName={http://docs.oasis-open.org/ws-tx/wscoor/2006/06}ActivationPortType
> annotationWsdlLocation=null
> wsdlLocationOverride=null
> mtomEnabled=false
> [0m[0m21:40:35,768 INFO [org.jboss.ws.cxf.metadata] (MSC service thread 1-2) JBWS024061: Adding service endpoint metadata: id=RegistrationService
> address=http://localhost:8080/ws-c11/RegistrationService
> implementor=com.arjuna.webservices11.wscoor.sei.RegistrationPortTypeImpl
> serviceName={http://docs.oasis-open.org/ws-tx/wscoor/2006/06}Registration...
> portName={http://docs.oasis-open.org/ws-tx/wscoor/2006/06}RegistrationPor...
> annotationWsdlLocation=null
> wsdlLocationOverride=null
> mtomEnabled=false
> [0m[0m21:40:35,455 INFO [org.jboss.as.webservices] (MSC service thread 1-1) JBAS015539: Starting service jboss.ws.endpoint-publish.ws-t11-participant
> [0m[0m21:40:36,225 INFO [org.jboss.ws.cxf.metadata] (MSC service thread 1-1) JBWS024061: Adding service endpoint metadata: id=ParticipantService
> address=http://localhost:8080/ws-t11-participant/ParticipantService
> implementor=com.arjuna.webservices11.wsat.sei.ParticipantPortTypeImpl
> serviceName={http://docs.oasis-open.org/ws-tx/wsat/2006/06}ParticipantSer...
> portName={http://docs.oasis-open.org/ws-tx/wsat/2006/06}ParticipantPortType
> annotationWsdlLocation=null
> wsdlLocationOverride=null
> mtomEnabled=false
> [0m[0m21:40:36,226 INFO [org.jboss.ws.cxf.metadata] (MSC service thread 1-1) JBWS024061: Adding service endpoint metadata: id=BusinessAgreementWithParticipantCompletionParticipantService
> address=http://localhost:8080/ws-t11-participant/BusinessAgreementWithParticipantCompletionParticipantService
> implementor=com.arjuna.webservices11.wsba.sei.BusinessAgreementWithParticipantCompletionParticipantPortTypeImpl
> serviceName={http://docs.oasis-open.org/ws-tx/wsba/2006/06}BusinessAgreem...
> portName={http://docs.oasis-open.org/ws-tx/wsba/2006/06}BusinessAgreement...
> annotationWsdlLocation=null
> wsdlLocationOverride=null
> mtomEnabled=false
> [0m[0m21:40:36,227 INFO [org.jboss.ws.cxf.metadata] (MSC service thread 1-1) JBWS024061: Adding service endpoint metadata: id=BusinessAgreementWithCoordinatorCompletionParticipantService
> address=http://localhost:8080/ws-t11-participant/BusinessAgreementWithCoordinatorCompletionParticipantService
> implementor=com.arjuna.webservices11.wsba.sei.BusinessAgreementWithCoordinatorCompletionParticipantPortTypeImpl
> serviceName={http://docs.oasis-open.org/ws-tx/wsba/2006/06}BusinessAgreem...
> portName={http://docs.oasis-open.org/ws-tx/wsba/2006/06}BusinessAgreement...
> annotationWsdlLocation=null
> wsdlLocationOverride=null
> mtomEnabled=false
> [0m[0m21:40:36,235 INFO [org.hornetq.core.server] (ServerService Thread Pool -- 58) HQ221020: Started Netty Acceptor version 3.6.2.Final-c0d783c 127.0.0.1:5455 for CORE protocol
> [0m[0m21:40:36,246 INFO [org.hornetq.core.server] (ServerService Thread Pool -- 58) HQ221020: Started Netty Acceptor version 3.6.2.Final-c0d783c org.hornetq.default.servlet:5445 for CORE protocol
> [0m[0m21:40:36,251 INFO [org.hornetq.core.server] (ServerService Thread Pool -- 58) HQ221020: Started Netty Acceptor version 3.6.2.Final-c0d783c 127.0.0.1:5445 for CORE protocol
> [0m[0m21:40:36,260 INFO [org.hornetq.core.server] (ServerService Thread Pool -- 58) HQ221007: Server is now live
> [0m[0m21:40:36,260 INFO [org.hornetq.core.server] (ServerService Thread Pool -- 58) HQ221001: HornetQ Server version 2.3.1.Final (Wild Hornet, 123) [84bf850e-f0a5-11e2-b06f-99351d644b18]
> [0m[0m21:40:36,556 INFO [org.apache.cxf.service.factory.ReflectionServiceFactoryBean] (MSC service thread 1-2) Creating Service {http://docs.oasis-open.org/ws-tx/wscoor/2006/06}ActivationService from class com.arjuna.webservices11.wscoor.sei.ActivationPortTypeImpl
> [0m[0m21:40:36,726 INFO [org.apache.cxf.service.factory.ReflectionServiceFactoryBean] (MSC service thread 1-1) Creating Service {http://docs.oasis-open.org/ws-tx/wsat/2006/06}ParticipantService from class com.arjuna.webservices11.wsat.sei.ParticipantPortTypeImpl
> [0m[0m21:40:38,030 INFO [org.apache.cxf.endpoint.ServerImpl] (MSC service thread 1-1) Setting the server's publish address to be http://localhost:8080/ws-t11-participant/ParticipantService
> [0m[0m21:40:38,064 INFO [org.apache.cxf.endpoint.ServerImpl] (MSC service thread 1-2) Setting the server's publish address to be http://localhost:8080/ws-c11/ActivationService
> [0m[0m21:40:38,562 INFO [org.jboss.ws.cxf.deployment] (MSC service thread 1-1) JBWS024074: WSDL published to: file:/home/hudson/workspace/narayana-codeCoverage/jboss-as/build/target/wildfly-8.0.0.Alpha4-SNAPSHOT/standalone/data/wsdl/ws-t11-participant.deployment/ParticipantService.wsdl
> [0m[0m21:40:38,563 INFO [org.apache.cxf.service.factory.ReflectionServiceFactoryBean] (MSC service thread 1-1) Creating Service {http://docs.oasis-open.org/ws-tx/wsba/2006/06}BusinessAgreementWithParticipantCompletionParticipantService from class com.arjuna.webservices11.wsba.sei.BusinessAgreementWithParticipantCompletionParticipantPortTypeImpl
> [0m[0m21:40:38,597 INFO [org.jboss.ws.cxf.deployment] (MSC service thread 1-2) JBWS024074: WSDL published to: file:/home/hudson/workspace/narayana-codeCoverage/jboss-as/build/target/wildfly-8.0.0.Alpha4-SNAPSHOT/standalone/data/wsdl/ws-c11.deployment/ActivationService.wsdl
> [0m[0m21:40:38,623 INFO [org.apache.cxf.service.factory.ReflectionServiceFactoryBean] (MSC service thread 1-2) Creating Service {http://docs.oasis-open.org/ws-tx/wscoor/2006/06}RegistrationService from class com.arjuna.webservices11.wscoor.sei.RegistrationPortTypeImpl
> [0m[0m21:40:38,710 INFO [org.apache.cxf.endpoint.ServerImpl] (MSC service thread 1-2) Setting the server's publish address to be http://localhost:8080/ws-c11/RegistrationService
> [0m[0m21:40:38,870 INFO [org.apache.cxf.endpoint.ServerImpl] (MSC service thread 1-1) Setting the server's publish address to be http://localhost:8080/ws-t11-participant/BusinessAgreementWithParticipant...
> [0m[0m21:40:38,916 INFO [org.jboss.ws.cxf.deployment] (MSC service thread 1-1) JBWS024074: WSDL published to: file:/home/hudson/workspace/narayana-codeCoverage/jboss-as/build/target/wildfly-8.0.0.Alpha4-SNAPSHOT/standalone/data/wsdl/ws-t11-participant.deployment/BusinessAgreementWithParticipantCompletionParticipantService.wsdl
> [0m[0m21:40:38,918 INFO [org.apache.cxf.service.factory.ReflectionServiceFactoryBean] (MSC service thread 1-1) Creating Service {http://docs.oasis-open.org/ws-tx/wsba/2006/06}BusinessAgreementWithCoordinatorCompletionParticipantService from class org.oasis_open.docs.ws_tx.wsba._2006._06.BusinessAgreementWithCoordinatorCompletionParticipantPortType
> [0m[0m21:40:38,967 INFO [org.apache.cxf.endpoint.ServerImpl] (MSC service thread 1-1) Setting the server's publish address to be http://localhost:8080/ws-t11-participant/BusinessAgreementWithCoordinator...
> [0m[0m21:40:39,055 INFO [org.jboss.ws.cxf.deployment] (MSC service thread 1-1) JBWS024074: WSDL published to: file:/home/hudson/workspace/narayana-codeCoverage/jboss-as/build/target/wildfly-8.0.0.Alpha4-SNAPSHOT/standalone/data/wsdl/ws-t11-participant.deployment/BusinessAgreementWithCoordinatorCompletionParticipantService.wsdl
> [0m[0m21:40:39,125 INFO [org.wildfly.extension.undertow] (MSC service thread 1-1) JBAS018210: Register web context: /ws-t11-participant
> [0m[0m21:40:39,126 INFO [org.jboss.as.webservices] (MSC service thread 1-1) JBAS015539: Starting service jboss.ws.endpoint-publish.ws-t11-client
> [0m[0m21:40:39,128 INFO [org.jboss.ws.cxf.metadata] (MSC service thread 1-1) JBWS024061: Adding service endpoint metadata: id=CompletionInitiatorService
> address=http://localhost:8080/ws-t11-client/CompletionInitiatorService
> implementor=com.arjuna.webservices11.wsat.sei.CompletionInitiatorPortTypeImpl
> serviceName={http://docs.oasis-open.org/ws-tx/wsat/2006/06}CompletionInit...
> portName={http://docs.oasis-open.org/ws-tx/wsat/2006/06}CompletionInitiat...
> annotationWsdlLocation=null
> wsdlLocationOverride=null
> mtomEnabled=false
> [0m[0m21:40:39,130 INFO [org.jboss.ws.cxf.metadata] (MSC service thread 1-1) JBWS024061: Adding service endpoint metadata: id=TerminationParticipantService
> address=http://localhost:8080/ws-t11-client/TerminationParticipantService
> implementor=com.arjuna.webservices11.wsarjtx.sei.TerminationParticipantPortTypeImpl
> serviceName={http://schemas.arjuna.com/ws/2005/10/wsarjtx}TerminationPart...
> portName={http://schemas.arjuna.com/ws/2005/10/wsarjtx}TerminationPartici...
> annotationWsdlLocation=null
> wsdlLocationOverride=null
> mtomEnabled=false
> [0m[0m21:40:39,157 INFO [org.apache.cxf.service.factory.ReflectionServiceFactoryBean] (MSC service thread 1-1) Creating Service {http://docs.oasis-open.org/ws-tx/wsat/2006/06}CompletionInitiatorService from class com.arjuna.webservices11.wsat.sei.CompletionInitiatorPortTypeImpl
> [0m[0m21:40:39,314 INFO [org.apache.cxf.endpoint.ServerImpl] (MSC service thread 1-1) Setting the server's publish address to be http://localhost:8080/ws-t11-client/CompletionInitiatorService
> [0m[0m21:40:39,334 INFO [org.jboss.ws.cxf.deployment] (MSC service thread 1-2) JBWS024074: WSDL published to: file:/home/hudson/workspace/narayana-codeCoverage/jboss-as/build/target/wildfly-8.0.0.Alpha4-SNAPSHOT/standalone/data/wsdl/ws-c11.deployment/RegistrationService.wsdl
> [0m[0m21:40:39,356 INFO [org.jboss.ws.cxf.deployment] (MSC service thread 1-1) JBWS024074: WSDL published to: file:/home/hudson/workspace/narayana-codeCoverage/jboss-as/build/target/wildfly-8.0.0.Alpha4-SNAPSHOT/standalone/data/wsdl/ws-t11-client.deployment/CompletionInitiatorService.wsdl
> [0m[0m21:40:39,358 INFO [org.apache.cxf.service.factory.ReflectionServiceFactoryBean] (MSC service thread 1-1) Creating Service {http://schemas.arjuna.com/ws/2005/10/wsarjtx}TerminationParticipantService from class com.arjuna.schemas.ws._2005._10.wsarjtx.TerminationParticipantPortType
> [0m[0m21:40:39,406 INFO [org.apache.cxf.endpoint.ServerImpl] (MSC service thread 1-1) Setting the server's publish address to be http://localhost:8080/ws-t11-client/TerminationParticipantService
> [0m[0m21:40:39,444 INFO [org.jboss.ws.cxf.deployment] (MSC service thread 1-1) JBWS024074: WSDL published to: file:/home/hudson/workspace/narayana-codeCoverage/jboss-as/build/target/wildfly-8.0.0.Alpha4-SNAPSHOT/standalone/data/wsdl/ws-t11-client.deployment/TerminationParticipantService.wsdl
> [0m[0m21:40:39,445 INFO [org.wildfly.extension.undertow] (MSC service thread 1-1) JBAS018210: Register web context: /ws-t11-client
> [0m[0m21:40:39,446 INFO [org.jboss.as.webservices] (MSC service thread 1-1) JBAS015539: Starting service jboss.ws.endpoint-publish.ws-t11-coordinator
> [0m[0m21:40:39,449 INFO [org.jboss.ws.cxf.metadata] (MSC service thread 1-1) JBWS024061: Adding service endpoint metadata: id=BusinessAgreementWithCoordinatorCompletionCoordinatorService
> address=http://localhost:8080/ws-t11-coordinator/BusinessAgreementWithCoordinatorCompletionCoordinatorService
> implementor=com.arjuna.webservices11.wsba.sei.BusinessAgreementWithCoordinatorCompletionCoordinatorPortTypeImpl
> serviceName={http://docs.oasis-open.org/ws-tx/wsba/2006/06}BusinessAgreem...
> portName={http://docs.oasis-open.org/ws-tx/wsba/2006/06}BusinessAgreement...
> annotationWsdlLocation=null
> wsdlLocationOverride=null
> mtomEnabled=false
> [0m[0m21:40:39,450 INFO [org.jboss.ws.cxf.metadata] (MSC service thread 1-1) JBWS024061: Adding service endpoint metadata: id=CoordinatorService
> address=http://localhost:8080/ws-t11-coordinator/CoordinatorService
> implementor=com.arjuna.webservices11.wsat.sei.CoordinatorPortTypeImpl
> serviceName={http://docs.oasis-open.org/ws-tx/wsat/2006/06}CoordinatorSer...
> portName={http://docs.oasis-open.org/ws-tx/wsat/2006/06}CoordinatorPortType
> annotationWsdlLocation=null
> wsdlLocationOverride=null
> mtomEnabled=false
> [0m[0m21:40:39,451 INFO [org.jboss.ws.cxf.metadata] (MSC service thread 1-1) JBWS024061: Adding service endpoint metadata: id=CompletionCoordinatorRPCService
> address=http://localhost:8080/ws-t11-coordinator/CompletionCoordinatorRPCService
> implementor=com.arjuna.webservices11.wsat.sei.CompletionCoordinatorRPCPortTypeImpl
> serviceName={http://docs.oasis-open.org/ws-tx/wsat/2006/06}CompletionCoor...
> portName={http://docs.oasis-open.org/ws-tx/wsat/2006/06}CompletionCoordin...
> annotationWsdlLocation=null
> wsdlLocationOverride=null
> mtomEnabled=false
> [0m[0m21:40:39,452 INFO [org.jboss.ws.cxf.metadata] (MSC service thread 1-1) JBWS024061: Adding service endpoint metadata: id=TerminationCoordinatorRPCService
> address=http://localhost:8080/ws-t11-coordinator/TerminationCoordinatorRPCService
> implementor=com.arjuna.webservices11.wsarjtx.sei.TerminationCoordinatorRPCPortTypeImpl
> serviceName={http://schemas.arjuna.com/ws/2005/10/wsarjtx}TerminationCoor...
> portName={http://schemas.arjuna.com/ws/2005/10/wsarjtx}TerminationCoordin...
> annotationWsdlLocation=null
> wsdlLocationOverride=null
> mtomEnabled=false
> [0m[0m21:40:39,453 INFO [org.jboss.ws.cxf.metadata] (MSC service thread 1-1) JBWS024061: Adding service endpoint metadata: id=TerminationCoordinatorService
> address=http://localhost:8080/ws-t11-coordinator/TerminationCoordinatorService
> implementor=com.arjuna.webservices11.wsarjtx.sei.TerminationCoordinatorPortTypeImpl
> serviceName={http://schemas.arjuna.com/ws/2005/10/wsarjtx}TerminationCoor...
> portName={http://schemas.arjuna.com/ws/2005/10/wsarjtx}TerminationCoordin...
> annotationWsdlLocation=null
> wsdlLocationOverride=null
> mtomEnabled=false
> [0m[0m21:40:39,454 INFO [org.jboss.ws.cxf.metadata] (MSC service thread 1-1) JBWS024061: Adding service endpoint metadata: id=BusinessAgreementWithParticipantCompletionCoordinatorService
> address=http://localhost:8080/ws-t11-coordinator/BusinessAgreementWithParticipantCompletionCoordinatorService
> implementor=com.arjuna.webservices11.wsba.sei.BusinessAgreementWithParticipantCompletionCoordinatorPortTypeImpl
> serviceName={http://docs.oasis-open.org/ws-tx/wsba/2006/06}BusinessAgreem...
> portName={http://docs.oasis-open.org/ws-tx/wsba/2006/06}BusinessAgreement...
> annotationWsdlLocation=null
> wsdlLocationOverride=null
> mtomEnabled=false
> [0m[0m21:40:39,456 INFO [org.jboss.ws.cxf.metadata] (MSC service thread 1-1) JBWS024061: Adding service endpoint metadata: id=CompletionCoordinatorService
> address=http://localhost:8080/ws-t11-coordinator/CompletionCoordinatorService
> implementor=com.arjuna.webservices11.wsat.sei.CompletionCoordinatorPortTypeImpl
> serviceName={http://docs.oasis-open.org/ws-tx/wsat/2006/06}CompletionCoor...
> portName={http://docs.oasis-open.org/ws-tx/wsat/2006/06}CompletionCoordin...
> annotationWsdlLocation=null
> wsdlLocationOverride=null
> mtomEnabled=false
> [0m[0m21:40:39,478 INFO [org.apache.cxf.service.factory.ReflectionServiceFactoryBean] (MSC service thread 1-1) Creating Service {http://docs.oasis-open.org/ws-tx/wsba/2006/06}BusinessAgreementWithCoordinatorCompletionCoordinatorService from class com.arjuna.webservices11.wsba.sei.BusinessAgreementWithCoordinatorCompletionCoordinatorPortTypeImpl
> [0m[0m21:40:39,567 INFO [org.apache.cxf.endpoint.ServerImpl] (MSC service thread 1-1) Setting the server's publish address to be http://localhost:8080/ws-t11-coordinator/BusinessAgreementWithCoordinator...
> [0m[0m21:40:39,604 INFO [org.jboss.ws.cxf.deployment] (MSC service thread 1-1) JBWS024074: WSDL published to: file:/home/hudson/workspace/narayana-codeCoverage/jboss-as/build/target/wildfly-8.0.0.Alpha4-SNAPSHOT/standalone/data/wsdl/ws-t11-coordinator.deployment/BusinessAgreementWithCoordinatorCompletionCoordinatorService.wsdl
> [0m[0m21:40:39,622 INFO [org.apache.cxf.service.factory.ReflectionServiceFactoryBean] (MSC service thread 1-1) Creating Service {http://docs.oasis-open.org/ws-tx/wsat/2006/06}CoordinatorService from class com.arjuna.webservices11.wsat.sei.CoordinatorPortTypeImpl
> [0m[0m21:40:39,631 INFO [org.apache.cxf.endpoint.ServerImpl] (MSC service thread 1-1) Setting the server's publish address to be http://localhost:8080/ws-t11-coordinator/CoordinatorService
> [0m[0m21:40:39,666 INFO [org.jboss.ws.cxf.deployment] (MSC service thread 1-1) JBWS024074: WSDL published to: file:/home/hudson/workspace/narayana-codeCoverage/jboss-as/build/target/wildfly-8.0.0.Alpha4-SNAPSHOT/standalone/data/wsdl/ws-t11-coordinator.deployment/CoordinatorService.wsdl
> [0m[0m21:40:39,666 INFO [org.apache.cxf.service.factory.ReflectionServiceFactoryBean] (MSC service thread 1-1) Creating Service {http://docs.oasis-open.org/ws-tx/wsat/2006/06}CompletionCoordinatorRPCService from class com.arjuna.webservices11.wsat.sei.CompletionCoordinatorRPCPortTypeImpl
> [0m[0m21:40:39,682 INFO [org.apache.cxf.endpoint.ServerImpl] (MSC service thread 1-1) Setting the server's publish address to be http://localhost:8080/ws-t11-coordinator/CompletionCoordinatorRPCService
> [0m[0m21:40:39,703 INFO [org.jboss.ws.cxf.deployment] (MSC service thread 1-1) JBWS024074: WSDL published to: file:/home/hudson/workspace/narayana-codeCoverage/jboss-as/build/target/wildfly-8.0.0.Alpha4-SNAPSHOT/standalone/data/wsdl/ws-t11-coordinator.deployment/CompletionCoordinatorRPCService.wsdl
> [0m[0m21:40:39,703 INFO [org.apache.cxf.service.factory.ReflectionServiceFactoryBean] (MSC service thread 1-1) Creating Service {http://schemas.arjuna.com/ws/2005/10/wsarjtx}TerminationCoordinatorRPCPortTypeImplService from class com.arjuna.webservices11.wsarjtx.sei.TerminationCoordinatorRPCPortTypeImpl
> [0m[0m21:40:39,728 INFO [org.apache.cxf.endpoint.ServerImpl] (MSC service thread 1-1) Setting the server's publish address to be http://localhost:8080/ws-t11-coordinator/TerminationCoordinatorRPCService
> [0m[0m21:40:39,752 INFO [org.jboss.ws.cxf.deployment] (MSC service thread 1-1) JBWS024074: WSDL published to: file:/home/hudson/workspace/narayana-codeCoverage/jboss-as/build/target/wildfly-8.0.0.Alpha4-SNAPSHOT/standalone/data/wsdl/ws-t11-coordinator.deployment/TerminationCoordinatorRPCPortTypeImplService.wsdl
> [0m[0m21:40:39,754 INFO [org.apache.cxf.service.factory.ReflectionServiceFactoryBean] (MSC service thread 1-1) Creating Service {http://schemas.arjuna.com/ws/2005/10/wsarjtx}TerminationCoordinatorService from class com.arjuna.schemas.ws._2005._10.wsarjtx.TerminationCoordinatorPortType
> [0m[0m21:40:39,762 INFO [org.apache.cxf.endpoint.ServerImpl] (MSC service thread 1-1) Setting the server's publish address to be http://localhost:8080/ws-t11-coordinator/TerminationCoordinatorService
> [0m[0m21:40:39,779 INFO [org.jboss.ws.cxf.deployment] (MSC service thread 1-1) JBWS024074: WSDL published to: file:/home/hudson/workspace/narayana-codeCoverage/jboss-as/build/target/wildfly-8.0.0.Alpha4-SNAPSHOT/standalone/data/wsdl/ws-t11-coordinator.deployment/TerminationCoordinatorService.wsdl
> [0m[0m21:40:39,788 INFO [org.apache.cxf.service.factory.ReflectionServiceFactoryBean] (MSC service thread 1-1) Creating Service {http://docs.oasis-open.org/ws-tx/wsba/2006/06}BusinessAgreementWithParticipantCompletionCoordinatorService from class com.arjuna.webservices11.wsba.sei.BusinessAgreementWithParticipantCompletionCoordinatorPortTypeImpl
> [0m[0m21:40:39,803 INFO [org.apache.cxf.endpoint.ServerImpl] (MSC service thread 1-1) Setting the server's publish address to be http://localhost:8080/ws-t11-coordinator/BusinessAgreementWithParticipant...
> [0m[0m21:40:39,864 INFO [org.jboss.ws.cxf.deployment] (MSC service thread 1-1) JBWS024074: WSDL published to: file:/home/hudson/workspace/narayana-codeCoverage/jboss-as/build/target/wildfly-8.0.0.Alpha4-SNAPSHOT/standalone/data/wsdl/ws-t11-coordinator.deployment/BusinessAgreementWithParticipantCompletionCoordinatorService.wsdl
> [0m[0m21:40:39,865 INFO [org.apache.cxf.service.factory.ReflectionServiceFactoryBean] (MSC service thread 1-1) Creating Service {http://docs.oasis-open.org/ws-tx/wsat/2006/06}CompletionCoordinatorService from class com.arjuna.webservices11.wsat.sei.CompletionCoordinatorPortTypeImpl
> [0m[0m21:40:39,871 INFO [org.apache.cxf.endpoint.ServerImpl] (MSC service thread 1-1) Setting the server's publish address to be http://localhost:8080/ws-t11-coordinator/CompletionCoordinatorService
> [0m[0m21:40:39,884 INFO [org.jboss.ws.cxf.deployment] (MSC service thread 1-1) JBWS024074: WSDL published to: file:/home/hudson/workspace/narayana-codeCoverage/jboss-as/build/target/wildfly-8.0.0.Alpha4-SNAPSHOT/standalone/data/wsdl/ws-t11-coordinator.deployment/CompletionCoordinatorService.wsdl
> [0m[0m21:40:39,886 INFO [org.wildfly.extension.undertow] (MSC service thread 1-1) JBAS018210: Register web context: /ws-t11-coordinator
> [0m[0m21:40:39,887 INFO [org.jboss.as.webservices] (MSC service thread 1-1) JBAS015539: Starting service jboss.ws.endpoint."ws-t11-participant.deployment".ParticipantService
> [0m[0m21:40:39,893 INFO [org.jboss.as.webservices] (MSC service thread 1-1) JBAS015539: Starting service jboss.ws.endpoint."ws-t11-participant.deployment".BusinessAgreementWithCoordinatorCompletionParticipantService
> [0m[0m21:40:39,893 INFO [org.jboss.as.webservices] (MSC service thread 1-1) JBAS015539: Starting service jboss.ws.endpoint."ws-t11-participant.deployment".BusinessAgreementWithParticipantCompletionParticipantService
> [0m[0m21:40:39,894 INFO [org.jboss.as.webservices] (MSC service thread 1-1) JBAS015539: Starting service jboss.ws.endpoint."ws-t11-client.deployment".TerminationParticipantService
> [0m[0m21:40:39,894 INFO [org.jboss.as.webservices] (MSC service thread 1-1) JBAS015539: Starting service jboss.ws.endpoint."ws-t11-client.deployment".CompletionInitiatorService
> [0m[0m21:40:39,895 INFO [org.jboss.as.webservices] (MSC service thread 1-1) JBAS015539: Starting service jboss.ws.endpoint."ws-t11-coordinator.deployment".BusinessAgreementWithCoordinatorCompletionCoordinatorService
> [0m[0m21:40:39,896 INFO [org.jboss.as.webservices] (MSC service thread 1-1) JBAS015539: Starting service jboss.ws.endpoint."ws-t11-coordinator.deployment".CoordinatorService
> [0m[0m21:40:39,897 INFO [org.jboss.as.webservices] (MSC service thread 1-1) JBAS015539: Starting service jboss.ws.endpoint."ws-t11-coordinator.deployment".CompletionCoordinatorRPCService
> [0m[0m21:40:39,898 INFO [org.jboss.as.webservices] (MSC service thread 1-1) JBAS015539: Starting service jboss.ws.endpoint."ws-t11-coordinator.deployment".TerminationCoordinatorService
> [0m[0m21:40:39,899 INFO [org.jboss.as.webservices] (MSC service thread 1-1) JBAS015539: Starting service jboss.ws.endpoint."ws-t11-coordinator.deployment".TerminationCoordinatorRPCService
> [0m[0m21:40:39,900 INFO [org.jboss.as.webservices] (MSC service thread 1-1) JBAS015539: Starting service jboss.ws.endpoint."ws-t11-coordinator.deployment".CompletionCoordinatorService
> [0m[0m21:40:39,901 INFO [org.jboss.as.webservices] (MSC service thread 1-1) JBAS015539: Starting service jboss.ws.endpoint."ws-t11-coordinator.deployment".BusinessAgreementWithParticipantCompletionCoordinatorService
> [0m[0m21:40:39,940 INFO [org.wildfly.extension.undertow] (MSC service thread 1-2) JBAS018210: Register web context: /ws-c11
> [0m[0m21:40:40,086 INFO [org.wildfly.extension.undertow] (MSC service thread 1-2) JBAS018210: Register web context: /hornetq-server
> [0m[0m21:40:40,115 INFO [org.jboss.as.webservices] (MSC service thread 1-1) JBAS015539: Starting service jboss.ws.endpoint."ws-c11.deployment".RegistrationService
> [0m[0m21:40:40,116 INFO [org.jboss.as.webservices] (MSC service thread 1-1) JBAS015539: Starting service jboss.ws.endpoint."ws-c11.deployment".ActivationService
> [0m[0m21:40:40,318 INFO [org.jboss.as.connector.deployment] (MSC service thread 1-1) JBAS010406: Registered connection factory java:/JmsXA
> [0m[0m21:40:40,520 INFO [org.jboss.jbossts.txbridge] (MSC service thread 1-2) ARJUNA033006: InboundBridgeRecoveryManager starting
> [0m[0m21:40:40,521 INFO [org.jboss.jbossts.txbridge] (MSC service thread 1-2) ARJUNA033013: OutboundBridgeRecoveryManager starting
> [0m[0m21:40:40,740 INFO [org.jboss.as.messaging] (ServerService Thread Pool -- 59) JBAS011601: Bound messaging object to jndi name java:jboss/exported/jms/ServletConnectionFactory
> [0m[0m21:40:40,746 INFO [org.jboss.as.messaging] (ServerService Thread Pool -- 60) JBAS011601: Bound messaging object to jndi name java:jboss/exported/jms/RemoteConnectionFactory
> [0m[0m21:40:40,891 INFO [org.jboss.as.remoting] (MSC service thread 1-2) JBAS017100: Listening on 127.0.0.1:9999
> [0m[0m21:40:40,899 INFO [org.jboss.as.server.deployment] (MSC service thread 1-2) JBAS015876: Starting deployment of "restat-web-5.0.0.M4-SNAPSHOT.war" (runtime-name: "restat-web-5.0.0.M4-SNAPSHOT.war")
> [0m[0m21:40:40,907 INFO [org.jboss.as.server.deployment.scanner] (MSC service thread 1-2) JBAS015012: Started FileSystemDeploymentService for directory /home/hudson/workspace/narayana-codeCoverage/jboss-as/build/target/wildfly-8.0.0.Alpha4-SNAPSHOT/standalone/deployments
> [0m[0m21:40:40,908 INFO [org.jboss.as.server.deployment] (MSC service thread 1-2) JBAS015876: Starting deployment of "xtstest.war" (runtime-name: "xtstest.war")
> [0m[33m21:40:42,176 WARN [org.jboss.as.dependency.private] (MSC service thread 1-2) JBAS018567: Deployment "deployment.restat-web-5.0.0.M4-SNAPSHOT.war" is using a private module ("org.jboss.jts:main") which may be changed or removed in future versions without notice.
> [0m[33m21:40:42,176 WARN [org.jboss.as.dependency.private] (MSC service thread 1-2) JBAS018567: Deployment "deployment.restat-web-5.0.0.M4-SNAPSHOT.war" is using a private module ("org.jboss.jts:main") which may be changed or removed in future versions without notice.
> [0m[33m21:40:42,254 WARN [org.jboss.as.dependency.private] (MSC service thread 1-2) JBAS018567: Deployment "deployment.xtstest.war" is using a private module ("org.jboss.jts:main") which may be changed or removed in future versions without notice.
> [0m[33m21:40:42,254 WARN [org.jboss.as.dependency.private] (MSC service thread 1-2) JBAS018567: Deployment "deployment.xtstest.war" is using a private module ("org.jboss.ws.jaxws-client:main") which may be changed or removed in future versions without notice.
> [0m[0m21:40:42,368 INFO [org.jboss.weld.deployer] (MSC service thread 1-2) JBAS016002: Processing weld deployment xtstest.war
> [0m[0m21:40:42,401 INFO [org.hibernate.validator.internal.util.Version] (MSC service thread 1-2) HV000001: Hibernate Validator 5.0.1.Final
> [0m[0m21:40:42,684 INFO [org.jboss.weld.deployer] (MSC service thread 1-2) JBAS016005: Starting Services for CDI deployment: xtstest.war
> [0m[0m21:40:42,743 INFO [org.jboss.weld.Version] (MSC service thread 1-2) WELD-000900 2.0.2 (Final)
> [0m[0m21:40:42,757 INFO [org.jboss.ws.cxf.metadata] (MSC service thread 1-2) JBWS024061: Adding service endpoint metadata: id=XTS_Service_Test_Subordinate_Service_One
> address=http://localhost:8080/xtstest/xtssubordinateservicetest1
> implementor=org.jboss.jbossts.xts.servicetests.service.subordinate.XTSSubordinateServiceTestPortTypeImpl
> serviceName={http://jbossts.jboss.org/xts/servicetests/generated}XTSServi...
> portName={http://jbossts.jboss.org/xts/servicetests/generated}XTSServiceT...
> annotationWsdlLocation=WEB-INF/wsdl/xtsservicetests.wsdl
> wsdlLocationOverride=null
> mtomEnabled=false
> [0m[0m21:40:42,758 INFO [org.jboss.ws.cxf.metadata] (MSC service thread 1-2) JBWS024061: Adding service endpoint metadata: id=XTS_Service_Test_Service_One
> address=http://localhost:8080/xtstest/xtsservicetest1
> implementor=org.jboss.jbossts.xts.servicetests.service.XTSServiceTestPortTypeImpl
> serviceName={http://jbossts.jboss.org/xts/servicetests/generated}XTSServi...
> portName={http://jbossts.jboss.org/xts/servicetests/generated}XTSServiceT...
> annotationWsdlLocation=WEB-INF/wsdl/xtsservicetests.wsdl
> wsdlLocationOverride=null
> mtomEnabled=false
> [0m[0m21:40:42,758 INFO [org.jboss.ws.cxf.metadata] (MSC service thread 1-2) JBWS024061: Adding service endpoint metadata: id=XTS_Service_Test_Service_Two
> address=http://localhost:8080/xtstest/xtsservicetest2
> implementor=org.jboss.jbossts.xts.servicetests.service.XTSServiceTestPortTypeImpl
> serviceName={http://jbossts.jboss.org/xts/servicetests/generated}XTSServi...
> portName={http://jbossts.jboss.org/xts/servicetests/generated}XTSServiceT...
> annotationWsdlLocation=WEB-INF/wsdl/xtsservicetests.wsdl
> wsdlLocationOverride=null
> mtomEnabled=false
> [0m[0m21:40:42,759 INFO [org.jboss.ws.cxf.metadata] (MSC service thread 1-2) JBWS024061: Adding service endpoint metadata: id=XTS_Service_Test_Service_Three
> address=http://localhost:8080/xtstest/xtsservicetest3
> implementor=org.jboss.jbossts.xts.servicetests.service.XTSServiceTestPortTypeImpl
> serviceName={http://jbossts.jboss.org/xts/servicetests/generated}XTSServi...
> portName={http://jbossts.jboss.org/xts/servicetests/generated}XTSServiceT...
> annotationWsdlLocation=WEB-INF/wsdl/xtsservicetests.wsdl
> wsdlLocationOverride=null
> mtomEnabled=false
> [0m[0m21:40:42,808 INFO [org.apache.cxf.service.factory.ReflectionServiceFactoryBean] (MSC service thread 1-2) Creating Service {http://jbossts.jboss.org/xts/servicetests/generated}XTSServiceTestService from WSDL: WEB-INF/wsdl/xtsservicetests.wsdl
> [0m[0m21:40:42,838 INFO [org.apache.cxf.endpoint.ServerImpl] (MSC service thread 1-2) Setting the server's publish address to be http://localhost:8080/xtstest/xtssubordinateservicetest1
> [0m[0m21:40:42,850 INFO [org.jboss.ws.cxf.deployment] (MSC service thread 1-2) JBWS024074: WSDL published to: file:/home/hudson/workspace/narayana-codeCoverage/jboss-as/build/target/wildfly-8.0.0.Alpha4-SNAPSHOT/standalone/data/wsdl/xtstest.war/xtsservicetests.wsdl
> [0m[0m21:40:42,851 INFO [org.apache.cxf.service.factory.ReflectionServiceFactoryBean] (MSC service thread 1-2) Creating Service {http://jbossts.jboss.org/xts/servicetests/generated}XTSServiceTestService from WSDL: WEB-INF/wsdl/xtsservicetests.wsdl
> [0m[0m21:40:42,859 INFO [org.apache.cxf.endpoint.ServerImpl] (MSC service thread 1-2) Setting the server's publish address to be http://localhost:8080/xtstest/xtsservicetest1
> [0m[0m21:40:42,884 INFO [org.jboss.ws.cxf.deployment] (MSC service thread 1-2) JBWS024074: WSDL published to: file:/home/hudson/workspace/narayana-codeCoverage/jboss-as/build/target/wildfly-8.0.0.Alpha4-SNAPSHOT/standalone/data/wsdl/xtstest.war/xtsservicetests.wsdl
> [0m[0m21:40:42,885 INFO [org.apache.cxf.service.factory.ReflectionServiceFactoryBean] (MSC service thread 1-2) Creating Service {http://jbossts.jboss.org/xts/servicetests/generated}XTSServiceTestService from WSDL: WEB-INF/wsdl/xtsservicetests.wsdl
> [0m[0m21:40:42,888 INFO [org.apache.cxf.endpoint.ServerImpl] (MSC service thread 1-2) Setting the server's publish address to be http://localhost:8080/xtstest/xtsservicetest2
> [0m[0m21:40:42,898 INFO [org.jboss.ws.cxf.deployment] (MSC service thread 1-2) JBWS024074: WSDL published to: file:/home/hudson/workspace/narayana-codeCoverage/jboss-as/build/target/wildfly-8.0.0.Alpha4-SNAPSHOT/standalone/data/wsdl/xtstest.war/xtsservicetests.wsdl
> [0m[0m21:40:42,899 INFO [org.apache.cxf.service.factory.ReflectionServiceFactoryBean] (MSC service thread 1-2) Creating Service {http://jbossts.jboss.org/xts/servicetests/generated}XTSServiceTestService from WSDL: WEB-INF/wsdl/xtsservicetests.wsdl
> [0m[0m21:40:42,902 INFO [org.apache.cxf.endpoint.ServerImpl] (MSC service thread 1-2) Setting the server's publish address to be http://localhost:8080/xtstest/xtsservicetest3
> [0m[0m21:40:42,910 INFO [org.jboss.ws.cxf.deployment] (MSC service thread 1-2) JBWS024074: WSDL published to: file:/home/hudson/workspace/narayana-codeCoverage/jboss-as/build/target/wildfly-8.0.0.Alpha4-SNAPSHOT/standalone/data/wsdl/xtstest.war/xtsservicetests.wsdl
> [0m[0m21:40:42,944 INFO [org.jboss.as.webservices] (MSC service thread 1-2) JBAS015539: Starting service jboss.ws.endpoint."xtstest.war".XTS_Service_Test_Subordinate_Service_One
> [0m[0m21:40:42,945 INFO [org.jboss.as.webservices] (MSC service thread 1-2) JBAS015539: Starting service jboss.ws.endpoint."xtstest.war".XTS_Service_Test_Service_Three
> [0m[0m21:40:42,946 INFO [org.jboss.as.webservices] (MSC service thread 1-2) JBAS015539: Starting service jboss.ws.endpoint."xtstest.war".XTS_Service_Test_Service_Two
> [0m[0m21:40:42,946 INFO [org.jboss.as.webservices] (MSC service thread 1-2) JBAS015539: Starting service jboss.ws.endpoint."xtstest.war".XTS_Service_Test_Service_One
> [0m[0m21:40:42,977 INFO [org.jboss.weld.deployer] (MSC service thread 1-2) JBAS016008: Starting weld service for deployment xtstest.war
> [0m[0m21:40:43,465 INFO [org.wildfly.extension.undertow] (MSC service thread 1-2) JBAS018210: Register web context: /rest-tx
> [0m[0m21:40:43,526 INFO [org.jboss.as.messaging] (ServerService Thread Pool -- 58) JBAS011601: Bound messaging object to jndi name java:/ConnectionFactory
> [0m[0m21:40:43,527 INFO [org.jboss.as.messaging] (ServerService Thread Pool -- 58) JBAS011601: Bound messaging object to jndi name java:jboss/DefaultJMSConnectionFactory
> [0m[0m21:40:43,530 INFO [org.hornetq.ra] (MSC service thread 1-1) HornetQ resource adaptor started
> [0m[0m21:40:43,531 INFO [org.jboss.as.connector.services.resourceadapters.ResourceAdapterActivatorService$ResourceAdapterActivator] (MSC service thread 1-1) IJ020002: Deployed: file://RaActivatorhornetq-ra
> [0m[0m21:40:43,533 INFO [org.jboss.as.connector.deployment] (MSC service thread 1-1) JBAS010401: Bound JCA ConnectionFactory [java:/JmsXA]
> [0m[0m21:40:44,430 INFO [org.jboss.jbossts.xts.servicetests.bean.XTSServiceTestRunnerBean] (MSC service thread 1-1) Starting XTSServiceTestRunner
> [0m[0m21:40:44,533 INFO [org.jboss.jbossts.xts.servicetests.bean.XTSServiceTestRunnerBean] (MSC service thread 1-1) Started XTSServiceTestRunner
> [0m[0m21:40:44,555 INFO [org.wildfly.extension.undertow] (MSC service thread 1-1) JBAS018210: Register web context: /xtstest
> [0m[0m21:40:44,632 INFO [org.jboss.as.server] (Controller Boot Thread) JBAS018559: Deployed "xtstest.war" (runtime-name : "xtstest.war")
> [0m[0m21:40:44,633 INFO [org.jboss.as.server] (ServerService Thread Pool -- 31) JBAS018559: Deployed "restat-web-5.0.0.M4-SNAPSHOT.war" (runtime-name : "restat-web-5.0.0.M4-SNAPSHOT.war")
> [0m[0m21:40:45,336 INFO [org.jboss.as] (Controller Boot Thread) JBAS015961: Http management interface listening on http://127.0.0.1:9990/management
> [0m[0m21:40:45,337 INFO [org.jboss.as] (Controller Boot Thread) JBAS015951: Admin console listening on http://127.0.0.1:9990
> [0m[0m21:40:45,337 INFO [org.jboss.as] (Controller Boot Thread) JBAS015874: WildFly 8.0.0.Alpha4-SNAPSHOT "WildFly" started in 17919ms - Started 398 of 431 services (72 services are lazy, passive or on-demand)
> [0mJul 19, 2013 9:40:45 PM org.jboss.arquillian.container.test.impl.client.container.ClientContainerController start
> INFO: Automatic deploying of the managed deployment with name txbridge-outbound-tests-service for the container with name jboss
> [0m21:40:45,433 INFO [org.jboss.as.repository] (management-handler-thread - 2) JBAS014900: Content added at location /home/hudson/workspace/narayana-codeCoverage/jboss-as/build/target/wildfly-8.0.0.Alpha4-SNAPSHOT/standalone/data/content/31/4cb56547f2db014d734fde3fe60f67ad9f66c4/content
> [0m[0m21:40:45,436 INFO [org.jboss.as.server.deployment] (MSC service thread 1-1) JBAS015876: Starting deployment of "txbridge-outbound-tests-service.war" (runtime-name: "txbridge-outbound-tests-service.war")
> [0m[33m21:40:45,749 WARN [org.jboss.as.dependency.private] (MSC service thread 1-1) JBAS018567: Deployment "deployment.txbridge-outbound-tests-service.war" is using a private module ("org.jboss.jts:main") which may be changed or removed in future versions without notice.
> [0m[0m21:40:45,780 INFO [org.jboss.as.ejb3.deployment.processors.EjbJndiBindingsDeploymentUnitProcessor] (MSC service thread 1-1) JNDI bindings for session bean named TestRecoveryModule in deployment unit deployment "txbridge-outbound-tests-service.war" are as follows:
> java:global/txbridge-outbound-tests-service/TestRecoveryModule!org.jboss.jbossts.xts.recovery.participant.at.XTSATRecoveryModule
> java:app/txbridge-outbound-tests-service/TestRecoveryModule!org.jboss.jbossts.xts.recovery.participant.at.XTSATRecoveryModule
> java:module/TestRecoveryModule!org.jboss.jbossts.xts.recovery.participant.at.XTSATRecoveryModule
> java:global/txbridge-outbound-tests-service/TestRecoveryModule
> java:app/txbridge-outbound-tests-service/TestRecoveryModule
> java:module/TestRecoveryModule
> [0m[0m21:40:45,898 INFO [org.jboss.ws.cxf.metadata] (MSC service thread 1-2) JBWS024061: Adding service endpoint metadata: id=OutboundTestServiceServlet
> address=http://localhost:8080/txbridge-outbound-tests-service/TestServiceImpl
> implementor=org.jboss.jbossts.txbridge.tests.outbound.service.TestServiceImpl
> serviceName={http://client.outbound.tests.txbridge.jbossts.jboss.org/}Tes...
> portName={http://client.outbound.tests.txbridge.jbossts.jboss.org/}TestSe...
> annotationWsdlLocation=null
> wsdlLocationOverride=null
> mtomEnabled=false
> [0m[0m21:40:45,911 INFO [org.apache.cxf.service.factory.ReflectionServiceFactoryBean] (MSC service thread 1-2) Creating Service {http://client.outbound.tests.txbridge.jbossts.jboss.org/}TestServiceImplService from class org.jboss.jbossts.txbridge.tests.outbound.service.TestServiceImpl
> [0m[0m21:40:45,930 INFO [org.apache.cxf.endpoint.ServerImpl] (MSC service thread 1-2) Setting the server's publish address to be http://localhost:8080/txbridge-outbound-tests-service/TestServiceImpl
> [0m[0m21:40:45,942 INFO [org.jboss.ws.cxf.deployment] (MSC service thread 1-2) JBWS024074: WSDL published to: file:/home/hudson/workspace/narayana-codeCoverage/jboss-as/build/target/wildfly-8.0.0.Alpha4-SNAPSHOT/standalone/data/wsdl/txbridge-outbound-tests-service.war/TestServiceImplService.wsdl
> [0m[0m21:40:45,947 INFO [org.jboss.as.webservices] (MSC service thread 1-1) JBAS015539: Starting service jboss.ws.endpoint."txbridge-outbound-tests-service.war".OutboundTestServiceServlet
> [0m[0m21:40:46,000 INFO [org.jboss.jbossts.txbridge.tests.outbound.utility.TestRecoveryModule] (ServerService Thread Pool -- 24) TestRecoveryModule starting
> [0m[0m21:40:46,000 INFO [org.jboss.jbossts.txbridge.tests.outbound.utility.TestRecoveryModule] (ServerService Thread Pool -- 24) trying to get XTSATRecoverManager = org.jboss.jbossts.xts.recovery.participant.at.XTSATRecoveryManagerImple@12f44d9
> [0m[0m21:40:46,115 INFO [org.wildfly.extension.undertow] (MSC service thread 1-2) JBAS018210: Register web context: /txbridge-outbound-tests-service
> [0m[0m21:40:46,301 INFO [org.jboss.as.server] (management-handler-thread - 2) JBAS018559: Deployed "txbridge-outbound-tests-service.war" (runtime-name : "txbridge-outbound-tests-service.war")
> [0mJul 19, 2013 9:40:46 PM org.jboss.arquillian.container.test.impl.client.container.ClientContainerController start
> INFO: Automatic deploying of the managed deployment with name txbridge-outbound-tests-client for the container with name jboss
> [0m21:40:46,905 INFO [org.jboss.as.repository] (management-handler-thread - 2) JBAS014900: Content added at location /home/hudson/workspace/narayana-codeCoverage/jboss-as/build/target/wildfly-8.0.0.Alpha4-SNAPSHOT/standalone/data/content/ff/4c5e7de8ab8a5109a858d9cfe468ee99e28927/content
> [0m[0m21:40:46,906 INFO [org.jboss.as.server.deployment] (MSC service thread 1-2) JBAS015876: Starting deployment of "txbridge-outbound-tests-client.war" (runtime-name: "txbridge-outbound-tests-client.war")
> [0m[33m21:40:46,926 WARN [org.jboss.as.dependency.private] (MSC service thread 1-1) JBAS018567: Deployment "deployment.txbridge-outbound-tests-client.war" is using a private module ("org.jboss.jts:main") which may be changed or removed in future versions without notice.
> [0m[0m21:40:46,958 INFO [org.wildfly.extension.undertow] (MSC service thread 1-2) JBAS018210: Register web context: /txbridge-outbound-tests-client
> [0m[0m21:40:47,063 INFO [org.jboss.as.server] (management-handler-thread - 2) JBAS018559: Deployed "txbridge-outbound-tests-client.war" (runtime-name : "txbridge-outbound-tests-client.war")
> [0minstalling: RULE org.jboss.byteman.contrib.dtest.Instrumentor_org.jboss.jbossts.txbridge.tests.outbound.utility.TestVolatileParticipant_error_remotetrace_entry
> CLASS org.jboss.jbossts.txbridge.tests.outbound.utility.TestVolatileParticipant
> METHOD error
> HELPER org.jboss.byteman.contrib.dtest.BytemanTestHelper
> AT ENTRY
> IF true
> DO setTriggering(false), debug("firing org.jboss.byteman.contrib.dtest.Instrumentor_org.jboss.jbossts.txbridge.tests.outbound.utility.TestVolatileParticipant_error_remotetrace_entry", $0), remoteTrace("org.jboss.jbossts.txbridge.tests.outbound.utility.TestVolatileParticipant", "error", $*)
> ENDRULE
> RULE org.jboss.byteman.contrib.dtest.Instrumentor_org.jboss.jbossts.txbridge.tests.outbound.utility.TestVolatileParticipant_rollback_remotetrace_entry
> CLASS org.jboss.jbossts.txbridge.tests.outbound.utility.TestVolatileParticipant
> METHOD rollback
> HELPER org.jboss.byteman.contrib.dtest.BytemanTestHelper
> AT ENTRY
> IF true
> DO setTriggering(false), debug("firing org.jboss.byteman.contrib.dtest.Instrumentor_org.jboss.jbossts.txbridge.tests.outbound.utility.TestVolatileParticipant_rollback_remotetrace_entry", $0), remoteTrace("org.jboss.jbossts.txbridge.tests.outbound.utility.TestVolatileParticipant", "rollback", $*)
> ENDRULE
> RULE org.jboss.byteman.contrib.dtest.Instrumentor_org.jboss.jbossts.txbridge.tests.outbound.utility.TestVolatileParticipant_prepare_remotetrace_entry
> CLASS org.jboss.jbossts.txbridge.tests.outbound.utility.TestVolatileParticipant
> METHOD prepare
> HELPER org.jboss.byteman.contrib.dtest.BytemanTestHelper
> AT ENTRY
> IF true
> DO setTriggering(false), debug("firing org.jboss.byteman.contrib.dtest.Instrumentor_org.jboss.jbossts.txbridge.tests.outbound.utility.TestVolatileParticipant_prepare_remotetrace_entry", $0), remoteTrace("org.jboss.jbossts.txbridge.tests.outbound.utility.TestVolatileParticipant", "prepare", $*)
> ENDRULE
> RULE org.jboss.byteman.contrib.dtest.Instrumentor_org.jboss.jbossts.txbridge.tests.outbound.utility.TestVolatileParticipant_commit_remotetrace_entry
> CLASS org.jboss.jbossts.txbridge.tests.outbound.utility.TestVolatileParticipant
> METHOD commit
> HELPER org.jboss.byteman.contrib.dtest.BytemanTestHelper
> AT ENTRY
> IF true
> DO setTriggering(false), debug("firing org.jboss.byteman.contrib.dtest.Instrumentor_org.jboss.jbossts.txbridge.tests.outbound.utility.TestVolatileParticipant_commit_remotetrace_entry", $0), remoteTrace("org.jboss.jbossts.txbridge.tests.outbound.utility.TestVolatileParticipant", "commit", $*)
> ENDRULE
> RULE org.jboss.byteman.contrib.dtest.Instrumentor_org.jboss.jbossts.txbridge.tests.outbound.utility.TestVolatileParticipant_unknown_remotetrace_entry
> CLASS org.jboss.jbossts.txbridge.tests.outbound.utility.TestVolatileParticipant
> METHOD unknown
> HELPER org.jboss.byteman.contrib.dtest.BytemanTestHelper
> AT ENTRY
> IF true
> DO setTriggering(false), debug("firing org.jboss.byteman.contrib.dtest.Instrumentor_org.jboss.jbossts.txbridge.tests.outbound.utility.TestVolatileParticipant_unknown_remotetrace_entry", $0), remoteTrace("org.jboss.jbossts.txbridge.tests.outbound.utility.TestVolatileParticipant", "unknown", $*)
> ENDRULE
> [0m21:40:47,072 INFO [stdout] (Thread-0) TransformListener() : handling connection on port 9091
> [0minstalling: RULE org.jboss.byteman.contrib.dtest.Instrumentor_org.jboss.jbossts.txbridge.tests.outbound.utility.TestDurableParticipant_error_remotetrace_entry
> CLASS org.jboss.jbossts.txbridge.tests.outbound.utility.TestDurableParticipant
> METHOD error
> HELPER org.jboss.byteman.contrib.dtest.BytemanTestHelper
> AT ENTRY
> IF true
> DO setTriggering(false), debug("firing org.jboss.byteman.contrib.dtest.Instrumentor_org.jboss.jbossts.txbridge.tests.outbound.utility.TestDurableParticipant_error_remotetrace_entry", $0), remoteTrace("org.jboss.jbossts.txbridge.tests.outbound.utility.TestDurableParticipant", "error", $*)
> ENDRULE
> RULE org.jboss.byteman.contrib.dtest.Instrumentor_org.jboss.jbossts.txbridge.tests.outbound.utility.TestDurableParticipant_rollback_remotetrace_entry
> CLASS org.jboss.jbossts.txbridge.tests.outbound.utility.TestDurableParticipant
> METHOD rollback
> HELPER org.jboss.byteman.contrib.dtest.BytemanTestHelper
> AT ENTRY
> IF true
> DO setTriggering(false), debug("firing org.jboss.byteman.contrib.dtest.Instrumentor_org.jboss.jbossts.txbridge.tests.outbound.utility.TestDurableParticipant_rollback_remotetrace_entry", $0), remoteTrace("org.jboss.jbossts.txbridge.tests.outbound.utility.TestDurableParticipant", "rollback", $*)
> ENDRULE
> RULE org.jboss.byteman.contrib.dtest.Instrumentor_org.jboss.jbossts.txbridge.tests.outbound.utility.TestDurableParticipant_prepare_remotetrace_entry
> CLASS org.jboss.jbossts.txbridge.tests.outbound.utility.TestDurableParticipant
> METHOD prepare
> HELPER org.jboss.byteman.contrib.dtest.BytemanTestHelper
> AT ENTRY
> IF true
> DO setTriggering(false), debug("firing org.jboss.byteman.contrib.dtest.Instrumentor_org.jboss.jbossts.txbridge.tests.outbound.utility.TestDurableParticipant_prepare_remotetrace_entry", $0), remoteTrace("org.jboss.jbossts.txbridge.tests.outbound.utility.TestDurableParticipant", "prepare", $*)
> ENDRULE
> RULE org.jboss.byteman.contrib.dtest.Instrumentor_org.jboss.jbossts.txbridge.tests.outbound.utility.TestDurableParticipant_commit_remotetrace_entry
> CLASS org.jboss.jbossts.txbridge.tests.outbound.utility.TestDurableParticipant
> METHOD commit
> HELPER org.jboss.byteman.contrib.dtest.BytemanTestHelper
> AT ENTRY
> IF true
> DO setTriggering(false), debug("firing org.jboss.byteman.contrib.dtest.Instrumentor_org.jboss.jbossts.txbridge.tests.outbound.utility.TestDurableParticipant_commit_remotetrace_entry", $0), remoteTrace("org.jboss.jbossts.txbridge.tests.outbound.utility.TestDurableParticipant", "commit", $*)
> ENDRULE
> RULE org.jboss.byteman.contrib.dtest.Instrumentor_org.jboss.jbossts.txbridge.tests.outbound.utility.TestDurableParticipant_unknown_remotetrace_entry
> CLASS org.jboss.jbossts.txbridge.tests.outbound.utility.TestDurableParticipant
> METHOD unknown
> HELPER org.jboss.byteman.contrib.dtest.BytemanTestHelper
> AT ENTRY
> IF true
> DO setTriggering(false), debug("firing org.jboss.byteman.contrib.dtest.Instrumentor_org.jboss.jbossts.txbridge.tests.outbound.utility.TestDurableParticipant_unknown_remotetrace_entry", $0), remoteTrace("org.jboss.jbossts.txbridge.tests.outbound.utility.TestDurableParticipant", "unknown", $*)
> ENDRULE
> installing: RULE org.jboss.byteman.contrib.dtest.Instrumentor_org.jboss.jbossts.txbridge.tests.outbound.service.TestServiceImpl_doNothing_injectionatENTRY
> CLASS org.jboss.jbossts.txbridge.tests.outbound.service.TestServiceImpl
> METHOD doNothing
> HELPER org.jboss.byteman.contrib.dtest.BytemanTestHelper
> AT ENTRY
> IF true
> DO $0.enlistVolatileParticipant(1), $0.enlistDurableParticipant(1)
> ENDRULE
> [0m21:40:47,256 INFO [stdout] (Thread-0) TransformListener() : handling connection on port 9091
> [0m[0m21:40:47,329 INFO [stdout] (Thread-0) TransformListener() : handling connection on port 9091
> [0m[0m21:40:47,402 INFO [stdout] (Thread-0) retransforming org.jboss.jbossts.txbridge.tests.outbound.service.TestServiceImpl
> [0m[0m21:40:47,511 INFO [stdout] (Thread-0) org.jboss.byteman.agent.Transformer : possible trigger for rule org.jboss.byteman.contrib.dtest.Instrumentor_org.jboss.jbossts.txbridge.tests.outbound.service.TestServiceImpl_doNothing_injectionatENTRY in class org.jboss.jbossts.txbridge.tests.outbound.service.TestServiceImpl
> [0minstalling: RULE org.jboss.byteman.contrib.dtest.Instrumentor_org.jboss.jbossts.txbridge.tests.outbound.utility.TestVolatileParticipant_prepare_injectionatENTRY
> CLASS org.jboss.jbossts.txbridge.tests.outbound.utility.TestVolatileParticipant
> METHOD prepare
> HELPER org.jboss.byteman.contrib.dtest.BytemanTestHelper
> AT ENTRY
> IF true
> DO return new com.arjuna.wst.Aborted()
> ENDRULE
> installing: RULE org.jboss.byteman.contrib.dtest.Instrumentor_org.jboss.jbossts.txbridge.tests.outbound.client.TestClient_terminateTransaction_injectionatENTRY
> CLASS org.jboss.jbossts.txbridge.tests.outbound.client.TestClient
> METHOD terminateTransaction
> HELPER org.jboss.byteman.contrib.dtest.BytemanTestHelper
> AT ENTRY
> IF true
> DO $1 = true
> ENDRULE
> [0m21:40:47,538 INFO [stdout] (Thread-0) RuleTriggerMethodAdapter.injectTriggerPoint : inserting trigger into org.jboss.jbossts.txbridge.tests.outbound.service.TestServiceImpl.doNothing() void for rule org.jboss.byteman.contrib.dtest.Instrumentor_org.jboss.jbossts.txbridge.tests.outbound.service.TestServiceImpl_doNothing_injectionatENTRY
> [0m[0m21:40:47,544 INFO [stdout] (Thread-0) org.jboss.byteman.agent.Transformer : inserted trigger for org.jboss.byteman.contrib.dtest.Instrumentor_org.jboss.jbossts.txbridge.tests.outbound.service.TestServiceImpl_doNothing_injectionatENTRY in class org.jboss.jbossts.txbridge.tests.outbound.service.TestServiceImpl
> [0m[0m21:40:47,572 INFO [stdout] (Thread-0) TransformListener() : handling connection on port 9091
> [0m[0m21:40:47,593 INFO [stdout] (Thread-0) TransformListener() : handling connection on port 9091
> [0m[0m21:40:47,611 INFO [stdout] (Thread-0) retransforming org.jboss.jbossts.txbridge.tests.outbound.client.TestClient
> [0m[0m21:40:47,615 INFO [stdout] (Thread-0) org.jboss.byteman.agent.Transformer : possible trigger for rule org.jboss.byteman.contrib.dtest.Instrumentor_org.jboss.jbossts.txbridge.tests.outbound.client.TestClient_terminateTransaction_injectionatENTRY in class org.jboss.jbossts.txbridge.tests.outbound.client.TestClient
> [0m[0m21:40:47,633 INFO [stdout] (Thread-0) RuleTriggerMethodAdapter.injectTriggerPoint : inserting trigger into org.jboss.jbossts.txbridge.tests.outbound.client.TestClient.terminateTransaction(boolean) void for rule org.jboss.byteman.contrib.dtest.Instrumentor_org.jboss.jbossts.txbridge.tests.outbound.client.TestClient_terminateTransaction_injectionatENTRY
> [0m[0m21:40:47,635 INFO [stdout] (Thread-0) org.jboss.byteman.agent.Transformer : inserted trigger for org.jboss.byteman.contrib.dtest.Instrumentor_org.jboss.jbossts.txbridge.tests.outbound.client.TestClient_terminateTransaction_injectionatENTRY in class org.jboss.jbossts.txbridge.tests.outbound.client.TestClient
> [0m[0m21:40:49,749 INFO [org.apache.cxf.service.factory.ReflectionServiceFactoryBean] (default task-1) Creating Service {http://client.outbound.tests.txbridge.jbossts.jboss.org/}TestServiceImplService from WSDL: http://localhost:8080/txbridge-outbound-tests-service/TestServiceImpl?wsdl
> [0m[33m21:40:49,760 WARNING [org.apache.cxf.service.factory.ReflectionServiceFactoryBean] (default task-1) No method was found for the WSDL operation {http://client.outbound.tests.txbridge.jbossts.jboss.org/}enlistDurableParticipant.
> [0m[33m21:40:49,761 WARNING [org.apache.cxf.service.factory.ReflectionServiceFactoryBean] (default task-1) No method was found for the WSDL operation {http://client.outbound.tests.txbridge.jbossts.jboss.org/}enlistVolatileParticipant.
> [0m[0m21:40:49,763 INFO [org.apache.cxf.service.factory.ReflectionServiceFactoryBean] (default task-1) Creating Service {http://client.outbound.tests.txbridge.jbossts.jboss.org/}TestServiceImplService from WSDL: http://localhost:8080/txbridge-outbound-tests-service/TestServiceImpl?wsdl
> [0m[33m21:40:49,766 WARNING [org.apache.cxf.service.factory.ReflectionServiceFactoryBean] (default task-1) No method was found for the WSDL operation {http://client.outbound.tests.txbridge.jbossts.jboss.org/}enlistDurableParticipant.
> [0m[33m21:40:49,767 WARNING [org.apache.cxf.service.factory.ReflectionServiceFactoryBean] (default task-1) No method was found for the WSDL operation {http://client.outbound.tests.txbridge.jbossts.jboss.org/}enlistVolatileParticipant.
> [0m[0m21:40:49,790 INFO [org.jboss.jbossts.txbridge.tests.outbound.client.TestClient] (default task-1) starting the transaction...
> [0m[0m21:40:49,792 INFO [org.jboss.jbossts.txbridge.tests.outbound.client.TestClient] (default task-1) transaction ID= org.jboss.tm.usertx.client.ServerVMClientUserTransaction@1fddddb
> [0m[0m21:40:49,793 INFO [org.jboss.jbossts.txbridge.tests.outbound.client.TestClient] (default task-1) calling business Web Services...
> [0m[0m21:40:50,046 INFO [stdout] (default task-3) Rule.execute called for org.jboss.byteman.contrib.dtest.Instrumentor_org.jboss.jbossts.txbridge.tests.outbound.service.TestServiceImpl_doNothing_injectionatENTRY_0
> [0m[0m21:40:50,055 INFO [stdout] (default task-3) HelperManager.install for helper class org.jboss.byteman.contrib.dtest.BytemanTestHelper
> [0m[0m21:40:50,056 INFO [stdout] (default task-3) calling activated() for helper class org.jboss.byteman.contrib.dtest.BytemanTestHelper
> [0m[0m21:40:50,057 INFO [stdout] (default task-3) Default helper activated
> [0m[0m21:40:50,057 INFO [stdout] (default task-3) calling installed(org.jboss.byteman.contrib.dtest.Instrumentor_org.jboss.jbossts.txbridge.tests.outbound.service.TestServiceImpl_doNothing_injectionatENTRY) for helper classorg.jboss.byteman.contrib.dtest.BytemanTestHelper
> [0m[0m21:40:50,058 INFO [stdout] (default task-3) Installed rule using default helper : org.jboss.byteman.contrib.dtest.Instrumentor_org.jboss.jbossts.txbridge.tests.outbound.service.TestServiceImpl_doNothing_injectionatENTRY
> [0m[0m21:40:50,067 INFO [stdout] (default task-3) org.jboss.byteman.contrib.dtest.Instrumentor_org.jboss.jbossts.txbridge.tests.outbound.service.TestServiceImpl_doNothing_injectionatENTRY execute()
> [0m[0m21:40:50,071 INFO [stdout] (default task-3) org.jboss.byteman.agent.Transformer : possible trigger for rule org.jboss.byteman.contrib.dtest.Instrumentor_org.jboss.jbossts.txbridge.tests.outbound.utility.TestVolatileParticipant_prepare_injectionatENTRY in class org.jboss.jbossts.txbridge.tests.outbound.utility.TestVolatileParticipant
> [0m[0m21:40:50,077 INFO [stdout] (default task-3) RuleTriggerMethodAdapter.injectTriggerPoint : inserting trigger into org.jboss.jbossts.txbridge.tests.outbound.utility.TestVolatileParticipant.prepare() com.arjuna.wst.Vote for rule org.jboss.byteman.contrib.dtest.Instrumentor_org.jboss.jbossts.txbridge.tests.outbound.utility.TestVolatileParticipant_prepare_injectionatENTRY
> [0m[0m21:40:50,078 INFO [stdout] (default task-3) org.jboss.byteman.agent.Transformer : inserted trigger for org.jboss.byteman.contrib.dtest.Instrumentor_org.jboss.jbossts.txbridge.tests.outbound.utility.TestVolatileParticipant_prepare_injectionatENTRY in class org.jboss.jbossts.txbridge.tests.outbound.utility.TestVolatileParticipant
> [0m[0m21:40:50,080 INFO [stdout] (default task-3) org.jboss.byteman.agent.Transformer : possible trigger for rule org.jboss.byteman.contrib.dtest.Instrumentor_org.jboss.jbossts.txbridge.tests.outbound.utility.TestVolatileParticipant_unknown_remotetrace_entry in class org.jboss.jbossts.txbridge.tests.outbound.utility.TestVolatileParticipant
> [0m[0m21:40:50,081 INFO [stdout] (default task-3) RuleTriggerMethodAdapter.injectTriggerPoint : inserting trigger into org.jboss.jbossts.txbridge.tests.outbound.utility.TestVolatileParticipant.unknown() void for rule org.jboss.byteman.contrib.dtest.Instrumentor_org.jboss.jbossts.txbridge.tests.outbound.utility.TestVolatileParticipant_unknown_remotetrace_entry
> [0m[0m21:40:50,082 INFO [stdout] (default task-3) org.jboss.byteman.agent.Transformer : inserted trigger for org.jboss.byteman.contrib.dtest.Instrumentor_org.jboss.jbossts.txbridge.tests.outbound.utility.TestVolatileParticipant_unknown_remotetrace_entry in class org.jboss.jbossts.txbridge.tests.outbound.utility.TestVolatileParticipant
> [0m[0m21:40:50,084 INFO [stdout] (default task-3) org.jboss.byteman.agent.Transformer : possible trigger for rule org.jboss.byteman.contrib.dtest.Instrumentor_org.jboss.jbossts.txbridge.tests.outbound.utility.TestVolatileParticipant_commit_remotetrace_entry in class org.jboss.jbossts.txbridge.tests.outbound.utility.TestVolatileParticipant
> [0m[0m21:40:50,085 INFO [stdout] (default task-3) RuleTriggerMethodAdapter.injectTriggerPoint : inserting trigger into org.jboss.jbossts.txbridge.tests.outbound.utility.TestVolatileParticipant.commit() void for rule org.jboss.byteman.contrib.dtest.Instrumentor_org.jboss.jbossts.txbridge.tests.outbound.utility.TestVolatileParticipant_commit_remotetrace_entry
> [0m[0m21:40:50,086 INFO [stdout] (default task-3) org.jboss.byteman.agent.Transformer : inserted trigger for org.jboss.byteman.contrib.dtest.Instrumentor_org.jboss.jbossts.txbridge.tests.outbound.utility.TestVolatileParticipant_commit_remotetrace_entry in class org.jboss.jbossts.txbridge.tests.outbound.utility.TestVolatileParticipant
> [0m[0m21:40:50,088 INFO [stdout] (default task-3) org.jboss.byteman.agent.Transformer : possible trigger for rule org.jboss.byteman.contrib.dtest.Instrumentor_org.jboss.jbossts.txbridge.tests.outbound.utility.TestVolatileParticipant_prepare_remotetrace_entry in class org.jboss.jbossts.txbridge.tests.outbound.utility.TestVolatileParticipant
> [0m[0m21:40:50,088 INFO [stdout] (default task-3) RuleTriggerMethodAdapter.injectTriggerPoint : inserting trigger into org.jboss.jbossts.txbridge.tests.outbound.utility.TestVolatileParticipant.prepare() com.arjuna.wst.Vote for rule org.jboss.byteman.contrib.dtest.Instrumentor_org.jboss.jbossts.txbridge.tests.outbound.utility.TestVolatileParticipant_prepare_remotetrace_entry
> [0m[0m21:40:50,090 INFO [stdout] (default task-3) org.jboss.byteman.agent.Transformer : inserted trigger for org.jboss.byteman.contrib.dtest.Instrumentor_org.jboss.jbossts.txbridge.tests.outbound.utility.TestVolatileParticipant_prepare_remotetrace_entry in class org.jboss.jbossts.txbridge.tests.outbound.utility.TestVolatileParticipant
> [0m[0m21:40:50,092 INFO [stdout] (default task-3) org.jboss.byteman.agent.Transformer : possible trigger for rule org.jboss.byteman.contrib.dtest.Instrumentor_org.jboss.jbossts.txbridge.tests.outbound.utility.TestVolatileParticipant_rollback_remotetrace_entry in class org.jboss.jbossts.txbridge.tests.outbound.utility.TestVolatileParticipant
> [0m[0m21:40:50,094 INFO [stdout] (default task-3) RuleTriggerMethodAdapter.injectTriggerPoint : inserting trigger into org.jboss.jbossts.txbridge.tests.outbound.utility.TestVolatileParticipant.rollback() void for rule org.jboss.byteman.contrib.dtest.Instrumentor_org.jboss.jbossts.txbridge.tests.outbound.utility.TestVolatileParticipant_rollback_remotetrace_entry
> [0m[0m21:40:50,095 INFO [stdout] (default task-3) org.jboss.byteman.agent.Transformer : inserted trigger for org.jboss.byteman.contrib.dtest.Instrumentor_org.jboss.jbossts.txbridge.tests.outbound.utility.TestVolatileParticipant_rollback_remotetrace_entry in class org.jboss.jbossts.txbridge.tests.outbound.utility.TestVolatileParticipant
> [0m[0m21:40:50,097 INFO [stdout] (default task-3) org.jboss.byteman.agent.Transformer : possible trigger for rule org.jboss.byteman.contrib.dtest.Instrumentor_org.jboss.jbossts.txbridge.tests.outbound.utility.TestVolatileParticipant_error_remotetrace_entry in class org.jboss.jbossts.txbridge.tests.outbound.utility.TestVolatileParticipant
> [0m[0m21:40:50,099 INFO [stdout] (default task-3) RuleTriggerMethodAdapter.injectTriggerPoint : inserting trigger into org.jboss.jbossts.txbridge.tests.outbound.utility.TestVolatileParticipant.error() void for rule org.jboss.byteman.contrib.dtest.Instrumentor_org.jboss.jbossts.txbridge.tests.outbound.utility.TestVolatileParticipant_error_remotetrace_entry
> [0m[0m21:40:50,100 INFO [stdout] (default task-3) org.jboss.byteman.agent.Transformer : inserted trigger for org.jboss.byteman.contrib.dtest.Instrumentor_org.jboss.jbossts.txbridge.tests.outbound.utility.TestVolatileParticipant_error_remotetrace_entry in class org.jboss.jbossts.txbridge.tests.outbound.utility.TestVolatileParticipant
> [0m[0m21:40:50,219 INFO [org.apache.cxf.service.factory.ReflectionServiceFactoryBean] (default task-3) Creating Service {http://docs.oasis-open.org/ws-tx/wscoor/2006/06}RegistrationService from WSDL: jar:file:/home/hudson/workspace/narayana-codeCoverage/jboss-as/build/target/wildfly-8.0.0.Alpha4-SNAPSHOT/modules/system/layers/base/org/jboss/xts/main/jbossxts-5.0.0.M4-SNAPSHOT.jar!/org/oasis_open/docs/ws_tx/wscoor/_2006/_06/wsdl/wscoor-registration-binding.wsdl
> [0m[0m21:40:50,841 INFO [stdout] (default task-3) org.jboss.byteman.agent.Transformer : possible trigger for rule org.jboss.byteman.contrib.dtest.Instrumentor_org.jboss.jbossts.txbridge.tests.outbound.utility.TestDurableParticipant_unknown_remotetrace_entry in class org.jboss.jbossts.txbridge.tests.outbound.utility.TestDurableParticipant
> [0m[0m21:40:50,843 INFO [stdout] (default task-3) RuleTriggerMethodAdapter.injectTriggerPoint : inserting trigger into org.jboss.jbossts.txbridge.tests.outbound.utility.TestDurableParticipant.unknown() void for rule org.jboss.byteman.contrib.dtest.Instrumentor_org.jboss.jbossts.txbridge.tests.outbound.utility.TestDurableParticipant_unknown_remotetrace_entry
> [0m[0m21:40:50,844 INFO [stdout] (default task-3) org.jboss.byteman.agent.Transformer : inserted trigger for org.jboss.byteman.contrib.dtest.Instrumentor_org.jboss.jbossts.txbridge.tests.outbound.utility.TestDurableParticipant_unknown_remotetrace_entry in class org.jboss.jbossts.txbridge.tests.outbound.utility.TestDurableParticipant
> [0m[0m21:40:50,846 INFO [stdout] (default task-3) org.jboss.byteman.agent.Transformer : possible trigger for rule org.jboss.byteman.contrib.dtest.Instrumentor_org.jboss.jbossts.txbridge.tests.outbound.utility.TestDurableParticipant_commit_remotetrace_entry in class org.jboss.jbossts.txbridge.tests.outbound.utility.TestDurableParticipant
> [0m[0m21:40:51,855 INFO [stdout] (default task-3) RuleTriggerMethodAdapter.injectTriggerPoint : inserting trigger into org.jboss.jbossts.txbridge.tests.outbound.utility.TestDurableParticipant.commit() void for rule org.jboss.byteman.contrib.dtest.Instrumentor_org.jboss.jbossts.txbridge.tests.outbound.utility.TestDurableParticipant_commit_remotetrace_entry
> [0m[0m21:40:51,857 INFO [stdout] (default task-3) org.jboss.byteman.agent.Transformer : inserted trigger for org.jboss.byteman.contrib.dtest.Instrumentor_org.jboss.jbossts.txbridge.tests.outbound.utility.TestDurableParticipant_commit_remotetrace_entry in class org.jboss.jbossts.txbridge.tests.outbound.utility.TestDurableParticipant
> [0m[0m21:40:51,860 INFO [stdout] (default task-3) org.jboss.byteman.agent.Transformer : possible trigger for rule org.jboss.byteman.contrib.dtest.Instrumentor_org.jboss.jbossts.txbridge.tests.outbound.utility.TestDurableParticipant_prepare_remotetrace_entry in class org.jboss.jbossts.txbridge.tests.outbound.utility.TestDurableParticipant
> [0m[0m21:40:51,862 INFO [stdout] (default task-3) RuleTriggerMethodAdapter.injectTriggerPoint : inserting trigger into org.jboss.jbossts.txbridge.tests.outbound.utility.TestDurableParticipant.prepare() com.arjuna.wst.Vote for rule org.jboss.byteman.contrib.dtest.Instrumentor_org.jboss.jbossts.txbridge.tests.outbound.utility.TestDurableParticipant_prepare_remotetrace_entry
> [0m[0m21:40:51,864 INFO [stdout] (default task-3) org.jboss.byteman.agent.Transformer : inserted trigger for org.jboss.byteman.contrib.dtest.Instrumentor_org.jboss.jbossts.txbridge.tests.outbound.utility.TestDurableParticipant_prepare_remotetrace_entry in class org.jboss.jbossts.txbridge.tests.outbound.utility.TestDurableParticipant
> [0m[0m21:40:51,867 INFO [stdout] (default task-3) org.jboss.byteman.agent.Transformer : possible trigger for rule org.jboss.byteman.contrib.dtest.Instrumentor_org.jboss.jbossts.txbridge.tests.outbound.utility.TestDurableParticipant_rollback_remotetrace_entry in class org.jboss.jbossts.txbridge.tests.outbound.utility.TestDurableParticipant
> [0m[0m21:40:51,868 INFO [stdout] (default task-3) RuleTriggerMethodAdapter.injectTriggerPoint : inserting trigger into org.jboss.jbossts.txbridge.tests.outbound.utility.TestDurableParticipant.rollback() void for rule org.jboss.byteman.contrib.dtest.Instrumentor_org.jboss.jbossts.txbridge.tests.outbound.utility.TestDurableParticipant_rollback_remotetrace_entry
> [0m[0m21:40:51,870 INFO [stdout] (default task-3) org.jboss.byteman.agent.Transformer : inserted trigger for org.jboss.byteman.contrib.dtest.Instrumentor_org.jboss.jbossts.txbridge.tests.outbound.utility.TestDurableParticipant_rollback_remotetrace_entry in class org.jboss.jbossts.txbridge.tests.outbound.utility.TestDurableParticipant
> [0m[0m21:40:51,872 INFO [stdout] (default task-3) org.jboss.byteman.agent.Transformer : possible trigger for rule org.jboss.byteman.contrib.dtest.Instrumentor_org.jboss.jbossts.txbridge.tests.outbound.utility.TestDurableParticipant_error_remotetrace_entry in class org.jboss.jbossts.txbridge.tests.outbound.utility.TestDurableParticipant
> [0m[0m21:40:51,902 INFO [stdout] (default task-3) RuleTriggerMethodAdapter.injectTriggerPoint : inserting trigger into org.jboss.jbossts.txbridge.tests.outbound.utility.TestDurableParticipant.error() void for rule org.jboss.byteman.contrib.dtest.Instrumentor_org.jboss.jbossts.txbridge.tests.outbound.utility.TestDurableParticipant_error_remotetrace_entry
> [0m[0m21:40:51,903 INFO [stdout] (default task-3) org.jboss.byteman.agent.Transformer : inserted trigger for org.jboss.byteman.contrib.dtest.Instrumentor_org.jboss.jbossts.txbridge.tests.outbound.utility.TestDurableParticipant_error_remotetrace_entry in class org.jboss.jbossts.txbridge.tests.outbound.utility.TestDurableParticipant
> [0m[0m21:40:51,931 INFO [org.apache.cxf.service.factory.ReflectionServiceFactoryBean] (default task-3) Creating Service {http://docs.oasis-open.org/ws-tx/wscoor/2006/06}RegistrationService from WSDL: jar:file:/home/hudson/workspace/narayana-codeCoverage/jboss-as/build/target/wildfly-8.0.0.Alpha4-SNAPSHOT/modules/system/layers/base/org/jboss/xts/main/jbossxts-5.0.0.M4-SNAPSHOT.jar!/org/oasis_open/docs/ws_tx/wscoor/_2006/_06/wsdl/wscoor-registration-binding.wsdl
> [0m[0m21:40:51,967 INFO [org.jboss.jbossts.txbridge.tests.outbound.client.TestClient] (default task-1) terminating the transaction...
> [0m[0m21:40:51,967 INFO [stdout] (default task-1) Rule.execute called for org.jboss.byteman.contrib.dtest.Instrumentor_org.jboss.jbossts.txbridge.tests.outbound.client.TestClient_terminateTransaction_injectionatENTRY_1
> [0m[0m21:40:51,969 INFO [stdout] (default task-1) HelperManager.install for helper class org.jboss.byteman.contrib.dtest.BytemanTestHelper
> [0m[0m21:40:51,970 INFO [stdout] (default task-1) calling installed(org.jboss.byteman.contrib.dtest.Instrumentor_org.jboss.jbossts.txbridge.tests.outbound.client.TestClient_terminateTransaction_injectionatENTRY) for helper classorg.jboss.byteman.contrib.dtest.BytemanTestHelper
> [0m[0m21:40:51,970 INFO [stdout] (default task-1) Installed rule using default helper : org.jboss.byteman.contrib.dtest.Instrumentor_org.jboss.jbossts.txbridge.tests.outbound.client.TestClient_terminateTransaction_injectionatENTRY
> [0m[0m21:40:51,971 INFO [stdout] (default task-1) org.jboss.byteman.contrib.dtest.Instrumentor_org.jboss.jbossts.txbridge.tests.outbound.client.TestClient_terminateTransaction_injectionatENTRY execute()
> [0m[0m21:40:51,972 INFO [org.jboss.jbossts.txbridge.tests.outbound.client.TestClient] (default task-1) shouldCommit=true
> [0m[0m21:40:52,049 INFO [org.apache.cxf.service.factory.ReflectionServiceFactoryBean] (default task-1) Creating Service {http://docs.oasis-open.org/ws-tx/wsat/2006/06}ParticipantService from WSDL: jar:file:/home/hudson/workspace/narayana-codeCoverage/jboss-as/build/target/wildfly-8.0.0.Alpha4-SNAPSHOT/modules/system/layers/base/org/jboss/xts/main/jbossxts-5.0.0.M4-SNAPSHOT.jar!/org/oasis_open/docs/ws_tx/wsat/_2006/_06/wsdl/wsat-participant-binding.wsdl
> [0m[0m21:40:52,173 INFO [stdout] (TaskWorker-1) Rule.execute called for org.jboss.byteman.contrib.dtest.Instrumentor_org.jboss.jbossts.txbridge.tests.outbound.utility.TestVolatileParticipant_prepare_remotetrace_entry_5
> [0m[0m21:40:52,184 INFO [stdout] (TaskWorker-1) HelperManager.install for helper class org.jboss.byteman.contrib.dtest.BytemanTestHelper
> [0m[0m21:40:52,184 INFO [stdout] (TaskWorker-1) calling installed(org.jboss.byteman.contrib.dtest.Instrumentor_org.jboss.jbossts.txbridge.tests.outbound.utility.TestVolatileParticipant_prepare_remotetrace_entry) for helper classorg.jboss.byteman.contrib.dtest.BytemanTestHelper
> [0m[0m21:40:52,185 INFO [stdout] (TaskWorker-1) Installed rule using default helper : org.jboss.byteman.contrib.dtest.Instrumentor_org.jboss.jbossts.txbridge.tests.outbound.utility.TestVolatileParticipant_prepare_remotetrace_entry
> [0m[0m21:40:52,186 INFO [stdout] (TaskWorker-1) org.jboss.byteman.contrib.dtest.Instrumentor_org.jboss.jbossts.txbridge.tests.outbound.utility.TestVolatileParticipant_prepare_remotetrace_entry execute()
> [0m[0m21:40:52,186 INFO [stdout] (TaskWorker-1) rule.debug{org.jboss.byteman.contrib.dtest.Instrumentor_org.jboss.jbossts.txbridge.tests.outbound.utility.TestVolatileParticipant_prepare_remotetrace_entry} : firing org.jboss.byteman.contrib.dtest.Instrumentor_org.jboss.jbossts.txbridge.tests.outbound.utility.TestVolatileParticipant_prepare_remotetrace_entry org.jboss.jbossts.txbridge.tests.outbound.utility.TestVolatileParticipant@14d2d4
> [0m[0m21:40:52,225 INFO [stdout] (TaskWorker-1) Rule.execute called for org.jboss.byteman.contrib.dtest.Instrumentor_org.jboss.jbossts.txbridge.tests.outbound.utility.TestVolatileParticipant_prepare_injectionatENTRY_2
> [0m[0m21:40:52,227 INFO [stdout] (TaskWorker-1) HelperManager.install for helper class org.jboss.byteman.contrib.dtest.BytemanTestHelper
> [0m[0m21:40:52,227 INFO [stdout] (TaskWorker-1) calling installed(org.jboss.byteman.contrib.dtest.Instrumentor_org.jboss.jbossts.txbridge.tests.outbound.utility.TestVolatileParticipant_prepare_injectionatENTRY) for helper classorg.jboss.byteman.contrib.dtest.BytemanTestHelper
> [0m[0m21:40:52,228 INFO [stdout] (TaskWorker-1) Installed rule using default helper : org.jboss.byteman.contrib.dtest.Instrumentor_org.jboss.jbossts.txbridge.tests.outbound.utility.TestVolatileParticipant_prepare_injectionatENTRY
> [0m[0m21:40:52,229 INFO [stdout] (TaskWorker-1) org.jboss.byteman.contrib.dtest.Instrumentor_org.jboss.jbossts.txbridge.tests.outbound.utility.TestVolatileParticipant_prepare_injectionatENTRY execute()
> [0m[0m21:40:52,230 INFO [stdout] (TaskWorker-1) caught ReturnException
> [0m[0m21:40:52,331 INFO [org.apache.cxf.service.factory.ReflectionServiceFactoryBean] (TaskWorker-1) Creating Service {http://docs.oasis-open.org/ws-tx/wsat/2006/06}CoordinatorService from WSDL: jar:file:/home/hudson/workspace/narayana-codeCoverage/jboss-as/build/target/wildfly-8.0.0.Alpha4-SNAPSHOT/modules/system/layers/base/org/jboss/xts/main/jbossxts-5.0.0.M4-SNAPSHOT.jar!/org/oasis_open/docs/ws_tx/wsat/_2006/_06/wsdl/wsat-coordinator-binding.wsdl
> [0m[33m21:40:52,554 WARN [com.arjuna.ats.arjuna] (default task-1) ARJUNA012125: TwoPhaseCoordinator.beforeCompletion - failed for SynchronizationImple< 0:ffffac118321:-2c4f1479:51e9a442:24, org.jboss.jbossts.txbridge.outbound.BridgeSynchronization@185feb7 >: java.lang.RuntimeException: BridgeWrapper.prepareVolatile() returned false
> at org.jboss.jbossts.txbridge.outbound.BridgeSynchronization.beforeCompletion(BridgeSynchronization.java:62) [jbosstxbridge-5.0.0.M4-SNAPSHOT.jar:]
> at com.arjuna.ats.internal.jta.resources.arjunacore.SynchronizationImple.beforeCompletion(SynchronizationImple.java:76) [narayana-jts-jacorb-5.0.0.M4-SNAPSHOT.jar:5.0.0.M4-SNAPSHOT (revision: ec203ac02eb27e7d071d7faa0f67780393e4adb1)]
> at com.arjuna.ats.arjuna.coordinator.TwoPhaseCoordinator.beforeCompletion(TwoPhaseCoordinator.java:273) [narayana-jts-jacorb-5.0.0.M4-SNAPSHOT.jar:5.0.0.M4-SNAPSHOT (revision: ec203ac02eb27e7d071d7faa0f67780393e4adb1)]
> at com.arjuna.ats.arjuna.coordinator.TwoPhaseCoordinator.end(TwoPhaseCoordinator.java:93) [narayana-jts-jacorb-5.0.0.M4-SNAPSHOT.jar:5.0.0.M4-SNAPSHOT (revision: ec203ac02eb27e7d071d7faa0f67780393e4adb1)]
> at com.arjuna.ats.arjuna.AtomicAction.commit(AtomicAction.java:162) [narayana-jts-jacorb-5.0.0.M4-SNAPSHOT.jar:5.0.0.M4-SNAPSHOT (revision: ec203ac02eb27e7d071d7faa0f67780393e4adb1)]
> at com.arjuna.ats.internal.jta.transaction.arjunacore.TransactionImple.commitAndDisassociate(TransactionImple.java:1170) [narayana-jts-jacorb-5.0.0.M4-SNAPSHOT.jar:5.0.0.M4-SNAPSHOT (revision: ec203ac02eb27e7d071d7faa0f67780393e4adb1)]
> at com.arjuna.ats.internal.jta.transaction.arjunacore.BaseTransaction.commit(BaseTransaction.java:126) [narayana-jts-jacorb-5.0.0.M4-SNAPSHOT.jar:5.0.0.M4-SNAPSHOT (revision: ec203ac02eb27e7d071d7faa0f67780393e4adb1)]
> at com.arjuna.ats.jbossatx.BaseTransactionManagerDelegate.commit(BaseTransactionManagerDelegate.java:75)
> at org.jboss.tm.usertx.client.ServerVMClientUserTransaction.commit(ServerVMClientUserTransaction.java:173)
> at org.jboss.jbossts.txbridge.tests.outbound.client.TestClient.terminateTransaction(TestClient.java:128) [classes:]
> at org.jboss.jbossts.txbridge.tests.outbound.client.TestClient.doGet(TestClient.java:111) [classes:]
> at javax.servlet.http.HttpServlet.service(HttpServlet.java:687) [jboss-servlet-api_3.1_spec-1.0.0.Beta1.jar:1.0.0.Beta1]
> at javax.servlet.http.HttpServlet.service(HttpServlet.java:790) [jboss-servlet-api_3.1_spec-1.0.0.Beta1.jar:1.0.0.Beta1]
> at io.undertow.servlet.handlers.ServletHandler.handleRequest(ServletHandler.java:87) [undertow-servlet-1.0.0.Beta3.jar:1.0.0.Beta3]
> at io.undertow.servlet.handlers.FilterHandler$FilterChainImpl.doFilter(FilterHandler.java:130) [undertow-servlet-1.0.0.Beta3.jar:1.0.0.Beta3]
> at io.undertow.websockets.jsr.JsrWebSocketFilter.doFilter(JsrWebSocketFilter.java:138) [undertow-websockets-jsr-1.0.0.Beta3.jar:1.0.0.Beta3]
> at io.undertow.servlet.core.ManagedFilter.doFilter(ManagedFilter.java:56) [undertow-servlet-1.0.0.Beta3.jar:1.0.0.Beta3]
> at io.undertow.servlet.handlers.FilterHandler$FilterChainImpl.doFilter(FilterHandler.java:132) [undertow-servlet-1.0.0.Beta3.jar:1.0.0.Beta3]
> at io.undertow.servlet.handlers.FilterHandler.handleRequest(FilterHandler.java:85) [undertow-servlet-1.0.0.Beta3.jar:1.0.0.Beta3]
> at io.undertow.servlet.handlers.security.ServletSecurityRoleHandler.handleRequest(ServletSecurityRoleHandler.java:56) [undertow-servlet-1.0.0.Beta3.jar:1.0.0.Beta3]
> at io.undertow.servlet.handlers.ServletDispatchingHandler.handleRequest(ServletDispatchingHandler.java:36) [undertow-servlet-1.0.0.Beta3.jar:1.0.0.Beta3]
> at org.wildfly.extension.undertow.security.SecurityContextAssociationHandler.handleRequest(SecurityContextAssociationHandler.java:78)
> at io.undertow.servlet.handlers.security.SSLInformationAssociationHandler.handleRequest(SSLInformationAssociationHandler.java:115) [undertow-servlet-1.0.0.Beta3.jar:1.0.0.Beta3]
> at io.undertow.security.handlers.AuthenticationCallHandler.handleRequest(AuthenticationCallHandler.java:52) [undertow-core-1.0.0.Beta3.jar:1.0.0.Beta3]
> at io.undertow.security.handlers.AbstractConfidentialityHandler.handleRequest(AbstractConfidentialityHandler.java:45) [undertow-core-1.0.0.Beta3.jar:1.0.0.Beta3]
> at io.undertow.servlet.handlers.security.CachedAuthenticatedSessionHandler.handleRequest(CachedAuthenticatedSessionHandler.java:65) [undertow-servlet-1.0.0.Beta3.jar:1.0.0.Beta3]
> at io.undertow.security.handlers.SecurityInitialHandler.handleRequest(SecurityInitialHandler.java:70) [undertow-core-1.0.0.Beta3.jar:1.0.0.Beta3]
> at io.undertow.server.handlers.PredicateHandler.handleRequest(PredicateHandler.java:25) [undertow-core-1.0.0.Beta3.jar:1.0.0.Beta3]
> at org.wildfly.extension.undertow.security.SecurityContextCreationHandler.handleRequest(SecurityContextCreationHandler.java:54)
> at io.undertow.server.handlers.PredicateHandler.handleRequest(PredicateHandler.java:25) [undertow-core-1.0.0.Beta3.jar:1.0.0.Beta3]
> at io.undertow.servlet.handlers.ServletInitialHandler.handleFirstRequest(ServletInitialHandler.java:185) [undertow-servlet-1.0.0.Beta3.jar:1.0.0.Beta3]
> at io.undertow.servlet.handlers.ServletInitialHandler.dispatchRequest(ServletInitialHandler.java:172) [undertow-servlet-1.0.0.Beta3.jar:1.0.0.Beta3]
> at io.undertow.servlet.handlers.ServletInitialHandler.access$000(ServletInitialHandler.java:56) [undertow-servlet-1.0.0.Beta3.jar:1.0.0.Beta3]
> at io.undertow.servlet.handlers.ServletInitialHandler$1.handleRequest(ServletInitialHandler.java:107) [undertow-servlet-1.0.0.Beta3.jar:1.0.0.Beta3]
> at io.undertow.server.HttpHandlers.executeRootHandler(HttpHandlers.java:36) [undertow-core-1.0.0.Beta3.jar:1.0.0.Beta3]
> at io.undertow.server.HttpServerExchange$1.run(HttpServerExchange.java:629) [undertow-core-1.0.0.Beta3.jar:1.0.0.Beta3]
> at java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1110) [rt.jar:1.7.0_09]
> at java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:603) [rt.jar:1.7.0_09]
> at java.lang.Thread.run(Thread.java:722) [rt.jar:1.7.0_09]
> [0m[0m21:40:52,599 INFO [org.apache.cxf.service.factory.ReflectionServiceFactoryBean] (default task-1) Creating Service {http://docs.oasis-open.org/ws-tx/wsat/2006/06}ParticipantService from WSDL: jar:file:/home/hudson/workspace/narayana-codeCoverage/jboss-as/build/target/wildfly-8.0.0.Alpha4-SNAPSHOT/modules/system/layers/base/org/jboss/xts/main/jbossxts-5.0.0.M4-SNAPSHOT.jar!/org/oasis_open/docs/ws_tx/wsat/_2006/_06/wsdl/wsat-participant-binding.wsdl
> [0m[0m21:40:52,664 INFO [stdout] (TaskWorker-3) Rule.execute called for org.jboss.byteman.contrib.dtest.Instrumentor_org.jboss.jbossts.txbridge.tests.outbound.utility.TestDurableParticipant_rollback_remotetrace_entry_11
> [0m[0m21:40:52,666 INFO [stdout] (TaskWorker-3) HelperManager.install for helper class org.jboss.byteman.contrib.dtest.BytemanTestHelper
> [0m[0m21:40:52,666 INFO [stdout] (TaskWorker-3) calling installed(org.jboss.byteman.contrib.dtest.Instrumentor_org.jboss.jbossts.txbridge.tests.outbound.utility.TestDurableParticipant_rollback_remotetrace_entry) for helper classorg.jboss.byteman.contrib.dtest.BytemanTestHelper
> [0m[0m21:40:52,666 INFO [stdout] (TaskWorker-3) Installed rule using default helper : org.jboss.byteman.contrib.dtest.Instrumentor_org.jboss.jbossts.txbridge.tests.outbound.utility.TestDurableParticipant_rollback_remotetrace_entry
> [0m[0m21:40:52,667 INFO [stdout] (TaskWorker-3) org.jboss.byteman.contrib.dtest.Instrumentor_org.jboss.jbossts.txbridge.tests.outbound.utility.TestDurableParticipant_rollback_remotetrace_entry execute()
> [0m[0m21:40:52,667 INFO [stdout] (TaskWorker-3) rule.debug{org.jboss.byteman.contrib.dtest.Instrumentor_org.jboss.jbossts.txbridge.tests.outbound.utility.TestDurableParticipant_rollback_remotetrace_entry} : firing org.jboss.byteman.contrib.dtest.Instrumentor_org.jboss.jbossts.txbridge.tests.outbound.utility.TestDurableParticipant_rollback_remotetrace_entry org.jboss.jbossts.txbridge.tests.outbound.utility.TestDurableParticipant@3197f0
> [0m[0m21:40:52,744 INFO [org.apache.cxf.service.factory.ReflectionServiceFactoryBean] (TaskWorker-3) Creating Service {http://docs.oasis-open.org/ws-tx/wsat/2006/06}CoordinatorService from WSDL: jar:file:/home/hudson/workspace/narayana-codeCoverage/jboss-as/build/target/wildfly-8.0.0.Alpha4-SNAPSHOT/modules/system/layers/base/org/jboss/xts/main/jbossxts-5.0.0.M4-SNAPSHOT.jar!/org/oasis_open/docs/ws_tx/wsat/_2006/_06/wsdl/wsat-coordinator-binding.wsdl
> [0m[0m21:40:52,792 INFO [org.jboss.jbossts.txbridge.tests.outbound.client.TestClient] (default task-1) problem: : javax.transaction.RollbackException: ARJUNA016053: Could not commit transaction.
> at com.arjuna.ats.internal.jta.transaction.arjunacore.TransactionImple.commitAndDisassociate(TransactionImple.java:1182) [narayana-jts-jacorb-5.0.0.M4-SNAPSHOT.jar:5.0.0.M4-SNAPSHOT (revision: ec203ac02eb27e7d071d7faa0f67780393e4adb1)]
> at com.arjuna.ats.internal.jta.transaction.arjunacore.BaseTransaction.commit(BaseTransaction.java:126) [narayana-jts-jacorb-5.0.0.M4-SNAPSHOT.jar:5.0.0.M4-SNAPSHOT (revision: ec203ac02eb27e7d071d7faa0f67780393e4adb1)]
> at com.arjuna.ats.jbossatx.BaseTransactionManagerDelegate.commit(BaseTransactionManagerDelegate.java:75)
> at org.jboss.tm.usertx.client.ServerVMClientUserTransaction.commit(ServerVMClientUserTransaction.java:173)
> at org.jboss.jbossts.txbridge.tests.outbound.client.TestClient.terminateTransaction(TestClient.java:128) [classes:]
> at org.jboss.jbossts.txbridge.tests.outbound.client.TestClient.doGet(TestClient.java:111) [classes:]
> at javax.servlet.http.HttpServlet.service(HttpServlet.java:687) [jboss-servlet-api_3.1_spec-1.0.0.Beta1.jar:1.0.0.Beta1]
> at javax.servlet.http.HttpServlet.service(HttpServlet.java:790) [jboss-servlet-api_3.1_spec-1.0.0.Beta1.jar:1.0.0.Beta1]
> at io.undertow.servlet.handlers.ServletHandler.handleRequest(ServletHandler.java:87) [undertow-servlet-1.0.0.Beta3.jar:1.0.0.Beta3]
> at io.undertow.servlet.handlers.FilterHandler$FilterChainImpl.doFilter(FilterHandler.java:130) [undertow-servlet-1.0.0.Beta3.jar:1.0.0.Beta3]
> at io.undertow.websockets.jsr.JsrWebSocketFilter.doFilter(JsrWebSocketFilter.java:138) [undertow-websockets-jsr-1.0.0.Beta3.jar:1.0.0.Beta3]
> at io.undertow.servlet.core.ManagedFilter.doFilter(ManagedFilter.java:56) [undertow-servlet-1.0.0.Beta3.jar:1.0.0.Beta3]
> at io.undertow.servlet.handlers.FilterHandler$FilterChainImpl.doFilter(FilterHandler.java:132) [undertow-servlet-1.0.0.Beta3.jar:1.0.0.Beta3]
> at io.undertow.servlet.handlers.FilterHandler.handleRequest(FilterHandler.java:85) [undertow-servlet-1.0.0.Beta3.jar:1.0.0.Beta3]
> at io.undertow.servlet.handlers.security.ServletSecurityRoleHandler.handleRequest(ServletSecurityRoleHandler.java:56) [undertow-servlet-1.0.0.Beta3.jar:1.0.0.Beta3]
> at io.undertow.servlet.handlers.ServletDispatchingHandler.handleRequest(ServletDispatchingHandler.java:36) [undertow-servlet-1.0.0.Beta3.jar:1.0.0.Beta3]
> at org.wildfly.extension.undertow.security.SecurityContextAssociationHandler.handleRequest(SecurityContextAssociationHandler.java:78)
> at io.undertow.servlet.handlers.security.SSLInformationAssociationHandler.handleRequest(SSLInformationAssociationHandler.java:115) [undertow-servlet-1.0.0.Beta3.jar:1.0.0.Beta3]
> at io.undertow.security.handlers.AuthenticationCallHandler.handleRequest(AuthenticationCallHandler.java:52) [undertow-core-1.0.0.Beta3.jar:1.0.0.Beta3]
> at io.undertow.security.handlers.AbstractConfidentialityHandler.handleRequest(AbstractConfidentialityHandler.java:45) [undertow-core-1.0.0.Beta3.jar:1.0.0.Beta3]
> at io.undertow.servlet.handlers.security.CachedAuthenticatedSessionHandler.handleRequest(CachedAuthenticatedSessionHandler.java:65) [undertow-servlet-1.0.0.Beta3.jar:1.0.0.Beta3]
> at io.undertow.security.handlers.SecurityInitialHandler.handleRequest(SecurityInitialHandler.java:70) [undertow-core-1.0.0.Beta3.jar:1.0.0.Beta3]
> at io.undertow.server.handlers.PredicateHandler.handleRequest(PredicateHandler.java:25) [undertow-core-1.0.0.Beta3.jar:1.0.0.Beta3]
> at org.wildfly.extension.undertow.security.SecurityContextCreationHandler.handleRequest(SecurityContextCreationHandler.java:54)
> at io.undertow.server.handlers.PredicateHandler.handleRequest(PredicateHandler.java:25) [undertow-core-1.0.0.Beta3.jar:1.0.0.Beta3]
> at io.undertow.servlet.handlers.ServletInitialHandler.handleFirstRequest(ServletInitialHandler.java:185) [undertow-servlet-1.0.0.Beta3.jar:1.0.0.Beta3]
> at io.undertow.servlet.handlers.ServletInitialHandler.dispatchRequest(ServletInitialHandler.java:172) [undertow-servlet-1.0.0.Beta3.jar:1.0.0.Beta3]
> at io.undertow.servlet.handlers.ServletInitialHandler.access$000(ServletInitialHandler.java:56) [undertow-servlet-1.0.0.Beta3.jar:1.0.0.Beta3]
> at io.undertow.servlet.handlers.ServletInitialHandler$1.handleRequest(ServletInitialHandler.java:107) [undertow-servlet-1.0.0.Beta3.jar:1.0.0.Beta3]
> at io.undertow.server.HttpHandlers.executeRootHandler(HttpHandlers.java:36) [undertow-core-1.0.0.Beta3.jar:1.0.0.Beta3]
> at io.undertow.server.HttpServerExchange$1.run(HttpServerExchange.java:629) [undertow-core-1.0.0.Beta3.jar:1.0.0.Beta3]
> at java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1110) [rt.jar:1.7.0_09]
> at java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:603) [rt.jar:1.7.0_09]
> at java.lang.Thread.run(Thread.java:722) [rt.jar:1.7.0_09]
> Caused by: java.lang.RuntimeException: BridgeWrapper.prepareVolatile() returned false
> at org.jboss.jbossts.txbridge.outbound.BridgeSynchronization.beforeCompletion(BridgeSynchronization.java:62) [jbosstxbridge-5.0.0.M4-SNAPSHOT.jar:]
> at com.arjuna.ats.internal.jta.resources.arjunacore.SynchronizationImple.beforeCompletion(SynchronizationImple.java:76) [narayana-jts-jacorb-5.0.0.M4-SNAPSHOT.jar:5.0.0.M4-SNAPSHOT (revision: ec203ac02eb27e7d071d7faa0f67780393e4adb1)]
> at com.arjuna.ats.arjuna.coordinator.TwoPhaseCoordinator.beforeCompletion(TwoPhaseCoordinator.java:273) [narayana-jts-jacorb-5.0.0.M4-SNAPSHOT.jar:5.0.0.M4-SNAPSHOT (revision: ec203ac02eb27e7d071d7faa0f67780393e4adb1)]
> at com.arjuna.ats.arjuna.coordinator.TwoPhaseCoordinator.end(TwoPhaseCoordinator.java:93) [narayana-jts-jacorb-5.0.0.M4-SNAPSHOT.jar:5.0.0.M4-SNAPSHOT (revision: ec203ac02eb27e7d071d7faa0f67780393e4adb1)]
> at com.arjuna.ats.arjuna.AtomicAction.commit(AtomicAction.java:162) [narayana-jts-jacorb-5.0.0.M4-SNAPSHOT.jar:5.0.0.M4-SNAPSHOT (revision: ec203ac02eb27e7d071d7faa0f67780393e4adb1)]
> at com.arjuna.ats.internal.jta.transaction.arjunacore.TransactionImple.commitAndDisassociate(TransactionImple.java:1170) [narayana-jts-jacorb-5.0.0.M4-SNAPSHOT.jar:5.0.0.M4-SNAPSHOT (revision: ec203ac02eb27e7d071d7faa0f67780393e4adb1)]
> ... 33 more
> [0mJul 19, 2013 9:40:53 PM org.jboss.arquillian.container.test.impl.client.container.ClientContainerController stop
> INFO: Automatic undeploying of the managed deployment with name txbridge-outbound-tests-service from the container with name jboss
> [0m21:40:52,804 INFO [stdout] (Thread-0) TransformListener() : handling connection on port 9091
> [0m[0m21:40:52,895 INFO [stdout] (Thread-0) retransforming org.jboss.jbossts.txbridge.tests.outbound.service.TestServiceImpl
> [0m[0m21:40:52,895 INFO [stdout] (Thread-0) retransforming org.jboss.jbossts.txbridge.tests.outbound.utility.TestVolatileParticipant
> [0m[0m21:40:52,896 INFO [stdout] (Thread-0) retransforming org.jboss.jbossts.txbridge.tests.outbound.client.TestClient
> [0m[0m21:40:52,896 INFO [stdout] (Thread-0) retransforming org.jboss.jbossts.txbridge.tests.outbound.utility.TestDurableParticipant
> [0m[0m21:40:52,970 INFO [stdout] (Thread-0) HelperManager.uninstall for helper class org.jboss.byteman.contrib.dtest.BytemanTestHelper
> [0m[0m21:40:52,970 INFO [stdout] (Thread-0) calling uninstalled(org.jboss.byteman.contrib.dtest.Instrumentor_org.jboss.jbossts.txbridge.tests.outbound.utility.TestVolatileParticipant_prepare_remotetrace_entry) for helper class org.jboss.byteman.contrib.dtest.BytemanTestHelper
> [0m[0m21:40:52,971 INFO [stdout] (Thread-0) Uninstalled rule using default helper : org.jboss.byteman.contrib.dtest.Instrumentor_org.jboss.jbossts.txbridge.tests.outbound.utility.TestVolatileParticipant_prepare_remotetrace_entry
> [0m[0m21:40:52,992 INFO [stdout] (Thread-0) HelperManager.uninstall for helper class org.jboss.byteman.contrib.dtest.BytemanTestHelper
> [0m[0m21:40:53,007 INFO [stdout] (Thread-0) calling uninstalled(org.jboss.byteman.contrib.dtest.Instrumentor_org.jboss.jbossts.txbridge.tests.outbound.utility.TestDurableParticipant_rollback_remotetrace_entry) for helper class org.jboss.byteman.contrib.dtest.BytemanTestHelper
> [0m[0m21:40:53,008 INFO [stdout] (Thread-0) Uninstalled rule using default helper : org.jboss.byteman.contrib.dtest.Instrumentor_org.jboss.jbossts.txbridge.tests.outbound.utility.TestDurableParticipant_rollback_remotetrace_entry
> [0m[0m21:40:53,023 INFO [stdout] (Thread-0) HelperManager.uninstall for helper class org.jboss.byteman.contrib.dtest.BytemanTestHelper
> [0m[0m21:40:53,023 INFO [stdout] (Thread-0) calling uninstalled(org.jboss.byteman.contrib.dtest.Instrumentor_org.jboss.jbossts.txbridge.tests.outbound.service.TestServiceImpl_doNothing_injectionatENTRY) for helper class org.jboss.byteman.contrib.dtest.BytemanTestHelper
> [0m[0m21:40:53,023 INFO [stdout] (Thread-0) Uninstalled rule using default helper : org.jboss.byteman.contrib.dtest.Instrumentor_org.jboss.jbossts.txbridge.tests.outbound.service.TestServiceImpl_doNothing_injectionatENTRY
> [0m[0m21:40:53,024 INFO [stdout] (Thread-0) HelperManager.uninstall for helper class org.jboss.byteman.contrib.dtest.BytemanTestHelper
> [0m[0m21:40:53,024 INFO [stdout] (Thread-0) calling uninstalled(org.jboss.byteman.contrib.dtest.Instrumentor_org.jboss.jbossts.txbridge.tests.outbound.utility.TestVolatileParticipant_prepare_injectionatENTRY) for helper class org.jboss.byteman.contrib.dtest.BytemanTestHelper
> [0m[0m21:40:53,024 INFO [stdout] (Thread-0) Uninstalled rule using default helper : org.jboss.byteman.contrib.dtest.Instrumentor_org.jboss.jbossts.txbridge.tests.outbound.utility.TestVolatileParticipant_prepare_injectionatENTRY
> [0m[0m21:40:53,024 INFO [stdout] (Thread-0) HelperManager.uninstall for helper class org.jboss.byteman.contrib.dtest.BytemanTestHelper
> [0m[0m21:40:53,025 INFO [stdout] (Thread-0) calling uninstalled(org.jboss.byteman.contrib.dtest.Instrumentor_org.jboss.jbossts.txbridge.tests.outbound.client.TestClient_terminateTransaction_injectionatENTRY) for helper class org.jboss.byteman.contrib.dtest.BytemanTestHelper
> [0m[0m21:40:53,025 INFO [stdout] (Thread-0) Uninstalled rule using default helper : org.jboss.byteman.contrib.dtest.Instrumentor_org.jboss.jbossts.txbridge.tests.outbound.client.TestClient_terminateTransaction_injectionatENTRY
> [0m[0m21:40:53,025 INFO [stdout] (Thread-0) calling deactivated() for helper classorg.jboss.byteman.contrib.dtest.BytemanTestHelper
> [0m[0m21:40:53,025 INFO [stdout] (Thread-0) Default helper deactivated
> [0m[0m21:40:53,045 INFO [org.wildfly.extension.undertow] (MSC service thread 1-1) JBAS018224: Unregister web context: /txbridge-outbound-tests-service
> [0m[0m21:40:53,360 INFO [org.jboss.as.webservices] (MSC service thread 1-2) JBAS015540: Stopping service jboss.ws.endpoint."txbridge-outbound-tests-service.war".OutboundTestServiceServlet
> [0m[0m21:40:53,361 INFO [org.jboss.jbossts.txbridge.tests.outbound.utility.TestRecoveryModule] (ServerService Thread Pool -- 25) TestRecoveryModule stopping
> [0m[31m21:40:53,364 ERROR [org.jboss.ws.common.deployment] (MSC service thread 1-1) JBWS022102: Cannot stop endpoint in state STOPPED: jboss.ws:context=txbridge-outbound-tests-service,endpoint=OutboundTestServiceServlet
> [0m[0m21:40:53,399 INFO [org.jboss.as.server.deployment] (MSC service thread 1-2) JBAS015877: Stopped deployment txbridge-outbound-tests-service.war (runtime-name: txbridge-outbound-tests-service.war) in 359ms
> [0mJul 19, 2013 9:40:53 PM org.jboss.arquillian.container.test.impl.client.container.ClientContainerController stop
> INFO: Automatic undeploying of the managed deployment with name txbridge-outbound-tests-client from the container with name jboss
> [0m21:40:53,507 INFO [org.jboss.as.repository] (management-handler-thread - 3) JBAS014901: Content removed from location /home/hudson/workspace/narayana-codeCoverage/jboss-as/build/target/wildfly-8.0.0.Alpha4-SNAPSHOT/standalone/data/content/31/4cb56547f2db014d734fde3fe60f67ad9f66c4/content
> [0m[0m21:40:53,508 INFO [org.jboss.as.server] (management-handler-thread - 3) JBAS018558: Undeployed "txbridge-outbound-tests-service.war" (runtime-name: "txbridge-outbound-tests-service.war")
> [0m[0m21:40:53,527 INFO [org.wildfly.extension.undertow] (MSC service thread 1-1) JBAS018224: Unregister web context: /txbridge-outbound-tests-client
> [0m[0m21:40:53,536 INFO [org.jboss.as.server.deployment] (MSC service thread 1-2) JBAS015877: Stopped deployment txbridge-outbound-tests-client.war (runtime-name: txbridge-outbound-tests-client.war) in 10ms
> [0mJul 19, 2013 9:40:53 PM org.jboss.arquillian.container.test.impl.client.container.ClientContainerController stop
> INFO: Manual stopping of a server instance
> [0m21:40:53,666 INFO [org.jboss.as.repository] (management-handler-thread - 1) JBAS014901: Content removed from location /home/hudson/workspace/narayana-codeCoverage/jboss-as/build/target/wildfly-8.0.0.Alpha4-SNAPSHOT/standalone/data/content/ff/4c5e7de8ab8a5109a858d9cfe468ee99e28927/content
> [0m[0m21:40:53,667 INFO [org.jboss.as.server] (management-handler-thread - 1) JBAS018558: Undeployed "txbridge-outbound-tests-client.war" (runtime-name: "txbridge-outbound-tests-client.war")
> [0m[0m21:40:53,685 INFO [org.wildfly.extension.undertow] (MSC service thread 1-1) JBAS018224: Unregister web context: /rest-tx
> [0m[0m21:40:53,701 INFO [org.jboss.as.connector.deployment] (MSC service thread 1-2) JBAS010410: Unbound JCA ConnectionFactory [java:/JmsXA]
> [0m[0m21:40:53,719 INFO [org.hornetq.ra] (MSC service thread 1-2) HQ151003: HornetQ resource adaptor stopped
> [0m[0m21:40:53,742 INFO [org.wildfly.extension.undertow] (MSC service thread 1-2) JBAS018224: Unregister web context: /hornetq-server
> [0m[0m21:40:53,743 INFO [org.wildfly.extension.undertow] (MSC service thread 1-2) JBAS017521: Undertow HTTP listener default suspending
> [0m[0m21:40:53,743 INFO [org.wildfly.extension.undertow] (MSC service thread 1-2) JBAS017520: Undertow HTTP listener default stopped, was bound to localhost.localdomain/127.0.0.1:8080
> [0m[0m21:40:53,745 INFO [org.jboss.as.messaging] (ServerService Thread Pool -- 23) JBAS011605: Unbound messaging object to jndi name java:/ConnectionFactory
> [0m[0m21:40:53,746 INFO [org.jboss.as.messaging] (ServerService Thread Pool -- 23) JBAS011605: Unbound messaging object to jndi name java:jboss/DefaultJMSConnectionFactory
> [0m[0m21:40:53,746 INFO [org.jboss.as.messaging] (ServerService Thread Pool -- 28) JBAS011605: Unbound messaging object to jndi name java:jboss/exported/jms/RemoteConnectionFactory
> [0m[0m21:40:53,747 INFO [org.jboss.as.messaging] (ServerService Thread Pool -- 29) JBAS011605: Unbound messaging object to jndi name java:jboss/exported/jms/ServletConnectionFactory
> [0m[0m21:40:53,771 INFO [org.jboss.as.webservices] (MSC service thread 1-1) JBAS015540: Stopping service jboss.ws.endpoint."ws-t11-participant.deployment".BusinessAgreementWithParticipantCompletionParticipantService
> [0m[0m21:40:53,781 INFO [org.wildfly.extension.undertow] (MSC service thread 1-2) JBAS018224: Unregister web context: /xtstest
> [0m[0m21:40:53,782 INFO [org.jboss.jbossts.xts.servicetests.bean.XTSServiceTestRunnerBean] (MSC service thread 1-2) Stopping XTSServiceTestRunner
> [0m[0m21:40:53,800 INFO [org.jboss.jbossts.xts.servicetests.bean.XTSServiceTestRunnerBean] (MSC service thread 1-2) Stopped XTSServiceTestRunner
> [0m[0m21:40:53,833 INFO [org.jboss.as.webservices] (MSC service thread 1-2) JBAS015540: Stopping service jboss.ws.endpoint."ws-t11-coordinator.deployment".CompletionCoordinatorService
> [0m[0m21:40:53,833 INFO [org.jboss.as.webservices] (MSC service thread 1-1) JBAS015540: Stopping service jboss.ws.endpoint."ws-t11-client.deployment".CompletionInitiatorService
> [0m[0m21:40:53,834 INFO [org.jboss.as.webservices] (MSC service thread 1-2) JBAS015540: Stopping service jboss.ws.endpoint."ws-c11.deployment".RegistrationService
> [0m[0m21:40:53,835 INFO [org.jboss.as.webservices] (MSC service thread 1-2) JBAS015540: Stopping service jboss.ws.endpoint."ws-t11-coordinator.deployment".CoordinatorService
> [0m[0m21:40:53,835 INFO [org.jboss.as.webservices] (MSC service thread 1-2) JBAS015540: Stopping service jboss.ws.endpoint."ws-t11-coordinator.deployment".BusinessAgreementWithCoordinatorCompletionCoordinatorService
> [0m[0m21:40:53,836 INFO [org.jboss.as.webservices] (MSC service thread 1-2) JBAS015540: Stopping service jboss.ws.endpoint."ws-t11-client.deployment".TerminationParticipantService
> [0m[0m21:40:53,837 INFO [org.jboss.as.webservices] (MSC service thread 1-2) JBAS015540: Stopping service jboss.ws.endpoint."ws-t11-coordinator.deployment".BusinessAgreementWithParticipantCompletionCoordinatorService
> [0m[0m21:40:53,837 INFO [org.jboss.as.webservices] (MSC service thread 1-2) JBAS015540: Stopping service jboss.ws.endpoint."ws-t11-coordinator.deployment".CompletionCoordinatorRPCService
> [0m[0m21:40:53,838 INFO [org.jboss.as.webservices] (MSC service thread 1-2) JBAS015540: Stopping service jboss.ws.endpoint."ws-t11-coordinator.deployment".TerminationCoordinatorService
> [0m[0m21:40:53,840 INFO [org.jboss.as.webservices] (MSC service thread 1-2) JBAS015540: Stopping service jboss.ws.endpoint."ws-c11.deployment".ActivationService
> [0m[0m21:40:53,841 INFO [org.jboss.as.webservices] (MSC service thread 1-2) JBAS015540: Stopping service jboss.ws.endpoint."ws-t11-coordinator.deployment".TerminationCoordinatorRPCService
> [0m[0m21:40:53,842 INFO [org.hornetq.core.server] (ServerService Thread Pool -- 29) HQ221002: HornetQ Server version 2.3.1.Final (Wild Hornet, 123) [84bf850e-f0a5-11e2-b06f-99351d644b18] stopped
> [0m[0m21:40:53,843 INFO [org.jboss.as.webservices] (MSC service thread 1-1) JBAS015540: Stopping service jboss.ws.endpoint."ws-t11-participant.deployment".ParticipantService
> [0m[0m21:40:53,843 INFO [org.jboss.as.webservices] (MSC service thread 1-1) JBAS015540: Stopping service jboss.ws.endpoint."ws-t11-participant.deployment".BusinessAgreementWithCoordinatorCompletionParticipantService
> [0m[0m21:40:53,844 INFO [org.jboss.jbossts.txbridge] (MSC service thread 1-1) ARJUNA033007: InboundBridgeRecoveryManager stopping
> [0m[0m21:40:53,845 INFO [org.jboss.jbossts.txbridge] (MSC service thread 1-1) ARJUNA033014: OutboundBridgeRecoveryManager stopping
> [0m[0m21:40:53,849 INFO [org.jboss.as.connector.subsystems.datasources] (MSC service thread 1-1) JBAS010409: Unbound data source [java:jboss/datasources/ExampleDS]
> [0m[0m21:40:54,139 INFO [org.jboss.as.webservices] (MSC service thread 1-1) JBAS015540: Stopping service jboss.ws.endpoint."xtstest.war".XTS_Service_Test_Service_Three
> [0m[0m21:40:54,235 INFO [org.jboss.as.webservices] (MSC service thread 1-1) JBAS015540: Stopping service jboss.ws.endpoint."xtstest.war".XTS_Service_Test_Service_Two
> [0m[0m21:40:54,236 INFO [org.jboss.as.webservices] (MSC service thread 1-1) JBAS015540: Stopping service jboss.ws.endpoint."xtstest.war".XTS_Service_Test_Subordinate_Service_One
> [0m[0m21:40:54,236 INFO [org.jboss.as.webservices] (MSC service thread 1-1) JBAS015540: Stopping service jboss.ws.endpoint."xtstest.war".XTS_Service_Test_Service_One
> [0m[0m21:40:54,237 INFO [org.jboss.as.webservices] (MSC service thread 1-1) JBAS015540: Stopping service jboss.ws.endpoint-publish.ws-t11-client
> [0m[0m21:40:54,237 INFO [org.wildfly.extension.undertow] (MSC service thread 1-1) JBAS018224: Unregister web context: /ws-t11-client
> [0m[31m21:40:54,238 ERROR [org.jboss.ws.common.deployment] (MSC service thread 1-1) JBWS022102: Cannot stop endpoint in state STOPPED: jboss.ws:context=ws-t11-client,endpoint=CompletionInitiatorService
> [0m[31m21:40:54,238 ERROR [org.jboss.ws.common.deployment] (MSC service thread 1-1) JBWS022102: Cannot stop endpoint in state STOPPED: jboss.ws:context=ws-t11-client,endpoint=TerminationParticipantService
> [0m[0m21:40:54,240 INFO [org.jboss.as.webservices] (MSC service thread 1-2) JBAS015540: Stopping service jboss.ws.endpoint-publish.ws-t11-coordinator
> [0m[0m21:40:54,240 INFO [org.wildfly.extension.undertow] (MSC service thread 1-2) JBAS018224: Unregister web context: /ws-t11-coordinator
> [0m[31m21:40:54,241 ERROR [org.jboss.ws.common.deployment] (MSC service thread 1-2) JBWS022102: Cannot stop endpoint in state STOPPED: jboss.ws:context=ws-t11-coordinator,endpoint=BusinessAgreementWithCoordinatorCompletionCoordinatorService
> [0m[31m21:40:54,243 ERROR [org.jboss.ws.common.deployment] (MSC service thread 1-2) JBWS022102: Cannot stop endpoint in state STOPPED: jboss.ws:context=ws-t11-coordinator,endpoint=CoordinatorService
> [0m[31m21:40:54,243 ERROR [org.jboss.ws.common.deployment] (MSC service thread 1-2) JBWS022102: Cannot stop endpoint in state STOPPED: jboss.ws:context=ws-t11-coordinator,endpoint=CompletionCoordinatorRPCService
> [0m[31m21:40:54,243 ERROR [org.jboss.ws.common.deployment] (MSC service thread 1-2) JBWS022102: Cannot stop endpoint in state STOPPED: jboss.ws:context=ws-t11-coordinator,endpoint=TerminationCoordinatorRPCService
> [0m[31m21:40:54,244 ERROR [org.jboss.ws.common.deployment] (MSC service thread 1-2) JBWS022102: Cannot stop endpoint in state STOPPED: jboss.ws:context=ws-t11-coordinator,endpoint=TerminationCoordinatorService
> [0m[31m21:40:54,244 ERROR [org.jboss.ws.common.deployment] (MSC service thread 1-2) JBWS022102: Cannot stop endpoint in state STOPPED: jboss.ws:context=ws-t11-coordinator,endpoint=BusinessAgreementWithParticipantCompletionCoordinatorService
> [0m[31m21:40:54,244 ERROR [org.jboss.ws.common.deployment] (MSC service thread 1-2) JBWS022102: Cannot stop endpoint in state STOPPED: jboss.ws:context=ws-t11-coordinator,endpoint=CompletionCoordinatorService
> [0m[0m21:40:54,249 INFO [org.jboss.as.webservices] (MSC service thread 1-2) JBAS015540: Stopping service jboss.ws.endpoint-publish.ws-t11-participant
> [0m[0m21:40:54,249 INFO [org.wildfly.extension.undertow] (MSC service thread 1-2) JBAS018224: Unregister web context: /ws-t11-participant
> [0m[31m21:40:54,250 ERROR [org.jboss.ws.common.deployment] (MSC service thread 1-2) JBWS022102: Cannot stop endpoint in state STOPPED: jboss.ws:context=ws-t11-participant,endpoint=ParticipantService
> [0m[31m21:40:54,250 ERROR [org.jboss.ws.common.deployment] (MSC service thread 1-2) JBWS022102: Cannot stop endpoint in state STOPPED: jboss.ws:context=ws-t11-participant,endpoint=BusinessAgreementWithParticipantCompletionParticipantService
> [0m[31m21:40:54,250 ERROR [org.jboss.ws.common.deployment] (MSC service thread 1-2) JBWS022102: Cannot stop endpoint in state STOPPED: jboss.ws:context=ws-t11-participant,endpoint=BusinessAgreementWithCoordinatorCompletionParticipantService
> [0m[0m21:40:54,253 INFO [org.jboss.as.webservices] (MSC service thread 1-2) JBAS015540: Stopping service jboss.ws.endpoint-publish.ws-c11
> [0m[0m21:40:54,254 INFO [org.wildfly.extension.undertow] (MSC service thread 1-2) JBAS018224: Unregister web context: /ws-c11
> [0m[31m21:40:54,254 ERROR [org.jboss.ws.common.deployment] (MSC service thread 1-2) JBWS022102: Cannot stop endpoint in state STOPPED: jboss.ws:context=ws-c11,endpoint=ActivationService
> [0m[31m21:40:54,254 ERROR [org.jboss.ws.common.deployment] (MSC service thread 1-2) JBWS022102: Cannot stop endpoint in state STOPPED: jboss.ws:context=ws-c11,endpoint=RegistrationService
> [0m[0m21:40:54,261 INFO [org.jboss.as.connector.deployers.jdbc] (MSC service thread 1-2) JBAS010418: Stopped Driver service with driver-name = h2
> [0m[0m21:40:54,301 INFO [org.jboss.weld.deployer] (MSC service thread 1-2) JBAS016009: Stopping weld service for deployment xtstest.war
> [0m[0m21:40:54,370 INFO [org.jboss.as.server.deployment] (MSC service thread 1-1) JBAS015877: Stopped deployment restat-web-5.0.0.M4-SNAPSHOT.war (runtime-name: restat-web-5.0.0.M4-SNAPSHOT.war) in 561ms
> [0m[0m21:40:54,371 INFO [org.wildfly.extension.undertow] (MSC service thread 1-1) Stopping host default-host
> [0m[0m21:40:54,372 INFO [org.wildfly.extension.undertow] (MSC service thread 1-1) JBAS017506: Undertow 1.0.0.Beta3 stopping
> [0m[0m21:40:54,374 INFO [stdout] (EMMA shutdown handler thread) EMMA: runtime coverage data merged into [/home/hudson/workspace/narayana-codeCoverage/txbridge/target/test-classes/coverage.ec] {in 694 ms}
> [0m[31m21:40:54,384 ERROR [org.jboss.ws.common.deployment] (MSC service thread 1-2) JBWS022102: Cannot stop endpoint in state STOPPED: jboss.ws:context=xtstest,endpoint=XTS_Service_Test_Subordinate_Service_One
> [0m[31m21:40:54,384 ERROR [org.jboss.ws.common.deployment] (MSC service thread 1-2) JBWS022102: Cannot stop endpoint in state STOPPED: jboss.ws:context=xtstest,endpoint=XTS_Service_Test_Service_One
> [0m[31m21:40:54,384 ERROR [org.jboss.ws.common.deployment] (MSC service thread 1-2) JBWS022102: Cannot stop endpoint in state STOPPED: jboss.ws:context=xtstest,endpoint=XTS_Service_Test_Service_Two
> [0m[31m21:40:54,385 ERROR [org.jboss.ws.common.deployment] (MSC service thread 1-2) JBWS022102: Cannot stop endpoint in state STOPPED: jboss.ws:context=xtstest,endpoint=XTS_Service_Test_Service_Three
> [0m[0m21:40:54,440 INFO [org.jboss.as.server.deployment] (MSC service thread 1-1) JBAS015877: Stopped deployment xtstest.war (runtime-name: xtstest.war) in 632ms
> [0m[0m21:40:54,463 INFO [org.jboss.as] (MSC service thread 1-2) JBAS015950: WildFly 8.0.0.Alpha4-SNAPSHOT "WildFly" stopped in 653ms
> [0mJul 19, 2013 9:40:54 PM org.jboss.arquillian.container.test.impl.client.container.ClientContainerController start
> INFO: Manual starting of a server instance
> Jul 19, 2013 9:40:54 PM org.jboss.as.arquillian.container.managed.ManagedDeployableContainer startInternal
> INFO: Starting container with: [/usr/local/jdk1.7.0_09//bin/java, -server, -Xms64m, -Xmx1024m, -XX:MaxPermSize=512m, -Dorg.jboss.byteman.debug=true, -Dorg.jboss.byteman.verbose=true, -Dorg.jboss.byteman.contrib.dtest.rmiregistry.port=1199, -Djboss.modules.system.pkgs=org.jboss.byteman, -javaagent:/home/hudson/workspace/narayana-codeCoverage/txbridge/target/byteman/byteman.jar=port:9091,listener:true,sys:/home/hudson/workspace/narayana-codeCoverage/txbridge/target/byteman/byteman-dtest.jar, -ea, -Djboss.home.dir=/home/hudson/workspace/narayana-codeCoverage/jboss-as/build/target/wildfly-8.0.0.Alpha4-SNAPSHOT, -Dorg.jboss.boot.log.file=/home/hudson/workspace/narayana-codeCoverage/jboss-as/build/target/wildfly-8.0.0.Alpha4-SNAPSHOT/standalone/log/boot.log, -Dlogging.configuration=file:/home/hudson/workspace/narayana-codeCoverage/jboss-as/build/target/wildfly-8.0.0.Alpha4-SNAPSHOT/standalone/configuration/logging.properties, -Djboss.bundles.dir=/home/hudson/workspace/narayana-codeCoverage/jboss-as/build/target/wildfly-8.0.0.Alpha4-SNAPSHOT/bundles, -jar, /home/hudson/workspace/narayana-codeCoverage/jboss-as/build/target/wildfly-8.0.0.Alpha4-SNAPSHOT/jboss-modules.jar, -mp, /home/hudson/workspace/narayana-codeCoverage/jboss-as/build/target/wildfly-8.0.0.Alpha4-SNAPSHOT/modules, org.jboss.as.standalone, -server-config, standalone-xts.xml]
> TransformListener() : accepting requests on localhost:9091
> [0m21:40:56,085 INFO [org.jboss.modules] (main) JBoss Modules version 1.2.4.Final
> [0m[0m21:40:56,713 INFO [org.jboss.msc] (main) JBoss MSC version 1.2.0.Beta2
> [0m[0m21:40:56,845 INFO [org.jboss.as] (MSC service thread 1-2) JBAS015899: WildFly 8.0.0.Alpha4-SNAPSHOT "WildFly" starting
> [0m[0m21:40:59,239 INFO [stdout] (ServerService Thread Pool -- 10) EMMA: collecting runtime coverage data ...
> [0m[0m21:40:59,498 INFO [org.xnio] (MSC service thread 1-1) XNIO Version 3.1.0.CR3
> [0m[0m21:40:59,504 INFO [org.xnio.nio] (MSC service thread 1-1) XNIO NIO Implementation Version 3.1.0.CR3
> [0m[0m21:40:59,535 INFO [org.jboss.remoting] (MSC service thread 1-1) JBoss Remoting version 4.0.0.Beta1
> [0m[0m21:40:59,585 INFO [org.jboss.as.server] (Controller Boot Thread) JBAS015888: Creating http management service using socket-binding (management-http)
> [0m[0m21:40:59,686 INFO [org.jboss.as.connector.subsystems.datasources] (ServerService Thread Pool -- 15) JBAS010403: Deploying JDBC-compliant driver class org.h2.Driver (version 1.3)
> [0m[0m21:40:59,746 INFO [org.jboss.as.clustering.infinispan] (ServerService Thread Pool -- 35) JBAS010280: Activating Infinispan subsystem.
> [0m[0m21:40:59,777 INFO [org.jboss.as.security] (ServerService Thread Pool -- 51) JBAS013171: Activating Security Subsystem
> [0m[0m21:40:59,797 INFO [org.jboss.as.naming] (ServerService Thread Pool -- 46) JBAS011800: Activating Naming Subsystem
> [0m[0m21:40:59,814 INFO [org.jboss.as.security] (MSC service thread 1-2) JBAS013170: Current PicketBox version=4.0.17.Final
> [0m[0m21:40:59,861 INFO [org.wildfly.extension.undertow] (MSC service thread 1-1) JBAS017502: Undertow 1.0.0.Beta3 starting
> [0m[0m21:41:00,018 INFO [org.jboss.as.jsf] (ServerService Thread Pool -- 42) JBAS012605: Activated the following JSF Implementations: [main]
> [0m[0m21:41:00,043 INFO [org.jboss.as.jacorb] (ServerService Thread Pool -- 36) JBAS016300: Activating JacORB Subsystem
> [0m[0m21:41:00,126 INFO [org.jboss.as.connector.logging] (MSC service thread 1-2) JBAS010408: Starting JCA Subsystem (IronJacamar 1.0.17.Final)
> [0m[0m21:41:00,143 INFO [org.jboss.as.connector.deployers.jdbc] (MSC service thread 1-1) JBAS010417: Started Driver service with driver-name = h2
> [0m[0m21:41:01,021 INFO [org.jboss.as.naming] (MSC service thread 1-2) JBAS011802: Starting Naming Service
> [0m[0m21:41:01,190 INFO [org.jboss.as.jacorb] (MSC service thread 1-2) JBAS016330: CORBA ORB Service started
> [0m[0m21:41:01,227 INFO [org.wildfly.extension.undertow] (ServerService Thread Pool -- 54) JBAS017502: Undertow 1.0.0.Beta3 starting
> [0m[0m21:41:01,773 INFO [org.jboss.as.mail.extension] (MSC service thread 1-2) JBAS015400: Bound mail session [java:jboss/mail/Default]
> [0m[0m21:41:02,232 INFO [org.wildfly.extension.undertow] (ServerService Thread Pool -- 54) JBAS017527: Creating file handler for path /home/hudson/workspace/narayana-codeCoverage/jboss-as/build/target/wildfly-8.0.0.Alpha4-SNAPSHOT/welcome-content
> [0m[0m21:41:02,275 INFO [org.jboss.as.jacorb] (MSC service thread 1-2) JBAS016328: CORBA Naming Service started
> [0m[0m21:41:02,520 INFO [org.wildfly.extension.undertow] (MSC service thread 1-1) JBAS017525: Started http handler io.undertow.server.handlers.resource.ResourceHandler@1b8fdd4.
> [0m[0m21:41:02,555 INFO [org.wildfly.extension.undertow] (MSC service thread 1-2) Starting server server service: service jboss.undertow.server.default-server
> [0m[0m21:41:02,576 INFO [org.wildfly.extension.undertow] (MSC service thread 1-1) Starting host default-host
> [0m[0m21:41:02,592 INFO [org.jboss.as.connector.subsystems.datasources] (MSC service thread 1-2) JBAS010400: Bound data source [java:jboss/datasources/ExampleDS]
> [0m[0m21:41:02,624 INFO [org.hornetq.core.server] (ServerService Thread Pool -- 58) HQ221000: live server is starting with configuration HornetQ Configuration (clustered=false,backup=false,sharedStore=true,journalDirectory=/home/hudson/workspace/narayana-codeCoverage/jboss-as/build/target/wildfly-8.0.0.Alpha4-SNAPSHOT/standalone/data/messagingjournal,bindingsDirectory=/home/hudson/workspace/narayana-codeCoverage/jboss-as/build/target/wildfly-8.0.0.Alpha4-SNAPSHOT/standalone/data/messagingbindings,largeMessagesDirectory=/home/hudson/workspace/narayana-codeCoverage/jboss-as/build/target/wildfly-8.0.0.Alpha4-SNAPSHOT/standalone/data/messaginglargemessages,pagingDirectory=/home/hudson/workspace/narayana-codeCoverage/jboss-as/build/target/wildfly-8.0.0.Alpha4-SNAPSHOT/standalone/data/messagingpaging)
> [0m[0m21:41:02,626 INFO [org.hornetq.core.server] (ServerService Thread Pool -- 58) HQ221006: Waiting to obtain live lock
> [0m[0m21:41:02,628 INFO [org.wildfly.extension.undertow] (MSC service thread 1-2) JBAS017528: registering handler io.undertow.server.handlers.resource.ResourceHandler@1b8fdd4 under path '/'
> [0m[0m21:41:02,658 INFO [org.wildfly.extension.undertow] (MSC service thread 1-1) JBAS017519: Undertow HTTP listener default listening on localhost.localdomain/127.0.0.1:8080
> [0m[0m21:41:02,671 INFO [org.hornetq.core.server] (ServerService Thread Pool -- 58) HQ221012: Using AIO Journal
> [0m[0m21:41:02,778 INFO [org.jboss.as.webservices] (ServerService Thread Pool -- 55) JBAS015537: Activating WebServices Extension
> [0m[0m21:41:02,800 INFO [org.jboss.ws.common.management] (MSC service thread 1-1) JBWS022052: Starting JBoss Web Services - Stack CXF Server 4.2.0.CR1
> [0m[0m21:41:02,802 INFO [org.jboss.as.webservices] (MSC service thread 1-2) JBAS015539: Starting service jboss.ws.endpoint-publish.ws-t11-participant
> [0m[0m21:41:02,804 INFO [org.jboss.as.webservices] (MSC service thread 1-1) JBAS015539: Starting service jboss.ws.endpoint-publish.ws-t11-client
> [0m[31m21:41:02,925 ERROR [org.jboss.msc.service.fail] (MSC service thread 1-1) MSC000001: Failed to start service jboss.ws.endpoint-publish.ws-t11-client: org.jboss.msc.service.StartException in service jboss.ws.endpoint-publish.ws-t11-client: java.lang.NullPointerException
> at org.jboss.as.webservices.service.EndpointPublishService.start(EndpointPublishService.java:97)
> at org.jboss.msc.service.ServiceControllerImpl$StartTask.startService(ServiceControllerImpl.java:1944) [jboss-msc-1.2.0.Beta2.jar:1.2.0.Beta2]
> at org.jboss.msc.service.ServiceControllerImpl$StartTask.run(ServiceControllerImpl.java:1877) [jboss-msc-1.2.0.Beta2.jar:1.2.0.Beta2]
> at java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1110) [rt.jar:1.7.0_09]
> at java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:603) [rt.jar:1.7.0_09]
> at java.lang.Thread.run(Thread.java:722) [rt.jar:1.7.0_09]
> Caused by: java.lang.NullPointerException
> at org.jboss.as.webservices.util.ASHelper.getMSCService(ASHelper.java:285)
> at org.jboss.as.webservices.config.ServerConfigFactoryImpl.getServerConfig(ServerConfigFactoryImpl.java:39)
> at org.jboss.ws.common.management.AbstractServerConfig.getServerIntegrationServerConfig(AbstractServerConfig.java:223)
> at org.jboss.ws.common.deployment.EndpointAddressDeploymentAspect.start(EndpointAddressDeploymentAspect.java:67)
> at org.jboss.ws.common.deployment.DeploymentAspectManagerImpl.deploy(DeploymentAspectManagerImpl.java:131)
> at org.jboss.as.webservices.publish.EndpointPublisherImpl.publish(EndpointPublisherImpl.java:125)
> at org.jboss.as.webservices.publish.EndpointPublisherImpl.publish(EndpointPublisherImpl.java:104)
> at org.jboss.as.webservices.service.EndpointPublishService.start(EndpointPublishService.java:95)
> ... 5 more
> [0m[0m21:41:02,930 INFO [org.jboss.as.webservices] (MSC service thread 1-1) JBAS015539: Starting service jboss.ws.endpoint-publish.ws-t11-coordinator
> [0m[31m21:41:02,938 ERROR [org.jboss.msc.service.fail] (MSC service thread 1-1) MSC000001: Failed to start service jboss.ws.endpoint-publish.ws-t11-coordinator: org.jboss.msc.service.StartException in service jboss.ws.endpoint-publish.ws-t11-coordinator: java.lang.NullPointerException
> at org.jboss.as.webservices.service.EndpointPublishService.start(EndpointPublishService.java:97)
> at org.jboss.msc.service.ServiceControllerImpl$StartTask.startService(ServiceControllerImpl.java:1944) [jboss-msc-1.2.0.Beta2.jar:1.2.0.Beta2]
> at org.jboss.msc.service.ServiceControllerImpl$StartTask.run(ServiceControllerImpl.java:1877) [jboss-msc-1.2.0.Beta2.jar:1.2.0.Beta2]
> at java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1110) [rt.jar:1.7.0_09]
> at java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:603) [rt.jar:1.7.0_09]
> at java.lang.Thread.run(Thread.java:722) [rt.jar:1.7.0_09]
> Caused by: java.lang.NullPointerException
> at org.jboss.as.webservices.util.ASHelper.getMSCService(ASHelper.java:285)
> at org.jboss.as.webservices.config.ServerConfigFactoryImpl.getServerConfig(ServerConfigFactoryImpl.java:39)
> at org.jboss.ws.common.management.AbstractServerConfig.getServerIntegrationServerConfig(AbstractServerConfig.java:223)
> at org.jboss.ws.common.deployment.EndpointAddressDeploymentAspect.start(EndpointAddressDeploymentAspect.java:67)
> at org.jboss.ws.common.deployment.DeploymentAspectManagerImpl.deploy(DeploymentAspectManagerImpl.java:131)
> at org.jboss.as.webservices.publish.EndpointPublisherImpl.publish(EndpointPublisherImpl.java:125)
> at org.jboss.as.webservices.publish.EndpointPublisherImpl.publish(EndpointPublisherImpl.java:104)
> at org.jboss.as.webservices.service.EndpointPublishService.start(EndpointPublishService.java:95)
> ... 5 more
> [0m[0m21:41:02,941 INFO [org.jboss.as.webservices] (MSC service thread 1-1) JBAS015539: Starting service jboss.ws.endpoint-publish.ws-c11
> [0m[31m21:41:02,943 ERROR [org.jboss.msc.service.fail] (MSC service thread 1-1) MSC000001: Failed to start service jboss.ws.endpoint-publish.ws-c11: org.jboss.msc.service.StartException in service jboss.ws.endpoint-publish.ws-c11: java.lang.NullPointerException
> at org.jboss.as.webservices.service.EndpointPublishService.start(EndpointPublishService.java:97)
> at org.jboss.msc.service.ServiceControllerImpl$StartTask.startService(ServiceControllerImpl.java:1944) [jboss-msc-1.2.0.Beta2.jar:1.2.0.Beta2]
> at org.jboss.msc.service.ServiceControllerImpl$StartTask.run(ServiceControllerImpl.java:1877) [jboss-msc-1.2.0.Beta2.jar:1.2.0.Beta2]
> at java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1110) [rt.jar:1.7.0_09]
> at java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:603) [rt.jar:1.7.0_09]
> at java.lang.Thread.run(Thread.java:722) [rt.jar:1.7.0_09]
> Caused by: java.lang.NullPointerException
> at org.jboss.as.webservices.util.ASHelper.getMSCService(ASHelper.java:285)
> at org.jboss.as.webservices.config.ServerConfigFactoryImpl.getServerConfig(ServerConfigFactoryImpl.java:39)
> at org.jboss.ws.common.management.AbstractServerConfig.getServerIntegrationServerConfig(AbstractServerConfig.java:223)
> at org.jboss.ws.common.deployment.EndpointAddressDeploymentAspect.start(EndpointAddressDeploymentAspect.java:67)
> at org.jboss.ws.common.deployment.DeploymentAspectManagerImpl.deploy(DeploymentAspectManagerImpl.java:131)
> at org.jboss.as.webservices.publish.EndpointPublisherImpl.publish(EndpointPublisherImpl.java:125)
> at org.jboss.as.webservices.publish.EndpointPublisherImpl.publish(EndpointPublisherImpl.java:104)
> at org.jboss.as.webservices.service.EndpointPublishService.start(EndpointPublishService.java:95)
> ... 5 more
> [0m[31m21:41:02,950 ERROR [org.jboss.msc.service.fail] (MSC service thread 1-2) MSC000001: Failed to start service jboss.ws.endpoint-publish.ws-t11-participant: org.jboss.msc.service.StartException in service jboss.ws.endpoint-publish.ws-t11-participant: java.lang.NullPointerException
> at org.jboss.as.webservices.service.EndpointPublishService.start(EndpointPublishService.java:97)
> at org.jboss.msc.service.ServiceControllerImpl$StartTask.startService(ServiceControllerImpl.java:1944) [jboss-msc-1.2.0.Beta2.jar:1.2.0.Beta2]
> at org.jboss.msc.service.ServiceControllerImpl$StartTask.run(ServiceControllerImpl.java:1877) [jboss-msc-1.2.0.Beta2.jar:1.2.0.Beta2]
> at java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1110) [rt.jar:1.7.0_09]
> at java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:603) [rt.jar:1.7.0_09]
> at java.lang.Thread.run(Thread.java:722) [rt.jar:1.7.0_09]
> Caused by: java.lang.NullPointerException
> at org.jboss.as.webservices.util.ASHelper.getMSCService(ASHelper.java:285)
> at org.jboss.as.webservices.config.ServerConfigFactoryImpl.getServerConfig(ServerConfigFactoryImpl.java:39)
> at org.jboss.ws.common.management.AbstractServerConfig.getServerIntegrationServerConfig(AbstractServerConfig.java:223)
> at org.jboss.ws.common.deployment.EndpointAddressDeploymentAspect.start(EndpointAddressDeploymentAspect.java:67)
> at org.jboss.ws.common.deployment.DeploymentAspectManagerImpl.deploy(DeploymentAspectManagerImpl.java:131)
> at org.jboss.as.webservices.publish.EndpointPublisherImpl.publish(EndpointPublisherImpl.java:125)
> at org.jboss.as.webservices.publish.EndpointPublisherImpl.publish(EndpointPublisherImpl.java:104)
> at org.jboss.as.webservices.service.EndpointPublishService.start(EndpointPublishService.java:95)
> ... 5 more
> [0m[0m21:41:02,954 INFO [org.hornetq.core.server] (ServerService Thread Pool -- 58) HQ221034: Waiting to obtain live lock
> [0m[0m21:41:02,960 INFO [org.hornetq.core.server] (ServerService Thread Pool -- 58) HQ221035: Live Server Obtained live lock
> [0m[0m21:41:03,167 INFO [org.jboss.as.remoting] (MSC service thread 1-1) JBAS017100: Listening on 127.0.0.1:9999
> [0m[0m21:41:03,289 INFO [org.jboss.as.server.deployment.scanner] (MSC service thread 1-1) JBAS015012: Started FileSystemDeploymentService for directory /home/hudson/workspace/narayana-codeCoverage/jboss-as/build/target/wildfly-8.0.0.Alpha4-SNAPSHOT/standalone/deployments
> [0m[0m21:41:03,296 INFO [org.jboss.as.server.deployment] (MSC service thread 1-1) JBAS015876: Starting deployment of "xtstest.war" (runtime-name: "xtstest.war")
> [0m[0m21:41:03,298 INFO [org.jboss.as.server.deployment] (MSC service thread 1-1) JBAS015876: Starting deployment of "restat-web-5.0.0.M4-SNAPSHOT.war" (runtime-name: "restat-web-5.0.0.M4-SNAPSHOT.war")
> [0m[33m21:41:04,415 WARN [org.jboss.as.dependency.private] (MSC service thread 1-2) JBAS018567: Deployment "dep
> {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, 5 months
[JBoss JIRA] (JBTM-1716) BACoordinatorCompletionTest test hung
by Paul Robinson (JIRA)
[ https://issues.jboss.org/browse/JBTM-1716?page=com.atlassian.jira.plugin.... ]
Paul Robinson commented on JBTM-1716:
-------------------------------------
{quote}
Found ArquillianProxyException with [Proxied because : Original exception not deserilizable, ClassNotFoundException], it looks like the mismatch version between the arquillian and the jboss-as but I'm not sure as this issue happened on 5/27/2013
{quote}
I've seen this error before, I think it happens when something goes wrong on the server, and fails to transmit the cause as the Class for the Exception is not available. You should probably take a look at the server to see if you can find the root cause.
> BACoordinatorCompletionTest test hung
> -------------------------------------
>
> Key: JBTM-1716
> URL: https://issues.jboss.org/browse/JBTM-1716
> Project: JBoss Transaction Manager
> Issue Type: Bug
> Security Level: Public(Everyone can see)
> Components: TXFramework
> Reporter: Paul Robinson
> Assignee: Amos Feng
> Priority: Trivial
> Fix For: 5.0.0.M4
>
> Original Estimate: 2 hours
> Remaining Estimate: 2 hours
>
> org.jboss.narayana.txframework.functional.ws.ba.coordinatorCompletion.BACoordinatorCompletionTest test hung.
> See here for log: http://172.17.131.2/job/narayana/TESTS=XTS,jdk=jdk7.latest,label=linux/63...
--
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, 5 months
[JBoss JIRA] (JBTM-1678) JTA 1.2 @Transactional for compensations
by Gytis Trikleris (JIRA)
[ https://issues.jboss.org/browse/JBTM-1678?focusedWorklogId=12429512&page=... ]
Gytis Trikleris logged work on JBTM-1678:
-----------------------------------------
Author: Gytis Trikleris
Created on: 26/Jul/13 1:59 PM
Start Date: 26/Jul/13 1:59 PM
Worklog Time Spent: 4 hours, 30 minutes
Issue Time Tracking
-------------------
Remaining Estimate: 4 days, 3 hours, 30 minutes (was: 1 week)
Time Spent: 4 hours, 30 minutes
Worklog Id: (was: 12429512)
> JTA 1.2 @Transactional for compensations
> ----------------------------------------
>
> Key: JBTM-1678
> URL: https://issues.jboss.org/browse/JBTM-1678
> Project: JBoss Transaction Manager
> Issue Type: Feature Request
> Security Level: Public(Everyone can see)
> Components: TXFramework, XTS
> Reporter: Paul Robinson
> Assignee: Gytis Trikleris
> Fix For: 5.0.0.M4
>
> Original Estimate: 1 week
> Time Spent: 4 hours, 30 minutes
> Remaining Estimate: 4 days, 3 hours, 30 minutes
>
> Essentially offer comparable features for Compensations as those defined for JTA in the @Transactional section of the JTA spec.
> We can re-use the code and tests from our JTA 1.2 implementation. It may be possible to extend those impls, otherwise it's a copy-and-paste.
--
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, 5 months
[JBoss JIRA] (JBTM-1787) Compiliation failure for BlackTie on Fedora 18
by Tom Jenkinson (JIRA)
[ https://issues.jboss.org/browse/JBTM-1787?page=com.atlassian.jira.plugin.... ]
Tom Jenkinson updated JBTM-1787:
--------------------------------
Status: Resolved (was: Pull Request Sent)
Resolution: Done
> Compiliation failure for BlackTie on Fedora 18
> ----------------------------------------------
>
> Key: JBTM-1787
> URL: https://issues.jboss.org/browse/JBTM-1787
> Project: JBoss Transaction Manager
> Issue Type: Bug
> Security Level: Public(Everyone can see)
> Components: BlackTie
> Reporter: Tom Jenkinson
> Assignee: Tom Jenkinson
> Fix For: 5.0.0.M4
>
>
> test-compile:
> [mkdir] Created dir: /home/tom/projects/jbosstm/narayana/blacktie/core/target/cpp-test-classes
> [copy] Copying 5 files to /home/tom/projects/jbosstm/narayana/blacktie/core/target/cpp-test-classes
> [cc] 12 total files to be compiled.
> [cc] Starting link
> [cc] /usr/bin/ld: warning: libexpat.so.1, needed by /lib64/libaprutil-1.so.0, may conflict with libexpat.so.0
> [cc] /usr/bin/ld: warning: libexpat.so.1, needed by /lib64/libaprutil-1.so.0, may conflict with libexpat.so.0
> [cc] cpp-test-classes/TestSynchronizableObject.o:(.data.rel.ro._ZTV6Waiter[_ZTV6Waiter]+0x70): undefined reference to `ACE_Event_Handler::handle_signal(int, siginfo_t*, ucontext*)'
> [cc] /lib64/libaprutil-1.so.0: undefined reference to `apr_pool_pre_cleanup_register'
> [cc] collect2: error: ld returned 1 exit status
--
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, 5 months