You are viewing a plain text version of this content. The canonical link for it is here.
Posted to users@tomee.apache.org by romych <ro...@mail.ru> on 2014/03/03 09:39:07 UTC

MDB and IBM WS MQ 7.5 Only one shot

I am deploy project with MDB on Tomee 1.5.2.
@MessageDriven(	activationConfig = {           
@ActivationConfigProperty(propertyName = "destinationType", propertyValue =
"javax.jms.Queue"),            @ActivationConfigProperty(propertyName =
"destination", propertyValue = "LQ_FROM_TO"),	   
//@ActivationConfigProperty(propertyName = "channel", propertyValue =
"SYSTEM.DEF.SVRCONN"),	    @ActivationConfigProperty(propertyName =
"hostName", propertyValue = "10.20.30.40"),	   
@ActivationConfigProperty(propertyName = "queueManager", propertyValue =
"SVC_QM"),	    @ActivationConfigProperty(propertyName = "port",
propertyValue = "1415"),	    @ActivationConfigProperty(propertyName =
"transportType", propertyValue = "CLIENT"),	   
@ActivationConfigProperty(propertyName = "username", propertyValue =
"user"),	    @ActivationConfigProperty(propertyName = "password",
propertyValue = "pwd"),    	    @ActivationConfigProperty(propertyName =
"acknowledgeMode", propertyValue = "Auto-acknowledge")
})//@TransactionAttribute(TransactionAttributeType.NOT_SUPPORTED)public
class QListener implements MessageListener {        private static final
Logger logger = Logger.getLogger(QListener.class.getName());    public
QListener() {	super();    }        @Override    public void
onMessage(Message message) {	logger.info("MDB onMessage called");	try {	   
if (message instanceof TextMessage) {		final TextMessage textMessage =
(TextMessage) message;		final String question = textMessage.getText();	
//message.acknowledge();		logger.info("Message received: " + question);			   
} else {		logger.warning("Message ignored: " + message != null ?
message.getClass().getSimpleName() : "empty");	    }	} catch (JMSException
e) {	    throw new IllegalStateException(e);	}    }    @PreDestroy    void
done() {	logger.info("MDB Done");    }    @PostConstruct    void init() {
logger.info("MDB Initialised");    }}
Messages queue contains about five messages, but after deploy, MDB consume
only one message, and ... do nothing (continuous worker messages in a log).
After restart app server, or after redeploy app, MDB consume next one. And I
can see all messages thru QueueBrowser and can receive via
consumer.receive(), from singleton bean for example.
Container configured via tomee.xml:
&lt;Container id="wmq" type="MESSAGE"&gt;        ResourceAdapter=wmqRA       
MessageListenerInterface=javax.jms.MessageListener       
ActivationSpecClass=com.ibm.mq.connector.inbound.ActivationSpecImpl       
InstanceLimit=5    &lt;/Container&gt;    &lt;Resource id="wmqRA"
type="com.ibm.mq.connector.ResourceAdapterImpl"        
class-name="com.ibm.mq.connector.ResourceAdapterImpl"&gt;       
connectionConcurrency=1        maxConnections=5        logWriterEnabled=true       
reconnectionRetryCount=15        reconnectionRetryInterval=20000       
traceEnabled=true        traceLevel=6       
traceDestination=/tmp/wmq_jca.trace   &lt;/Resource&gt;
Log:
мар 03, 2014 12:05:15 PM org.apache.openejb.cdi.BeansDeployer
validateInjectionPointsINFO: All injection points are validated
successfully.мар 03, 2014 12:05:15 PM
org.apache.openejb.cdi.OpenEJBLifecycle startApplicationINFO: OpenWebBeans
Container has started, it took 16 ms.мар 03, 2014 12:05:15 PM
org.apache.openejb.assembler.classic.Assembler startEjbsINFO: Created
Ejb(deployment-id=ProcEmuService, ejb-name=ProcEmuService,
container=EjbPool)12:05:15.451 [localhost-startStop-1] INFO 
org.quartz.impl.StdSchedulerFactory - Using default implementation for
ThreadExecutor12:05:15.508 [localhost-startStop-1] INFO 
org.quartz.core.SchedulerSignalerImpl - Initialized Scheduler Signaller of
type: class org.quartz.core.SchedulerSignalerImpl12:05:15.540
[localhost-startStop-1] INFO  org.quartz.core.QuartzScheduler - Quartz
Scheduler v.2.1.6 created.12:05:15.574 [localhost-startStop-1] INFO 
org.quartz.simpl.RAMJobStore - RAMJobStore initialized.12:05:15.614
[localhost-startStop-1] INFO  org.quartz.core.QuartzScheduler - Scheduler
meta-data: Quartz Scheduler (v2.1.6) 'OpenEJB-TimerService-Scheduler' with
instanceId 'OpenEJB'  Scheduler class: 'org.quartz.core.QuartzScheduler' -
running locally.  NOT STARTED.  Currently in standby mode.  Number of jobs
executed: 0  Using thread pool
'org.apache.openejb.core.timer.DefaultTimerThreadPoolAdapter' - with 0
threads.  Using job-store 'org.quartz.simpl.RAMJobStore' - which does not
support persistence. and is not clustered.12:05:15.673
[localhost-startStop-1] INFO  org.quartz.impl.StdSchedulerFactory - Quartz
scheduler 'OpenEJB-TimerService-Scheduler' initialized from an externally
provided properties instance.12:05:15.706 [localhost-startStop-1] INFO 
org.quartz.impl.StdSchedulerFactory - Quartz scheduler version:
2.1.612:05:15.740 [localhost-startStop-1] INFO 
org.quartz.core.QuartzScheduler - Scheduler
OpenEJB-TimerService-Scheduler_$_OpenEJB started.мар 03, 2014 12:05:15 PM
org.apache.openejb.assembler.classic.Assembler startEjbsINFO: Created
Ejb(deployment-id=MqWorker, ejb-name=MqWorker, container=Default Singleton
Container)мар 03, 2014 12:05:17 PM
org.apache.openejb.assembler.classic.Assembler startEjbsINFO: Created
Ejb(deployment-id=QListener, ejb-name=QListener, container=wmq)мар 03, 2014
12:05:17 PM org.apache.openejb.assembler.classic.Assembler startEjbsINFO:
Started Ejb(deployment-id=ProcEmuService, ejb-name=ProcEmuService,
container=EjbPool)мар 03, 2014 12:05:17 PM
org.apache.openejb.assembler.classic.Assembler startEjbsINFO: Started
Ejb(deployment-id=MqWorker, ejb-name=MqWorker, container=Default Singleton
Container)мар 03, 2014 12:05:17 PM
org.apache.openejb.assembler.classic.Assembler startEjbsINFO: Started
Ejb(deployment-id=QListener, ejb-name=QListener, container=wmq)мар 03, 2014
12:05:17 PM org.apache.tomee.catalina.TomcatWebAppBuilder deployWebAppsINFO:
using context file
/home/rb0000/ProcEmu/build/web/META-INF/context.xml12:05:17.462
[localhost-startStop-1] INFO 
o.a.c.service.factory.ReflectionServiceFactoryBean - Creating Service
{http://www.bbb.ru}ProcEmuService from class
ru.bbb.emu.pc.ProcEmuServiceIntf12:05:17.509 [wmqRA-worker-1] INFO 
org.apache.geronimo.connector.work.WorkerContext - Translated
ExecutionContext to TransactionContext12:05:17.549 [wmqRA-worker-1] INFO 
org.apache.geronimo.connector.work.WorkerContext - sorting
WorkContextHandler:
org.apache.geronimo.connector.work.TransactionContextHandler@43cdc363 for
work context:
javax.resource.spi.work.TransactionContext@79d6bb5b12:05:17.580
[wmqRA-worker-1] INFO  org.apache.geronimo.connector.work.WorkerContext -
adding sorted WorkContextHandler:
org.apache.geronimo.connector.work.TransactionContextHandler@43cdc36312:05:17.622
[wmqRA-worker-1] INFO  org.apache.geronimo.connector.work.WorkerContext -
Removing non-required WorkContextHandler with no context:
org.apache.openejb.core.security.SecurityContextHandler@2bb0fd2012:05:17.655
[wmqRA-worker-1] INFO  org.apache.geronimo.connector.work.WorkerContext -
Removing non-required WorkContextHandler with no context:
org.apache.geronimo.connector.work.HintsContextHandler@670e65e512:05:17.697
[wmqRA-worker-1] INFO  org.apache.geronimo.connector.work.WorkerContext -
calling before on WorkContextHandler:
org.apache.geronimo.connector.work.TransactionContextHandler@43cdc363 with
workContext: javax.resource.spi.work.TransactionContext@79d6bb5b12:05:17.732
[wmqRA-worker-2] INFO  org.apache.geronimo.connector.work.WorkerContext -
Translated ExecutionContext to TransactionContext12:05:17.789
[wmqRA-worker-2] INFO  org.apache.geronimo.connector.work.WorkerContext -
sorting WorkContextHandler:
org.apache.geronimo.connector.work.TransactionContextHandler@43cdc363 for
work context:
javax.resource.spi.work.TransactionContext@740e3cb012:05:17.824
[wmqRA-worker-2] INFO  org.apache.geronimo.connector.work.WorkerContext -
adding sorted WorkContextHandler:
org.apache.geronimo.connector.work.TransactionContextHandler@43cdc36312:05:17.861
[wmqRA-worker-2] INFO  org.apache.geronimo.connector.work.WorkerContext -
Removing non-required WorkContextHandler with no context:
org.apache.openejb.core.security.SecurityContextHandler@2bb0fd20мар 03, 2014
12:05:17 PM ru.bbb.emu.mq.QListener initINFO: MDB Initialised12:05:17.891
[wmqRA-worker-2] INFO  org.apache.geronimo.connector.work.WorkerContext -
Removing non-required WorkContextHandler with no context:
org.apache.geronimo.connector.work.HintsContextHandler@670e65e512:05:17.924
[wmqRA-worker-2] INFO  org.apache.geronimo.connector.work.WorkerContext -
calling before on WorkContextHandler:
org.apache.geronimo.connector.work.TransactionContextHandler@43cdc363 with
workContext: javax.resource.spi.work.TransactionContext@740e3cb0мар 03, 2014
12:05:17 PM ru.bbb.emu.mq.QListener initINFO: MDB Initialised12:05:18.063
[wmqRA-worker-3] INFO  org.apache.geronimo.connector.work.WorkerContext -
Translated ExecutionContext to TransactionContext12:05:18.068
[wmqRA-worker-2] INFO  org.apache.geronimo.connector.work.WorkerContext -
calling after on WorkContextHandler:
org.apache.geronimo.connector.work.TransactionContextHandler@43cdc363 with
workContext: javax.resource.spi.work.TransactionContext@740e3cb012:05:18.099
[wmqRA-worker-3] INFO  org.apache.geronimo.connector.work.WorkerContext -
sorting WorkContextHandler:
org.apache.geronimo.connector.work.TransactionContextHandler@43cdc363 for
work context:
javax.resource.spi.work.TransactionContext@2e726c5312:05:18.175
[wmqRA-worker-3] INFO  org.apache.geronimo.connector.work.WorkerContext -
adding sorted WorkContextHandler:
org.apache.geronimo.connector.work.TransactionContextHandler@43cdc36312:05:18.225
[wmqRA-worker-3] INFO  org.apache.geronimo.connector.work.WorkerContext -
Removing non-required WorkContextHandler with no context:
org.apache.openejb.core.security.SecurityContextHandler@2bb0fd2012:05:18.258
[wmqRA-worker-3] INFO  org.apache.geronimo.connector.work.WorkerContext -
Removing non-required WorkContextHandler with no context:
org.apache.geronimo.connector.work.HintsContextHandler@670e65e512:05:18.317
[wmqRA-worker-3] INFO  org.apache.geronimo.connector.work.WorkerContext -
calling before on WorkContextHandler:
org.apache.geronimo.connector.work.TransactionContextHandler@43cdc363 with
workContext: javax.resource.spi.work.TransactionContext@2e726c5312:05:18.412
[wmqRA-worker-3] INFO  org.apache.geronimo.connector.work.WorkerContext -
calling after on WorkContextHandler:
org.apache.geronimo.connector.work.TransactionContextHandler@43cdc363 with
workContext: javax.resource.spi.work.TransactionContext@2e726c53мар 03, 2014
12:05:18 PM ru.bbb.emu.mq.QListener initINFO: MDB Initialisedмар 03, 2014
12:05:18 PM ru.bbb.emu.mq.QListener onMessageINFO: MDB onMessage
called*--------- This is a first message, we have another four in queue
---------*мар 03, 2014 12:05:18 PM ru.bbb.emu.mq.QListener onMessageINFO:
Message received: &lt;soapenv:Envelope
xmlns:soapenv="http://schemas.xmlsoap.org/soap/envelope/"
xmlns:ns1="http://www.bbb.ru"&gt;   &lt;soapenv:Header/&gt;  
&lt;soapenv:Body&gt;      &lt;ns1:SetStatusRequest&gt;        
&lt;token&gt;11123-00-AB-BF&lt;/token&gt;        
&lt;status&gt;Open&lt;/status&gt;         &lt;reasonText&gt;I Wanna do
so!&lt;/reasonText&gt;      &lt;/ns1:SetStatusRequest&gt;  
&lt;/soapenv:Body&gt;&lt;/soapenv:Envelope&gt;12:05:19.453 [wmqRA-worker-4]
INFO  org.apache.geronimo.connector.work.WorkerContext - Translated
ExecutionContext to TransactionContext12:05:19.465 [localhost-startStop-1]
INFO  org.apache.cxf.endpoint.ServerImpl - Setting the server's publish
address to be http://nopath:8012:05:19.492 [wmqRA-worker-4] INFO 
org.apache.geronimo.connector.work.WorkerContext - sorting
WorkContextHandler:
org.apache.geronimo.connector.work.TransactionContextHandler@43cdc363 for
work context:
javax.resource.spi.work.TransactionContext@3f9355d712:05:19.525
[wmqRA-worker-4] INFO  org.apache.geronimo.connector.work.WorkerContext -
adding sorted WorkContextHandler:
org.apache.geronimo.connector.work.TransactionContextHandler@43cdc36312:05:19.558
[wmqRA-worker-4] INFO  org.apache.geronimo.connector.work.WorkerContext -
Removing non-required WorkContextHandler with no context:
org.apache.openejb.core.security.SecurityContextHandler@2bb0fd2012:05:19.592
[wmqRA-worker-4] INFO  org.apache.geronimo.connector.work.WorkerContext -
Removing non-required WorkContextHandler with no context:
org.apache.geronimo.connector.work.HintsContextHandler@670e65e512:05:19.625
[wmqRA-worker-4] INFO  org.apache.geronimo.connector.work.WorkerContext -
calling before on WorkContextHandler:
org.apache.geronimo.connector.work.TransactionContextHandler@43cdc363 with
workContext: javax.resource.spi.work.TransactionContext@3f9355d712:05:19.668
[wmqRA-worker-4] INFO  org.apache.geronimo.connector.work.WorkerContext -
calling after on WorkContextHandler:
org.apache.geronimo.connector.work.TransactionContextHandler@43cdc363 with
workContext: javax.resource.spi.work.TransactionContext@3f9355d7мар 03, 2014
12:05:19 PM ru.bbb.emu.mq.QListener initINFO: MDB Initialisedмар 03, 2014
12:05:19 PM org.apache.openejb.server.webservices.WsService
afterApplicationCreatedINFO:
Webservice(wsdl=http://localhost:9084/ProcEmu/ws/ProcEmuService,
qname={http://www.bbb.ru}ProcEmuService) --> Ejb(id=ProcEmuService)мар 03,
2014 12:05:19 PM org.apache.openejb.assembler.classic.Assembler
createApplicationINFO: Deployed
Application(path=/home/rb0000/ProcEmu/build/web)мар 03, 2014 12:05:20 PM
org.apache.catalina.startup.HostConfig deployDirectoryINFO: Deploying web
application directory
/home/rb0000/JEE/apache-tomee-plus-1.5.2/webapps/tomeeмар 03, 2014 12:05:20
PM org.apache.tomee.catalina.TomcatWebAppBuilder initINFO:
------------------------- localhost -> /tomeeмар 03, 2014 12:05:20 PM
org.apache.openejb.config.ConfigurationFactory configureApplicationINFO:
Configuring enterprise application:
/home/rb0000/JEE/apache-tomee-plus-1.5.2/webapps/tomeeмар 03, 2014 12:05:20
PM org.apache.openejb.util.OptionsLog infoINFO: Using
'openejb.validation.output.level=VERBOSE'мар 03, 2014 12:05:20 PM
org.apache.openejb.config.AppInfoBuilder buildINFO: Enterprise application
"/home/rb0000/JEE/apache-tomee-plus-1.5.2/webapps/tomee" loaded.мар 03, 2014
12:05:20 PM org.apache.openejb.assembler.classic.Assembler
createApplicationINFO: Assembling app:
/home/rb0000/JEE/apache-tomee-plus-1.5.2/webapps/tomeeмар 03, 2014 12:05:20
PM org.apache.openejb.cdi.CdiBuilder initSingletonINFO: Existing thread
singleton service in SystemInstance():
org.apache.openejb.cdi.ThreadSingletonServiceImpl@323de5edмар 03, 2014
12:05:20 PM org.apache.openejb.cdi.OpenEJBLifecycle startApplicationINFO:
OpenWebBeans Container is starting...мар 03, 2014 12:05:20 PM
org.apache.webbeans.plugins.PluginLoader startUpINFO: Adding
OpenWebBeansPlugin : [CdiPlugin]мар 03, 2014 12:05:20 PM
org.apache.webbeans.plugins.PluginLoader startUpINFO: Adding
OpenWebBeansPlugin : [OpenWebBeansJsfPlugin]мар 03, 2014 12:05:20 PM
org.apache.openejb.cdi.BeansDeployer validateInjectionPointsINFO: All
injection points are validated successfully.мар 03, 2014 12:05:20 PM
org.apache.openejb.cdi.OpenEJBLifecycle startApplicationINFO: OpenWebBeans
Container has started, it took 10 ms.мар 03, 2014 12:05:20 PM
org.apache.openejb.assembler.classic.Assembler createApplicationINFO:
Deployed
Application(path=/home/rb0000/JEE/apache-tomee-plus-1.5.2/webapps/tomee)мар
03, 2014 12:05:20 PM org.apache.catalina.startup.HostConfig
deployDirectoryINFO: Deploying web application directory
/home/rb0000/JEE/apache-tomee-plus-1.5.2/webapps/host-managerмар 03, 2014
12:05:20 PM org.apache.tomee.catalina.TomcatWebAppBuilder initINFO:
------------------------- localhost -> /host-managerмар 03, 2014 12:05:20 PM
org.apache.openejb.config.ConfigurationFactory configureApplicationINFO:
Configuring enterprise application:
/home/rb0000/JEE/apache-tomee-plus-1.5.2/webapps/host-managerмар 03, 2014
12:05:20 PM org.apache.openejb.util.OptionsLog infoINFO: Using
'openejb.validation.output.level=VERBOSE'мар 03, 2014 12:05:20 PM
org.apache.openejb.config.AppInfoBuilder buildINFO: Enterprise application
"/home/rb0000/JEE/apache-tomee-plus-1.5.2/webapps/host-manager" loaded.мар
03, 2014 12:05:20 PM org.apache.openejb.assembler.classic.Assembler
createApplicationINFO: Assembling app:
/home/rb0000/JEE/apache-tomee-plus-1.5.2/webapps/host-managerмар 03, 2014
12:05:20 PM org.apache.openejb.cdi.CdiBuilder initSingletonINFO: Existing
thread singleton service in SystemInstance():
org.apache.openejb.cdi.ThreadSingletonServiceImpl@323de5edмар 03, 2014
12:05:20 PM org.apache.openejb.cdi.OpenEJBLifecycle startApplicationINFO:
OpenWebBeans Container is starting...мар 03, 2014 12:05:20 PM
org.apache.webbeans.plugins.PluginLoader startUpINFO: Adding
OpenWebBeansPlugin : [CdiPlugin]мар 03, 2014 12:05:20 PM
org.apache.webbeans.plugins.PluginLoader startUpINFO: Adding
OpenWebBeansPlugin : [OpenWebBeansJsfPlugin]мар 03, 2014 12:05:20 PM
org.apache.openejb.cdi.BeansDeployer validateInjectionPointsINFO: All
injection points are validated successfully.мар 03, 2014 12:05:20 PM
org.apache.openejb.cdi.OpenEJBLifecycle startApplicationINFO: OpenWebBeans
Container has started, it took 5 ms.мар 03, 2014 12:05:20 PM
org.apache.tomee.catalina.TomcatWebAppBuilder deployWebAppsINFO: using
context file
/home/rb0000/JEE/apache-tomee-plus-1.5.2/webapps/host-manager/META-INF/context.xmlмар
03, 2014 12:05:20 PM org.apache.openejb.assembler.classic.Assembler
createApplicationINFO: Deployed
Application(path=/home/rb0000/JEE/apache-tomee-plus-1.5.2/webapps/host-manager)мар
03, 2014 12:05:21 PM org.apache.catalina.startup.HostConfig
deployDirectoryINFO: Deploying web application directory
/home/rb0000/JEE/apache-tomee-plus-1.5.2/webapps/managerмар 03, 2014
12:05:21 PM org.apache.tomee.catalina.TomcatWebAppBuilder initINFO:
------------------------- localhost -> /managerмар 03, 2014 12:05:21 PM
org.apache.openejb.config.ConfigurationFactory configureApplicationINFO:
Configuring enterprise application:
/home/rb0000/JEE/apache-tomee-plus-1.5.2/webapps/managerмар 03, 2014
12:05:21 PM org.apache.openejb.util.OptionsLog infoINFO: Using
'openejb.validation.output.level=VERBOSE'мар 03, 2014 12:05:21 PM
org.apache.openejb.config.AppInfoBuilder buildINFO: Enterprise application
"/home/rb0000/JEE/apache-tomee-plus-1.5.2/webapps/manager" loaded.мар 03,
2014 12:05:21 PM org.apache.openejb.assembler.classic.Assembler
createApplicationINFO: Assembling app:
/home/rb0000/JEE/apache-tomee-plus-1.5.2/webapps/managerмар 03, 2014
12:05:21 PM org.apache.openejb.cdi.CdiBuilder initSingletonINFO: Existing
thread singleton service in SystemInstance():
org.apache.openejb.cdi.ThreadSingletonServiceImpl@323de5edмар 03, 2014
12:05:21 PM org.apache.openejb.cdi.OpenEJBLifecycle startApplicationINFO:
OpenWebBeans Container is starting...мар 03, 2014 12:05:21 PM
org.apache.webbeans.plugins.PluginLoader startUpINFO: Adding
OpenWebBeansPlugin : [CdiPlugin]мар 03, 2014 12:05:21 PM
org.apache.webbeans.plugins.PluginLoader startUpINFO: Adding
OpenWebBeansPlugin : [OpenWebBeansJsfPlugin]мар 03, 2014 12:05:21 PM
org.apache.openejb.cdi.BeansDeployer validateInjectionPointsINFO: All
injection points are validated successfully.мар 03, 2014 12:05:21 PM
org.apache.openejb.cdi.OpenEJBLifecycle startApplicationINFO: OpenWebBeans
Container has started, it took 14 ms.мар 03, 2014 12:05:21 PM
org.apache.tomee.catalina.TomcatWebAppBuilder deployWebAppsINFO: using
context file
/home/rb0000/JEE/apache-tomee-plus-1.5.2/webapps/manager/META-INF/context.xmlмар
03, 2014 12:05:21 PM org.apache.openejb.assembler.classic.Assembler
createApplicationINFO: Deployed
Application(path=/home/rb0000/JEE/apache-tomee-plus-1.5.2/webapps/manager)мар
03, 2014 12:05:21 PM org.apache.catalina.startup.HostConfig
deployDirectoryINFO: Deploying web application directory
/home/rb0000/JEE/apache-tomee-plus-1.5.2/webapps/ROOTмар 03, 2014 12:05:21
PM org.apache.tomee.catalina.TomcatWebAppBuilder initINFO:
------------------------- localhost -> мар 03, 2014 12:05:21 PM
org.apache.openejb.config.ConfigurationFactory configureApplicationINFO:
Configuring enterprise application:
/home/rb0000/JEE/apache-tomee-plus-1.5.2/webapps/ROOTмар 03, 2014 12:05:21
PM org.apache.openejb.util.OptionsLog infoINFO: Using
'openejb.validation.output.level=VERBOSE'мар 03, 2014 12:05:21 PM
org.apache.openejb.config.AppInfoBuilder buildINFO: Enterprise application
"/home/rb0000/JEE/apache-tomee-plus-1.5.2/webapps/ROOT" loaded.мар 03, 2014
12:05:21 PM org.apache.openejb.assembler.classic.Assembler
createApplicationINFO: Assembling app:
/home/rb0000/JEE/apache-tomee-plus-1.5.2/webapps/ROOTмар 03, 2014 12:05:21
PM org.apache.openejb.cdi.CdiBuilder initSingletonINFO: Existing thread
singleton service in SystemInstance():
org.apache.openejb.cdi.ThreadSingletonServiceImpl@323de5edмар 03, 2014
12:05:21 PM org.apache.openejb.cdi.OpenEJBLifecycle startApplicationINFO:
OpenWebBeans Container is starting...мар 03, 2014 12:05:21 PM
org.apache.webbeans.plugins.PluginLoader startUpINFO: Adding
OpenWebBeansPlugin : [CdiPlugin]мар 03, 2014 12:05:21 PM
org.apache.webbeans.plugins.PluginLoader startUpINFO: Adding
OpenWebBeansPlugin : [OpenWebBeansJsfPlugin]мар 03, 2014 12:05:21 PM
org.apache.openejb.cdi.BeansDeployer validateInjectionPointsINFO: All
injection points are validated successfully.мар 03, 2014 12:05:21 PM
org.apache.openejb.cdi.OpenEJBLifecycle startApplicationINFO: OpenWebBeans
Container has started, it took 12 ms.мар 03, 2014 12:05:21 PM
org.apache.openejb.assembler.classic.Assembler createApplicationINFO:
Deployed
Application(path=/home/rb0000/JEE/apache-tomee-plus-1.5.2/webapps/ROOT)мар
03, 2014 12:05:21 PM org.apache.coyote.AbstractProtocol startINFO: Starting
ProtocolHandler ["http-apr-9084"]мар 03, 2014 12:05:21 PM
org.apache.coyote.AbstractProtocol startINFO: Starting ProtocolHandler
["ajp-apr-8019"]мар 03, 2014 12:05:21 PM
org.apache.catalina.startup.Catalina startINFO: Server startup in 7553 msмар
03, 2014 12:05:21 PM ru.bbb.emu.mq.QListener doneINFO: MDB Done12:05:21.796
[wmqRA-worker-1] INFO  org.apache.geronimo.connector.work.WorkerContext -
calling after on WorkContextHandler:
org.apache.geronimo.connector.work.TransactionContextHandler@43cdc363 with
workContext: javax.resource.spi.work.TransactionContext@79d6bb5b12:05:22.578
[wmqRA-worker-5] INFO  org.apache.geronimo.connector.work.WorkerContext -
Translated ExecutionContext to TransactionContext12:05:22.615
[wmqRA-worker-5] INFO  org.apache.geronimo.connector.work.WorkerContext -
sorting WorkContextHandler:
org.apache.geronimo.connector.work.TransactionContextHandler@43cdc363 for
work context:
javax.resource.spi.work.TransactionContext@7d55ce9412:05:22.650
[wmqRA-worker-5] INFO  org.apache.geronimo.connector.work.WorkerContext -
adding sorted WorkContextHandler:
org.apache.geronimo.connector.work.TransactionContextHandler@43cdc36312:05:22.682
[wmqRA-worker-5] INFO  org.apache.geronimo.connector.work.WorkerContext -
Removing non-required WorkContextHandler with no context:
org.apache.openejb.core.security.SecurityContextHandler@2bb0fd2012:05:22.716
[wmqRA-worker-5] INFO  org.apache.geronimo.connector.work.WorkerContext -
Removing non-required WorkContextHandler with no context:
org.apache.geronimo.connector.work.HintsContextHandler@670e65e512:05:22.749
[wmqRA-worker-5] INFO  org.apache.geronimo.connector.work.WorkerContext -
calling before on WorkContextHandler:
org.apache.geronimo.connector.work.TransactionContextHandler@43cdc363 with
workContext: javax.resource.spi.work.TransactionContext@7d55ce9412:05:22.789
[wmqRA-worker-5] INFO  org.apache.geronimo.connector.work.WorkerContext -
calling after on WorkContextHandler:
org.apache.geronimo.connector.work.TransactionContextHandler@43cdc363 with
workContext: javax.resource.spi.work.TransactionContext@7d55ce94мар 03, 2014
12:05:22 PM ru.bbb.emu.mq.QListener initINFO: MDB Initialised12:05:27.592
[wmqRA-worker-6] INFO  org.apache.geronimo.connector.work.WorkerContext -
Translated ExecutionContext to TransactionContext12:05:27.637
[wmqRA-worker-6] INFO  org.apache.geronimo.connector.work.WorkerContext -
sorting WorkContextHandler:
org.apache.geronimo.connector.work.TransactionContextHandler@43cdc363 for
work context: javax.resource.spi.work.TransactionContext@508beb312:05:27.641
[wmqRA-worker-7] INFO  org.apache.geronimo.connector.work.WorkerContext -
Translated ExecutionContext to TransactionContext12:05:27.671
[wmqRA-worker-6] INFO  org.apache.geronimo.connector.work.WorkerContext -
adding sorted WorkContextHandler:
org.apache.geronimo.connector.work.TransactionContextHandler@43cdc36312:05:27.704
[wmqRA-worker-7] INFO  org.apache.geronimo.connector.work.WorkerContext -
sorting WorkContextHandler:
org.apache.geronimo.connector.work.TransactionContextHandler@43cdc363 for
work context:
javax.resource.spi.work.TransactionContext@5db465c512:05:27.737
[wmqRA-worker-6] INFO  org.apache.geronimo.connector.work.WorkerContext -
Removing non-required WorkContextHandler with no context:
org.apache.openejb.core.security.SecurityContextHandler@2bb0fd2012:05:27.771
[wmqRA-worker-7] INFO  org.apache.geronimo.connector.work.WorkerContext -
adding sorted WorkContextHandler:
org.apache.geronimo.connector.work.TransactionContextHandler@43cdc36312:05:27.804
[wmqRA-worker-6] INFO  org.apache.geronimo.connector.work.WorkerContext -
Removing non-required WorkContextHandler with no context:
org.apache.geronimo.connector.work.HintsContextHandler@670e65e512:05:27.838
[wmqRA-worker-7] INFO  org.apache.geronimo.connector.work.WorkerContext -
Removing non-required WorkContextHandler with no context:
org.apache.openejb.core.security.SecurityContextHandler@2bb0fd2012:05:27.871
[wmqRA-worker-6] INFO  org.apache.geronimo.connector.work.WorkerContext -
calling before on WorkContextHandler:
org.apache.geronimo.connector.work.TransactionContextHandler@43cdc363 with
workContext: javax.resource.spi.work.TransactionContext@508beb312:05:27.905
[wmqRA-worker-7] INFO  org.apache.geronimo.connector.work.WorkerContext -
Removing non-required WorkContextHandler with no context:
org.apache.geronimo.connector.work.HintsContextHandler@670e65e512:05:27.944
[wmqRA-worker-6] INFO  org.apache.geronimo.connector.work.WorkerContext -
calling after on WorkContextHandler:
org.apache.geronimo.connector.work.TransactionContextHandler@43cdc363 with
workContext: javax.resource.spi.work.TransactionContext@508beb312:05:27.971
[wmqRA-worker-7] INFO  org.apache.geronimo.connector.work.WorkerContext -
calling before on WorkContextHandler:
org.apache.geronimo.connector.work.TransactionContextHandler@43cdc363 with
workContext: javax.resource.spi.work.TransactionContext@5db465c512:05:28.032
[wmqRA-worker-7] INFO  org.apache.geronimo.connector.work.WorkerContext -
calling after on WorkContextHandler:
org.apache.geronimo.connector.work.TransactionContextHandler@43cdc363 with
workContext: javax.resource.spi.work.TransactionContext@5db465c5мар 03, 2014
12:05:27 PM ru.bbb.emu.mq.QListener initINFO: MDB Initialised12:05:32.583
[wmqRA-worker-8] INFO  org.apache.geronimo.connector.work.WorkerContext -
Translated ExecutionContext to TransactionContext12:05:32.618
[wmqRA-worker-8] INFO  org.apache.geronimo.connector.work.WorkerContext -
sorting WorkContextHandler:
org.apache.geronimo.connector.work.TransactionContextHandler@43cdc363 for
work context:
javax.resource.spi.work.TransactionContext@1359262012:05:32.651
[wmqRA-worker-8] INFO  org.apache.geronimo.connector.work.WorkerContext -
adding sorted WorkContextHandler:
org.apache.geronimo.connector.work.TransactionContextHandler@43cdc36312:05:32.685
[wmqRA-worker-8] INFO  org.apache.geronimo.connector.work.WorkerContext -
Removing non-required WorkContextHandler with no context:
org.apache.openejb.core.security.SecurityContextHandler@2bb0fd2012:05:32.728
[wmqRA-worker-8] INFO  org.apache.geronimo.connector.work.WorkerContext -
Removing non-required WorkContextHandler with no context:
org.apache.geronimo.connector.work.HintsContextHandler@670e65e512:05:32.761
[wmqRA-worker-8] INFO  org.apache.geronimo.connector.work.WorkerContext -
calling before on WorkContextHandler:
org.apache.geronimo.connector.work.TransactionContextHandler@43cdc363 with
workContext: javax.resource.spi.work.TransactionContext@1359262012:05:32.796
[wmqRA-worker-8] INFO  org.apache.geronimo.connector.work.WorkerContext -
calling after on WorkContextHandler:
org.apache.geronimo.connector.work.TransactionContextHandler@43cdc363 with
workContext: javax.resource.spi.work.TransactionContext@1359262012:05:37.585
[wmqRA-worker-9] INFO  org.apache.geronimo.connector.work.WorkerContext -
Translated ExecutionContext to TransactionContext12:05:37.624
[wmqRA-worker-9] INFO  org.apache.geronimo.connector.work.WorkerContext -
sorting WorkContextHandler:
org.apache.geronimo.connector.work.TransactionContextHandler@43cdc363 for
work context:
javax.resource.spi.work.TransactionContext@74598f5e12:05:37.625
[wmqRA-worker-10] INFO  org.apache.geronimo.connector.work.WorkerContext -
Translated ExecutionContext to TransactionContext12:05:37.658
[wmqRA-worker-9] INFO  org.apache.geronimo.connector.work.WorkerContext -
adding sorted WorkContextHandler:
org.apache.geronimo.connector.work.TransactionContextHandler@43cdc36312:05:37.691
[wmqRA-worker-10] INFO  org.apache.geronimo.connector.work.WorkerContext -
sorting WorkContextHandler:
org.apache.geronimo.connector.work.TransactionContextHandler@43cdc363 for
work context:
javax.resource.spi.work.TransactionContext@38f8eae712:05:37.725
[wmqRA-worker-9] INFO  org.apache.geronimo.connector.work.WorkerContext -
Removing non-required WorkContextHandler with no context:
org.apache.openejb.core.security.SecurityContextHandler@2bb0fd2012:05:37.758
[wmqRA-worker-10] INFO  org.apache.geronimo.connector.work.WorkerContext -
adding sorted WorkContextHandler:
org.apache.geronimo.connector.work.TransactionContextHandler@43cdc36312:05:37.792
[wmqRA-worker-9] INFO  org.apache.geronimo.connector.work.WorkerContext -
Removing non-required WorkContextHandler with no context:
org.apache.geronimo.connector.work.HintsContextHandler@670e65e512:05:37.825
[wmqRA-worker-10] INFO  org.apache.geronimo.connector.work.WorkerContext -
Removing non-required WorkContextHandler with no context:
org.apache.openejb.core.security.SecurityContextHandler@2bb0fd2012:05:37.858
[wmqRA-worker-9] INFO  org.apache.geronimo.connector.work.WorkerContext -
calling before on WorkContextHandler:
org.apache.geronimo.connector.work.TransactionContextHandler@43cdc363 with
workContext: javax.resource.spi.work.TransactionContext@74598f5e12:05:37.892
[wmqRA-worker-10] INFO  org.apache.geronimo.connector.work.WorkerContext -
Removing non-required WorkContextHandler with no context:
org.apache.geronimo.connector.work.HintsContextHandler@670e65e512:05:37.927
[wmqRA-worker-9] INFO  org.apache.geronimo.connector.work.WorkerContext -
calling after on WorkContextHandler:
org.apache.geronimo.connector.work.TransactionContextHandler@43cdc363 with
workContext: javax.resource.spi.work.TransactionContext@74598f5e12:05:37.959
[wmqRA-worker-10] INFO  org.apache.geronimo.connector.work.WorkerContext -
calling before on WorkContextHandler:
org.apache.geronimo.connector.work.TransactionContextHandler@43cdc363 with
workContext: javax.resource.spi.work.TransactionContext@38f8eae712:05:38.027
[wmqRA-worker-10] INFO  org.apache.geronimo.connector.work.WorkerContext -
calling after on WorkContextHandler:
org.apache.geronimo.connector.work.TransactionContextHandler@43cdc363 with
workContext: javax.resource.spi.work.TransactionContext@38f8eae712:05:42.602
[wmqRA-worker-11] INFO  org.apache.geronimo.connector.work.WorkerContext -
Translated ExecutionContext to TransactionContext12:05:42.639
[wmqRA-worker-11] INFO  org.apache.geronimo.connector.work.WorkerContext -
sorting WorkContextHandler:
org.apache.geronimo.connector.work.TransactionContextHandler@43cdc363 for
work context:
javax.resource.spi.work.TransactionContext@439ae31a12:05:42.672
[wmqRA-worker-11] INFO  org.apache.geronimo.connector.work.WorkerContext -
adding sorted WorkContextHandler:
org.apache.geronimo.connector.work.TransactionContextHandler@43cdc36312:05:42.706
[wmqRA-worker-11] INFO  org.apache.geronimo.connector.work.WorkerContext -
Removing non-required WorkContextHandler with no context:
org.apache.openejb.core.security.SecurityContextHandler@2bb0fd2012:05:42.739
[wmqRA-worker-11] INFO  org.apache.geronimo.connector.work.WorkerContext -
Removing non-required WorkContextHandler with no context:
org.apache.geronimo.connector.work.HintsContextHandler@670e65e512:05:42.773
[wmqRA-worker-11] INFO  org.apache.geronimo.connector.work.WorkerContext -
calling before on WorkContextHandler:
org.apache.geronimo.connector.work.TransactionContextHandler@43cdc363 with
workContext: javax.resource.spi.work.TransactionContext@439ae31a12:05:42.807
[wmqRA-worker-11] INFO  org.apache.geronimo.connector.work.WorkerContext -
calling after on WorkContextHandler:
org.apache.geronimo.connector.work.TransactionContextHandler@43cdc363 with
workContext: javax.resource.spi.work.TransactionContext@439ae31a12:05:47.606
[wmqRA-worker-12] INFO  org.apache.geronimo.connector.work.WorkerContext -
Translated ExecutionContext to TransactionContext12:05:47.634
[wmqRA-worker-13] INFO  org.apache.geronimo.connector.work.WorkerContext -
Translated ExecutionContext to TransactionContext12:05:47.644
[wmqRA-worker-12] INFO  org.apache.geronimo.connector.work.WorkerContext -
sorting WorkContextHandler:
org.apache.geronimo.connector.work.TransactionContextHandler@43cdc363 for
work context:
javax.resource.spi.work.TransactionContext@76c1b53a12:05:47.678
[wmqRA-worker-13] INFO  org.apache.geronimo.connector.work.WorkerContext -
sorting WorkContextHandler:
org.apache.geronimo.connector.work.TransactionContextHandler@43cdc363 for
work context:
javax.resource.spi.work.TransactionContext@27612fbf12:05:47.711
[wmqRA-worker-12] INFO  org.apache.geronimo.connector.work.WorkerContext -
adding sorted WorkContextHandler:
org.apache.geronimo.connector.work.TransactionContextHandler@43cdc36312:05:47.745
[wmqRA-worker-12] INFO  org.apache.geronimo.connector.work.WorkerContext -
Removing non-required WorkContextHandler with no context:
org.apache.openejb.core.security.SecurityContextHandler@2bb0fd2012:05:47.778
[wmqRA-worker-13] INFO  org.apache.geronimo.connector.work.WorkerContext -
adding sorted WorkContextHandler:
org.apache.geronimo.connector.work.TransactionContextHandler@43cdc36312:05:47.811
[wmqRA-worker-13] INFO  org.apache.geronimo.connector.work.WorkerContext -
Removing non-required WorkContextHandler with no context:
org.apache.openejb.core.security.SecurityContextHandler@2bb0fd2012:05:47.837
[wmqRA-worker-13] INFO  org.apache.geronimo.connector.work.WorkerContext -
Removing non-required WorkContextHandler with no context:
org.apache.geronimo.connector.work.HintsContextHandler@670e65e512:05:47.862
[wmqRA-worker-12] INFO  org.apache.geronimo.connector.work.WorkerContext -
Removing non-required WorkContextHandler with no context:
org.apache.geronimo.connector.work.HintsContextHandler@670e65e512:05:47.887
[wmqRA-worker-12] INFO  org.apache.geronimo.connector.work.WorkerContext -
calling before on WorkContextHandler:
org.apache.geronimo.connector.work.TransactionContextHandler@43cdc363 with
workContext: javax.resource.spi.work.TransactionContext@76c1b53a12:05:47.912
[wmqRA-worker-13] INFO  org.apache.geronimo.connector.work.WorkerContext -
calling before on WorkContextHandler:
org.apache.geronimo.connector.work.TransactionContextHandler@43cdc363 with
workContext: javax.resource.spi.work.TransactionContext@27612fbf12:05:47.947
[wmqRA-worker-12] INFO  org.apache.geronimo.connector.work.WorkerContext -
calling after on WorkContextHandler:
org.apache.geronimo.connector.work.TransactionContextHandler@43cdc363 with
workContext: javax.resource.spi.work.TransactionContext@76c1b53a12:05:47.980
[wmqRA-worker-13] INFO  org.apache.geronimo.connector.work.WorkerContext -
calling after on WorkContextHandler:
org.apache.geronimo.connector.work.TransactionContextHandler@43cdc363 with
workContext: javax.resource.spi.work.TransactionContext@27612fbf12:05:52.585
[wmqRA-worker-14] INFO  org.apache.geronimo.connector.work.WorkerContext -
Translated ExecutionContext to TransactionContext12:05:52.617
[wmqRA-worker-14] INFO  org.apache.geronimo.connector.work.WorkerContext -
sorting WorkContextHandler:
org.apache.geronimo.connector.work.TransactionContextHandler@43cdc363 for
work context:
javax.resource.spi.work.TransactionContext@1a33219612:05:52.650
[wmqRA-worker-14] INFO  org.apache.geronimo.connector.work.WorkerContext -
adding sorted WorkContextHandler:
org.apache.geronimo.connector.work.TransactionContextHandler@43cdc36312:05:52.684
[wmqRA-worker-14] INFO  org.apache.geronimo.connector.work.WorkerContext -
Removing non-required WorkContextHandler with no context:
org.apache.openejb.core.security.SecurityContextHandler@2bb0fd2012:05:52.717
[wmqRA-worker-14] INFO  org.apache.geronimo.connector.work.WorkerContext -
Removing non-required WorkContextHandler with no context:
org.apache.geronimo.connector.work.HintsContextHandler@670e65e512:05:52.751
[wmqRA-worker-14] INFO  org.apache.geronimo.connector.work.WorkerContext -
calling before on WorkContextHandler:
org.apache.geronimo.connector.work.TransactionContextHandler@43cdc363 with
workContext: javax.resource.spi.work.TransactionContext@1a33219612:05:52.803
[wmqRA-worker-14] INFO  org.apache.geronimo.connector.work.WorkerContext -
calling after on WorkContextHandler:
org.apache.geronimo.connector.work.TransactionContextHandler@43cdc363 with
workContext: javax.resource.spi.work.TransactionContext@1a33219612:05:57.587
[wmqRA-worker-15] INFO  org.apache.geronimo.connector.work.WorkerContext -
Translated ExecutionContext to TransactionContext12:05:57.615
[wmqRA-worker-16] INFO  org.apache.geronimo.connector.work.WorkerContext -
Translated ExecutionContext to TransactionContext12:05:57.623
[wmqRA-worker-15] INFO  org.apache.geronimo.connector.work.WorkerContext -
sorting WorkContextHandler:
org.apache.geronimo.connector.work.TransactionContextHandler@43cdc363 for
work context:
javax.resource.spi.work.TransactionContext@5afb91d312:05:57.657
[wmqRA-worker-16] INFO  org.apache.geronimo.connector.work.WorkerContext -
sorting WorkContextHandler:
org.apache.geronimo.connector.work.TransactionContextHandler@43cdc363 for
work context:
javax.resource.spi.work.TransactionContext@3a22e24f12:05:57.691
[wmqRA-worker-15] INFO  org.apache.geronimo.connector.work.WorkerContext -
adding sorted WorkContextHandler:
org.apache.geronimo.connector.work.TransactionContextHandler@43cdc36312:05:57.724
[wmqRA-worker-16] INFO  org.apache.geronimo.connector.work.WorkerContext -
adding sorted WorkContextHandler:
org.apache.geronimo.connector.work.TransactionContextHandler@43cdc36312:05:57.757
[wmqRA-worker-15] INFO  org.apache.geronimo.connector.work.WorkerContext -
Removing non-required WorkContextHandler with no context:
org.apache.openejb.core.security.SecurityContextHandler@2bb0fd2012:05:57.791
[wmqRA-worker-16] INFO  org.apache.geronimo.connector.work.WorkerContext -
Removing non-required WorkContextHandler with no context:
org.apache.openejb.core.security.SecurityContextHandler@2bb0fd2012:05:57.824
[wmqRA-worker-15] INFO  org.apache.geronimo.connector.work.WorkerContext -
Removing non-required WorkContextHandler with no context:
org.apache.geronimo.connector.work.HintsContextHandler@670e65e512:05:57.858
[wmqRA-worker-15] INFO  org.apache.geronimo.connector.work.WorkerContext -
calling before on WorkContextHandler:
org.apache.geronimo.connector.work.TransactionContextHandler@43cdc363 with
workContext: javax.resource.spi.work.TransactionContext@5afb91d312:05:57.891
[wmqRA-worker-16] INFO  org.apache.geronimo.connector.work.WorkerContext -
Removing non-required WorkContextHandler with no context:
org.apache.geronimo.connector.work.HintsContextHandler@670e65e512:05:57.925
[wmqRA-worker-15] INFO  org.apache.geronimo.connector.work.WorkerContext -
calling after on WorkContextHandler:
org.apache.geronimo.connector.work.TransactionContextHandler@43cdc363 with
workContext: javax.resource.spi.work.TransactionContext@5afb91d312:05:57.958
[wmqRA-worker-16] INFO  org.apache.geronimo.connector.work.WorkerContext -
calling before on WorkContextHandler:
org.apache.geronimo.connector.work.TransactionContextHandler@43cdc363 with
workContext: javax.resource.spi.work.TransactionContext@3a22e24f12:05:58.026
[wmqRA-worker-16] INFO  org.apache.geronimo.connector.work.WorkerContext -
calling after on WorkContextHandler:
org.apache.geronimo.connector.work.TransactionContextHandler@43cdc363 with
workContext: javax.resource.spi.work.TransactionContext@3a22e24f12:06:02.590
[wmqRA-worker-17] INFO  org.apache.geronimo.connector.work.WorkerContext -
Translated ExecutionContext to TransactionContext12:06:02.630
[wmqRA-worker-17] INFO  org.apache.geronimo.connector.work.WorkerContext -
sorting WorkContextHandler:
org.apache.geronimo.connector.work.TransactionContextHandler@43cdc363 for
work context:
javax.resource.spi.work.TransactionContext@6039c18312:06:02.780
[wmqRA-worker-17] INFO  org.apache.geronimo.connector.work.WorkerContext -
adding sorted WorkContextHandler:
org.apache.geronimo.connector.work.TransactionContextHandler@43cdc36312:06:02.913
[wmqRA-worker-17] INFO  org.apache.geronimo.connector.work.WorkerContext -
Removing non-required WorkContextHandler with no context:
org.apache.openejb.core.security.SecurityContextHandler@2bb0fd2012:06:02.946
[wmqRA-worker-17] INFO  org.apache.geronimo.connector.work.WorkerContext -
Removing non-required WorkContextHandler with no context:
org.apache.geronimo.connector.work.HintsContextHandler@670e65e512:06:02.980
[wmqRA-worker-17] INFO  org.apache.geronimo.connector.work.WorkerContext -
calling before on WorkContextHandler:
org.apache.geronimo.connector.work.TransactionContextHandler@43cdc363 with
workContext: javax.resource.spi.work.TransactionContext@6039c18312:06:03.014
[wmqRA-worker-17] INFO  org.apache.geronimo.connector.work.WorkerContext -
calling after on WorkContextHandler:
org.apache.geronimo.connector.work.TransactionContextHandler@43cdc363 with
workContext: javax.resource.spi.work.TransactionContext@6039c18312:06:07.591
[wmqRA-worker-18] INFO  org.apache.geronimo.connector.work.WorkerContext -
Translated ExecutionContext to TransactionContext12:06:07.613
[wmqRA-worker-19] INFO  org.apache.geronimo.connector.work.WorkerContext -
Translated ExecutionContext to TransactionContext12:06:07.635
[wmqRA-worker-18] INFO  org.apache.geronimo.connector.work.WorkerContext -
sorting WorkContextHandler:
org.apache.geronimo.connector.work.TransactionContextHandler@43cdc363 for
work context:
javax.resource.spi.work.TransactionContext@62116b3912:06:07.660
[wmqRA-worker-19] INFO  org.apache.geronimo.connector.work.WorkerContext -
sorting WorkContextHandler:
org.apache.geronimo.connector.work.TransactionContextHandler@43cdc363 for
work context:
javax.resource.spi.work.TransactionContext@65969d7b12:06:07.685
[wmqRA-worker-18] INFO  org.apache.geronimo.connector.work.WorkerContext -
adding sorted WorkContextHandler:
org.apache.geronimo.connector.work.TransactionContextHandler@43cdc36312:06:07.718
[wmqRA-worker-19] INFO  org.apache.geronimo.connector.work.WorkerContext -
adding sorted WorkContextHandler:
org.apache.geronimo.connector.work.TransactionContextHandler@43cdc36312:06:07.752
[wmqRA-worker-18] INFO  org.apache.geronimo.connector.work.WorkerContext -
Removing non-required WorkContextHandler with no context:
org.apache.openejb.core.security.SecurityContextHandler@2bb0fd2012:06:07.785
[wmqRA-worker-19] INFO  org.apache.geronimo.connector.work.WorkerContext -
Removing non-required WorkContextHandler with no context:
org.apache.openejb.core.security.SecurityContextHandler@2bb0fd2012:06:07.819
[wmqRA-worker-19] INFO  org.apache.geronimo.connector.work.WorkerContext -
Removing non-required WorkContextHandler with no context:
org.apache.geronimo.connector.work.HintsContextHandler@670e65e512:06:07.852
[wmqRA-worker-18] INFO  org.apache.geronimo.connector.work.WorkerContext -
Removing non-required WorkContextHandler with no context:
org.apache.geronimo.connector.work.HintsContextHandler@670e65e512:06:07.885
[wmqRA-worker-19] INFO  org.apache.geronimo.connector.work.WorkerContext -
calling before on WorkContextHandler:
org.apache.geronimo.connector.work.TransactionContextHandler@43cdc363 with
workContext: javax.resource.spi.work.TransactionContext@65969d7b12:06:07.920
[wmqRA-worker-19] INFO  org.apache.geronimo.connector.work.WorkerContext -
calling after on WorkContextHandler:
org.apache.geronimo.connector.work.TransactionContextHandler@43cdc363 with
workContext: javax.resource.spi.work.TransactionContext@65969d7b12:06:07.961
[wmqRA-worker-18] INFO  org.apache.geronimo.connector.work.WorkerContext -
calling before on WorkContextHandler:
org.apache.geronimo.connector.work.TransactionContextHandler@43cdc363 with
workContext: javax.resource.spi.work.TransactionContext@62116b3912:06:07.996
[wmqRA-worker-18] INFO  org.apache.geronimo.connector.work.WorkerContext -
calling after on WorkContextHandler:
org.apache.geronimo.connector.work.TransactionContextHandler@43cdc363 with
workContext: javax.resource.spi.work.TransactionContext@62116b3912:06:12.594
[wmqRA-worker-20] INFO  org.apache.geronimo.connector.work.WorkerContext -
Translated ExecutionContext to TransactionContext12:06:12.632
[wmqRA-worker-20] INFO  org.apache.geronimo.connector.work.WorkerContext -
sorting WorkContextHandler:
org.apache.geronimo.connector.work.TransactionContextHandler@43cdc363 for
work context:
javax.resource.spi.work.TransactionContext@70be05e912:06:12.666
[wmqRA-worker-20] INFO  org.apache.geronimo.connector.work.WorkerContext -
adding sorted WorkContextHandler:
org.apache.geronimo.connector.work.TransactionContextHandler@43cdc36312:06:12.699
[wmqRA-worker-20] INFO  org.apache.geronimo.connector.work.WorkerContext -
Removing non-required WorkContextHandler with no context:
org.apache.openejb.core.security.SecurityContextHandler@2bb0fd2012:06:12.733
[wmqRA-worker-20] INFO  org.apache.geronimo.connector.work.WorkerContext -
Removing non-required WorkContextHandler with no context:
org.apache.geronimo.connector.work.HintsContextHandler@670e65e512:06:12.766
[wmqRA-worker-20] INFO  org.apache.geronimo.connector.work.WorkerContext -
calling before on WorkContextHandler:
org.apache.geronimo.connector.work.TransactionContextHandler@43cdc363 with
workContext: javax.resource.spi.work.TransactionContext@70be05e912:06:12.800
[wmqRA-worker-20] INFO  org.apache.geronimo.connector.work.WorkerContext -
calling after on WorkContextHandler:
org.apache.geronimo.connector.work.TransactionContextHandler@43cdc363 with
workContext: javax.resource.spi.work.TransactionContext@70be05e912:06:17.600
[wmqRA-worker-21] INFO  org.apache.geronimo.connector.work.WorkerContext -
Translated ExecutionContext to TransactionContext12:06:17.623
[wmqRA-worker-22] INFO  org.apache.geronimo.connector.work.WorkerContext -
Translated ExecutionContext to TransactionContext12:06:17.639
[wmqRA-worker-21] INFO  org.apache.geronimo.connector.work.WorkerContext -
sorting WorkContextHandler:
org.apache.geronimo.connector.work.TransactionContextHandler@43cdc363 for
work context:
javax.resource.spi.work.TransactionContext@6c8cbe5212:06:17.672
[wmqRA-worker-22] INFO  org.apache.geronimo.connector.work.WorkerContext -
sorting WorkContextHandler:
org.apache.geronimo.connector.work.TransactionContextHandler@43cdc363 for
work context: javax.resource.spi.work.TransactionContext@c23312b12:06:17.706
[wmqRA-worker-21] INFO  org.apache.geronimo.connector.work.WorkerContext -
adding sorted WorkContextHandler:
org.apache.geronimo.connector.work.TransactionContextHandler@43cdc36312:06:17.739
[wmqRA-worker-22] INFO  org.apache.geronimo.connector.work.WorkerContext -
adding sorted WorkContextHandler:
org.apache.geronimo.connector.work.TransactionContextHandler@43cdc36312:06:17.773
[wmqRA-worker-21] INFO  org.apache.geronimo.connector.work.WorkerContext -
Removing non-required WorkContextHandler with no context:
org.apache.openejb.core.security.SecurityContextHandler@2bb0fd2012:06:17.806
[wmqRA-worker-22] INFO  org.apache.geronimo.connector.work.WorkerContext -
Removing non-required WorkContextHandler with no context:
org.apache.openejb.core.security.SecurityContextHandler@2bb0fd2012:06:17.839
[wmqRA-worker-21] INFO  org.apache.geronimo.connector.work.WorkerContext -
Removing non-required WorkContextHandler with no context:
org.apache.geronimo.connector.work.HintsContextHandler@670e65e512:06:17.873
[wmqRA-worker-21] INFO  org.apache.geronimo.connector.work.WorkerContext -
calling before on WorkContextHandler:
org.apache.geronimo.connector.work.TransactionContextHandler@43cdc363 with
workContext: javax.resource.spi.work.TransactionContext@6c8cbe5212:06:17.908
[wmqRA-worker-21] INFO  org.apache.geronimo.connector.work.WorkerContext -
calling after on WorkContextHandler:
org.apache.geronimo.connector.work.TransactionContextHandler@43cdc363 with
workContext: javax.resource.spi.work.TransactionContext@6c8cbe5212:06:17.940
[wmqRA-worker-22] INFO  org.apache.geronimo.connector.work.WorkerContext -
Removing non-required WorkContextHandler with no context:
org.apache.geronimo.connector.work.HintsContextHandler@670e65e512:06:18.007
[wmqRA-worker-22] INFO  org.apache.geronimo.connector.work.WorkerContext -
calling before on WorkContextHandler:
org.apache.geronimo.connector.work.TransactionContextHandler@43cdc363 with
workContext: javax.resource.spi.work.TransactionContext@c23312b12:06:18.041
[wmqRA-worker-22] INFO  org.apache.geronimo.connector.work.WorkerContext -
calling after on WorkContextHandler:
org.apache.geronimo.connector.work.TransactionContextHandler@43cdc363 with
workContext: javax.resource.spi.work.TransactionContext@c23312b12:06:22.596
[wmqRA-worker-23] INFO  org.apache.geronimo.connector.work.WorkerContext -
Translated ExecutionContext to TransactionContext12:06:22.637
[wmqRA-worker-23] INFO  org.apache.geronimo.connector.work.WorkerContext -
sorting WorkContextHandler:
org.apache.geronimo.connector.work.TransactionContextHandler@43cdc363 for
work context:
javax.resource.spi.work.TransactionContext@3cd280d012:06:22.670
[wmqRA-worker-23] INFO  org.apache.geronimo.connector.work.WorkerContext -
adding sorted WorkContextHandler:
org.apache.geronimo.connector.work.TransactionContextHandler@43cdc36312:06:22.704
[wmqRA-worker-23] INFO  org.apache.geronimo.connector.work.WorkerContext -
Removing non-required WorkContextHandler with no context:
org.apache.openejb.core.security.SecurityContextHandler@2bb0fd2012:06:22.737
[wmqRA-worker-23] INFO  org.apache.geronimo.connector.work.WorkerContext -
Removing non-required WorkContextHandler with no context:
org.apache.geronimo.connector.work.HintsContextHandler@670e65e512:06:22.770
[wmqRA-worker-23] INFO  org.apache.geronimo.connector.work.WorkerContext -
calling before on WorkContextHandler:
org.apache.geronimo.connector.work.TransactionContextHandler@43cdc363 with
workContext: javax.resource.spi.work.TransactionContext@3cd280d012:06:22.797
[wmqRA-worker-23] INFO  org.apache.geronimo.connector.work.WorkerContext -
calling after on WorkContextHandler:
org.apache.geronimo.connector.work.TransactionContextHandler@43cdc363 with
workContext: javax.resource.spi.work.TransactionContext@3cd280d012:06:27.596
[wmqRA-worker-24] INFO  org.apache.geronimo.connector.work.WorkerContext -
Translated ExecutionContext to TransactionContext12:06:27.632
[wmqRA-worker-25] INFO  org.apache.geronimo.connector.work.WorkerContext -
Translated ExecutionContext to TransactionContext12:06:27.633
[wmqRA-worker-24] INFO  org.apache.geronimo.connector.work.WorkerContext -
sorting WorkContextHandler:
org.apache.geronimo.connector.work.TransactionContextHandler@43cdc363 for
work context:
javax.resource.spi.work.TransactionContext@733fa07912:06:27.692
[wmqRA-worker-24] INFO  org.apache.geronimo.connector.work.WorkerContext -
adding sorted WorkContextHandler:
org.apache.geronimo.connector.work.TransactionContextHandler@43cdc36312:06:27.784
[wmqRA-worker-25] INFO  org.apache.geronimo.connector.work.WorkerContext -
sorting WorkContextHandler:
org.apache.geronimo.connector.work.TransactionContextHandler@43cdc363 for
work context:
javax.resource.spi.work.TransactionContext@785ed77d12:06:27.817
[wmqRA-worker-24] INFO  org.apache.geronimo.connector.work.WorkerContext -
Removing non-required WorkContextHandler with no context:
org.apache.openejb.core.security.SecurityContextHandler@2bb0fd2012:06:27.851
[wmqRA-worker-25] INFO  org.apache.geronimo.connector.work.WorkerContext -
adding sorted WorkContextHandler:
org.apache.geronimo.connector.work.TransactionContextHandler@43cdc36312:06:27.884
[wmqRA-worker-24] INFO  org.apache.geronimo.connector.work.WorkerContext -
Removing non-required WorkContextHandler with no context:
org.apache.geronimo.connector.work.HintsContextHandler@670e65e512:06:27.917
[wmqRA-worker-25] INFO  org.apache.geronimo.connector.work.WorkerContext -
Removing non-required WorkContextHandler with no context:
org.apache.openejb.core.security.SecurityContextHandler@2bb0fd2012:06:27.951
[wmqRA-worker-24] INFO  org.apache.geronimo.connector.work.WorkerContext -
calling before on WorkContextHandler:
org.apache.geronimo.connector.work.TransactionContextHandler@43cdc363 with
workContext: javax.resource.spi.work.TransactionContext@733fa07912:06:27.986
[wmqRA-worker-24] INFO  org.apache.geronimo.connector.work.WorkerContext -
calling after on WorkContextHandler:
org.apache.geronimo.connector.work.TransactionContextHandler@43cdc363 with
workContext: javax.resource.spi.work.TransactionContext@733fa07912:06:28.018
[wmqRA-worker-25] INFO  org.apache.geronimo.connector.work.WorkerContext -
Removing non-required WorkContextHandler with no context:
org.apache.geronimo.connector.work.HintsContextHandler@670e65e512:06:28.051
[wmqRA-worker-25] INFO  org.apache.geronimo.connector.work.WorkerContext -
calling before on WorkContextHandler:
org.apache.geronimo.connector.work.TransactionContextHandler@43cdc363 with
workContext: javax.resource.spi.work.TransactionContext@785ed77d12:06:28.119
[wmqRA-worker-25] INFO  org.apache.geronimo.connector.work.WorkerContext -
calling after on WorkContextHandler:
org.apache.geronimo.connector.work.TransactionContextHandler@43cdc363 with
workContext: javax.resource.spi.work.TransactionContext@785ed77d12:06:32.599
[wmqRA-worker-26] INFO  org.apache.geronimo.connector.work.WorkerContext -
Translated ExecutionContext to TransactionContext12:06:32.656
[wmqRA-worker-26] INFO  org.apache.geronimo.connector.work.WorkerContext -
sorting WorkContextHandler:
org.apache.geronimo.connector.work.TransactionContextHandler@43cdc363 for
work context:
javax.resource.spi.work.TransactionContext@38415f4412:06:32.723
[wmqRA-worker-26] INFO  org.apache.geronimo.connector.work.WorkerContext -
adding sorted WorkContextHandler:
org.apache.geronimo.connector.work.TransactionContextHandler@43cdc36312:06:32.773
[wmqRA-worker-26] INFO  org.apache.geronimo.connector.work.WorkerContext -
Removing non-required WorkContextHandler with no context:
org.apache.openejb.core.security.SecurityContextHandler@2bb0fd2012:06:32.848
[wmqRA-worker-26] INFO  org.apache.geronimo.connector.work.WorkerContext -
Removing non-required WorkContextHandler with no context:
org.apache.geronimo.connector.work.HintsContextHandler@670e65e512:06:32.915
[wmqRA-worker-26] INFO  org.apache.geronimo.connector.work.WorkerContext -
calling before on WorkContextHandler:
org.apache.geronimo.connector.work.TransactionContextHandler@43cdc363 with
workContext: javax.resource.spi.work.TransactionContext@38415f4412:06:32.983
[wmqRA-worker-26] INFO  org.apache.geronimo.connector.work.WorkerContext -
calling after on WorkContextHandler:
org.apache.geronimo.connector.work.TransactionContextHandler@43cdc363 with
workContext: javax.resource.spi.work.TransactionContext@38415f44*---- And
log continues with same INFO messages as above for every wmqRA-worker thread
----*
Please help me with selection direction to dig :)




--
View this message in context: http://openejb.979440.n4.nabble.com/MDB-and-IBM-WS-MQ-7-5-Only-one-shot-tp4668089.html
Sent from the OpenEJB User mailing list archive at Nabble.com.

Re: MDB and IBM WS MQ 7.5 Only one shot

Posted by David Blevins <da...@gmail.com>.
If you can let us know what bug you faced, that would be great.  Unfortunately, the log details did not make it ok and there was no other description in the email.

There might be something here we could better document.


-David

On Mar 5, 2014, at 2:05 AM, romych <ro...@mail.ru> wrote:

> I found solution :)
> 
> This is a bug, fixed only on Tomee 1.6 branch :( 
> Application, deployed on current 1.6.1 snapshot work well.
> 
> 
> 
> 
> --
> View this message in context: http://openejb.979440.n4.nabble.com/MDB-and-IBM-WS-MQ-7-5-Only-one-shot-tp4668089p4668110.html
> Sent from the OpenEJB User mailing list archive at Nabble.com.


Re: MDB and IBM WS MQ 7.5 Only one shot

Posted by romych <ro...@mail.ru>.
I found solution :)

This is a bug, fixed only on Tomee 1.6 branch :( 
Application, deployed on current 1.6.1 snapshot work well.




--
View this message in context: http://openejb.979440.n4.nabble.com/MDB-and-IBM-WS-MQ-7-5-Only-one-shot-tp4668089p4668110.html
Sent from the OpenEJB User mailing list archive at Nabble.com.