[mule-user] integrate JBoss/Arjuna transaction

2 views
Skip to first unread message

Saravanan0

unread,
Feb 11, 2008, 11:23:37 AM2/11/08
to us...@mule.codehaus.org

Did anyone try to integrate JBoss/Arjuna transaction manager with 1.4.3 Mule
version -embedding
with running JBoss application server

Thanks in advance
--
View this message in context: http://www.nabble.com/integrate-JBoss-Arjuna-transaction-tp15413535p15413535.html
Sent from the Mule - User mailing list archive at Nabble.com.


---------------------------------------------------------------------
To unsubscribe from this list, please visit:

http://xircles.codehaus.org/manage_email


Andrew Perepelytsya

unread,
Feb 11, 2008, 11:30:53 AM2/11/08
to us...@mule.codehaus.org
Just use the standard jboss lookup factory when embedded.

Andrew

Saravanan0

unread,
Feb 11, 2008, 4:25:03 PM2/11/08
to us...@mule.codehaus.org

Hi andrew,

<transaction-manager
factory="org.mule.transaction.lookup.JBossTransactionManagerLookupFactory"
/>
I used this tag in my config file. when (jboss 4.2.1)server started, i get
error "XA trasaction is not registered " continuosly.

this is my part og config file

<transaction-manager
factory="org.mule.transaction.lookup.JBossTransactionManagerLookupFactory"
/>

<connector name="vmQueue" className="org.mule.providers.vm.VMConnector">
<properties>
<property name="queueEvents" value="true"/>
</properties>
</connector>
<!-- JMS Connecter -->
<connector name="jmsConnector"
className="org.mule.providers.jms.JmsConnector">
<properties>
<property name="jndiInitialFactory"
value="org.jnp.interfaces.NamingContextFactory" />
<property name="jndiProviderUrl"
value="jnp://localhost:1100" />
<property name="connectionFactoryJndiName"
value="/ClusteredXAConnectionFactory" />
<!-- How many times to attempt redelivery? -->
<property name="maxRedelivery" value="2"/>
<property name="specification" value="1.1"/>

<!-- message will be persisting into database -->
<property name="persistentDelivery" value="true" />
</properties>
<!--The exception strategy used to forward the message to a Dead Letter
Queue (DLQ)-->
<exception-strategy className="org.mule.impl.DefaultExceptionStrategy">
<endpoint address="jms://DLQ">
<transaction action="JOIN_IF_POSSIBLE"/>
</endpoint>
</exception-strategy>

</connector>

--
---
<mule-descriptor name="PublisherUMO" singleton="false"

implementation="se.tre.blob.mule.backoffice.components.PublisherComponent" >
<inbound-router>
<endpoint address="${jms.name.publishFileQueue}"
transformers="JMSMessageToObject ObjectToByteArray"
connector="jmsConnector">
<transaction action="ALWAYS_BEGIN"
factory="org.mule.providers.jms.JmsTransactionFactory" />
</endpoint>
</inbound-router>

<!-- DEBUG INFORMATION : Remove when in production -->
<interceptor name="default" />

<properties>
<!-- Jndi environment properties for the EJB3 services -->
<map name="environment">
<property name="java.naming.factory.initial"
value="${java.naming.factory.initial}"/>
<property name="java.naming.provider.url"
value="${java.naming.provider.url}"/>
<property name="java.naming.factory.url.pkgs"
value="${java.naming.factory.url.pkgs}"/>
</map>
<!-- Default encoding -->
<property name="encoding"
value="${publisher.encoding}"/>
</properties>
</mule-descriptor>

--
--
--.

I dont know where i missed...

thanks in advance


i also used org.mule.transaction.lookup.JBossTransactionManagerLookupFactory
instead of using org.mule.providers.jms.JmsTransactionFactory.



--
View this message in context: http://www.nabble.com/integrate-JBoss-Arjuna-transaction-tp15413535p15421013.html

Andrew Perepelytsya

unread,
Feb 11, 2008, 5:52:49 PM2/11/08
to us...@mule.codehaus.org
You are looking up an XA connection factory, but then trying to use plain jms transactions for the resource. This won't work. Either go XA or use a non-XA connection factory.

Andrew

Saravanan0

unread,
Feb 13, 2008, 8:00:03 AM2/13/08
to us...@mule.codehaus.org

I replaced all plain jms transactions for the resource and applied
org.mule.transaction.XaTransactionFactory .
when i use
org.mule.transaction.lookup.JBossTransactionManagerLookupFactory (added this
tag in config file <transaction-manager
factory="org.mule.transaction.lookup.JBossTransactionManagerLookupFactory"
/>) i get following error.

13:50:36,215 INFO [Server] JBoss (MX MicroKernel) [4.2.1.GA (build:
SVNTag=JBos
s_4_2_1_GA date=200707131605)] Started in 1m:28s:843ms
13:51:06,012 INFO [DefaultExceptionStrategy] There is no current event
availabl
e, routing Null message with the exception
13:51:06,027 ERROR [DefaultExceptionStrategy]
********************************************************************************

Message : Can not start XA transaction
Type : org.mule.umo.TransactionException
Code : MULE_ERROR-90096
JavaDoc :
http://mule.mulesource.org/docs/apidocs/org/mule/umo/Tra
nsactionException.html
********************************************************************************

Exception stack is:
1. null (javax.transaction.NotSupportedException)
com.arjuna.ats.internal.jta.transaction.arjunacore.BaseTransaction:79
(http://
java.sun.com/j2ee/sdk_1.3/techdocs/api/javax/transaction/NotSupportedException.h
tml)
2. Can not start XA transaction (org.mule.umo.TransactionException)
org.mule.transaction.XaTransaction:69
(http://mule.mulesource.org/docs/apidocs
/org/mule/umo/TransactionException.html)
********************************************************************************

Root Exception stack trace:
javax.transaction.NotSupportedException
at
com.arjuna.ats.internal.jta.transaction.arjunacore.BaseTransaction.be
gin(BaseTransaction.java:79)
at
com.arjuna.ats.jbossatx.BaseTransactionManagerDelegate.begin(BaseTran
sactionManagerDelegate.java:77)
at org.mule.transaction.XaTransaction.doBegin(XaTransaction.java:61)
at
org.mule.transaction.AbstractTransaction.begin(AbstractTransaction.ja
va:79)
at
org.mule.transaction.XaTransactionFactory.beginTransaction(XaTransact
ionFactory.java:35)
at
org.mule.transaction.TransactionTemplate.execute(TransactionTemplate.
java:83)
at
org.mule.providers.TransactedPollingMessageReceiver.poll(TransactedPo
llingMessageReceiver.java:131)
at
org.mule.providers.jms.XaTransactedJmsMessageReceiver.poll(XaTransact
edJmsMessageReceiver.java:171)
at
org.mule.providers.PollingReceiverWorker.run(PollingReceiverWorker.ja
va:47)
at org.mule.impl.work.WorkerContext.run(WorkerContext.java:310)
at
edu.emory.mathcs.backport.java.util.concurrent.ThreadPoolExecutor.run
Worker(ThreadPoolExecutor.java:987)
at
edu.emory.mathcs.backport.java.util.concurrent.ThreadPoolExecutor$Wor
ker.run(ThreadPoolExecutor.java:528)
at java.lang.Thread.run(Thread.java:595)

********************************************************************************

--
View this message in context: http://www.nabble.com/integrate-JBoss-Arjuna-transaction-tp15413535p15457613.html

Andrew Perepelytsya

unread,
Feb 13, 2008, 9:30:39 AM2/13/08
to us...@mule.codehaus.org
Need to have a look at your full config.

Andrew

Saravanan0

unread,
Feb 13, 2008, 12:43:57 PM2/13/08
to us...@mule.codehaus.org

Hi Andrew,

Please find attached my config file..
Thanks


Andrew Perepelytsya wrote:
>
> Need to have a look at your full config.
>
> Andrew
>
>

http://www.nabble.com/file/p15460952/Config.xml Config.xml
http://www.nabble.com/file/p15460952/Config.xml Config.xml
--
View this message in context: http://www.nabble.com/integrate-JBoss-Arjuna-transaction-tp15413535p15460952.html

Andrew Perepelytsya

unread,
Feb 13, 2008, 1:15:35 PM2/13/08
to us...@mule.codehaus.org
Ensure that you are looking up an XA-enabled jms connection factory.

Andrew

Saravanan0

unread,
Feb 13, 2008, 1:50:45 PM2/13/08
to us...@mule.codehaus.org

Saravanan0

unread,
Feb 13, 2008, 4:36:42 PM2/13/08
to us...@mule.codehaus.org

i unable to connect jms:XA connectiofactory.
what can i do for that


Andrew Perepelytsya wrote:
>
> Ensure that you are looking up an XA-enabled jms connection factory.
>
> Andrew
>
>

--
View this message in context: http://www.nabble.com/integrate-JBoss-Arjuna-transaction-tp15413535p15468409.html

Andrew Perepelytsya

unread,
Feb 13, 2008, 5:30:07 PM2/13/08
to us...@mule.codehaus.org
On Feb 13, 2008 4:36 PM, Saravanan0 <sara...@yahoo.com> wrote:

i unable to connect jms:XA connectiofactory.
 what can i do for that
 
What do you mean? What kind of error do you get?

Andrew

Saravanan0

unread,
Feb 14, 2008, 3:39:29 AM2/14/08
to us...@mule.codehaus.org

I am using "/ClusteredXAConnectionFactory"

this is my conection-factory-service.xml config info

<!-- A clustered connection factory that supports automatic failover and
load balancing of created
connections.
This factory is not suitable to be used by MDBs,
see http://www.jboss.com/index.html?module=bb&op=viewtopic&t=108961
-->
<mbean code="org.jboss.jms.server.connectionfactory.ConnectionFactory"

name="jboss.messaging.connectionfactory:service=ClusteredConnectionFactory"
xmbean-dd="xmdesc/ConnectionFactory-xmbean.xml">
<depends
optional-attribute-name="ServerPeer">jboss.messaging:service=ServerPeer</depends>
<depends
optional-attribute-name="Connector">jboss.messaging:service=Connector,transport=bisocket</depends>
<depends>jboss.messaging:service=PostOffice</depends>

<attribute name="JNDIBindings">
<bindings>
<binding>/ClusteredConnectionFactory</binding>
<binding>/ClusteredXAConnectionFactory</binding>
<binding>java:/ClusteredConnectionFactory</binding>
<binding>java:/ClusteredXAConnectionFactory</binding>
</bindings>
</attribute>

<attribute name="SupportsFailover">true</attribute>
<attribute name="SupportsLoadBalancing">true</attribute>
</mbean>

--
View this message in context: http://www.nabble.com/integrate-JBoss-Arjuna-transaction-tp15413535p15475860.html

Saravanan0

unread,
Feb 14, 2008, 11:04:30 AM2/14/08
to us...@mule.codehaus.org

This is my jms connector in config,

<connector name="jmsConnector"
className="org.mule.providers.jms.JmsConnector">
<properties>
<property name="jndiInitialFactory"
value="org.jnp.interfaces.NamingContextFactory" />
<property name="jndiProviderUrl"
value="jnp://localhost:1100" />
<property name="connectionFactoryJndiName"
value="/ClusteredXAConnectionFactory" />
<!-- How many times to attempt redelivery? -->
<property name="maxRedelivery" value="2"/>
<property name="specification" value="1.1"/>

<!-- message will be persisting into database -->
<property name="persistentDelivery" value="true" />
</properties>
<!--The exception strategy used to forward the message to a Dead Letter
Queue (DLQ)-->
<exception-strategy className="org.mule.impl.DefaultExceptionStrategy">

<endpoint address="jms://queue:PrivateDLQ">


<transaction action="JOIN_IF_POSSIBLE"/>
</endpoint>
</exception-strategy>

</connector>

--
View this message in context: http://www.nabble.com/integrate-JBoss-Arjuna-transaction-tp15413535p15481241.html

Saravanan0

unread,
Feb 14, 2008, 12:44:32 PM2/14/08
to us...@mule.codehaus.org

i also used <property name="connectionFactoryJndiName" value="java:JmsXA"
/>
i get following. error.

Mainly saying is,
Caused by: org.mule.providers.ConnectException: Initialisation Failure:
This met
hod is not applicable inside the application server. See the J2EE spec, e.g.
J2E
E1.4 Section 6.6


dReceivers=4, createMultipleTransactedReceivers=true, connected=true,
supportedP
rotocols=[vm], serviceOverrides=null}
18:41:17,417 INFO [VMConnector] Started: VMConnector{this=a61d64,
started=true,
initialised=true, name='vmQueue', disposed=false,
numberOfConcurrentTransactedR
eceivers=4, createMultipleTransactedReceivers=true, connected=true,
supportedPro
tocols=[vm], serviceOverrides=null}
18:41:17,417 INFO [VMConnector] Connected: VMConnector{this=a61d64,
started=tru
e, initialised=true, name='vmQueue', disposed=false,
numberOfConcurrentTransacte
dReceivers=4, createMultipleTransactedReceivers=true, connected=true,
supportedP
rotocols=[vm], serviceOverrides=null}
18:41:17,417 INFO [FileConnector] Starting: FileConnector{this=11e2b21,
started
=false, initialised=true, name='connector.file.0', disposed=false,
numberOfConcu
rrentTransactedReceivers=4, createMultipleTransactedReceivers=true,
connected=tr
ue, supportedProtocols=[file], serviceOverrides=null}
18:41:17,417 INFO [FileConnector] Started: FileConnector{this=11e2b21,
started=
true, initialised=true, name='connector.file.0', disposed=false,
numberOfConcurr
entTransactedReceivers=4, createMultipleTransactedReceivers=true,
connected=true
, supportedProtocols=[file], serviceOverrides=null}
18:41:17,432 INFO [FileConnector] Connected: FileConnector{this=11e2b21,
starte
d=true, initialised=true, name='connector.file.0', disposed=false,
numberOfConcu
rrentTransactedReceivers=4, createMultipleTransactedReceivers=true,
connected=tr
ue, supportedProtocols=[file], serviceOverrides=null}
18:41:17,495 WARN [ServiceController] Problem starting service
jboss.jca:servic
e=RARDeployment,name='mule-ear-jboss-1.4.3.ear#mule-jca-1.4.3.rar'
javax.resource.spi.ResourceAdapterInternalException: Failed to load
configuratio
ns: C:\projects\LastMule\conf\config.xml
at
org.mule.ra.MuleResourceAdapter.start(MuleResourceAdapter.java:117)
at
org.jboss.resource.deployment.RARDeployment.startService(RARDeploymen
t.java:109)
at
org.jboss.system.ServiceMBeanSupport.jbossInternalStart(ServiceMBeanS
upport.java:289)
at
org.jboss.system.ServiceMBeanSupport.jbossInternalLifecycle(ServiceMB
eanSupport.java:245)
at
org.jboss.system.ServiceDynamicMBeanSupport.invoke(ServiceDynamicMBea
nSupport.java:124)
at
org.jboss.mx.server.RawDynamicInvoker.invoke(RawDynamicInvoker.java:1
64)
at
org.jboss.mx.server.MBeanServerImpl.invoke(MBeanServerImpl.java:659)
at
org.jboss.system.ServiceController$ServiceProxy.invoke(ServiceControl
ler.java:978)
at $Proxy0.start(Unknown Source)
at
org.jboss.system.ServiceController.start(ServiceController.java:417)
at sun.reflect.GeneratedMethodAccessor9.invoke(Unknown Source)
at
sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAcces
sorImpl.java:25)
at java.lang.reflect.Method.invoke(Method.java:585)
at
org.jboss.mx.interceptor.ReflectedDispatcher.invoke(ReflectedDispatch
er.java:155)
at org.jboss.mx.server.Invocation.dispatch(Invocation.java:94)
at org.jboss.mx.server.Invocation.invoke(Invocation.java:86)
at
org.jboss.mx.server.AbstractMBeanInvoker.invoke(AbstractMBeanInvoker.
java:264)
at
org.jboss.mx.server.MBeanServerImpl.invoke(MBeanServerImpl.java:659)
at org.jboss.mx.util.MBeanProxyExt.invoke(MBeanProxyExt.java:210)
at $Proxy48.start(Unknown Source)
at
org.jboss.deployment.SimpleSubDeployerSupport.startService(SimpleSubD
eployerSupport.java:356)
at
org.jboss.deployment.SimpleSubDeployerSupport.start(SimpleSubDeployer
Support.java:127)
at org.jboss.deployment.MainDeployer.start(MainDeployer.java:1025)
at org.jboss.deployment.MainDeployer.start(MainDeployer.java:1015)
at org.jboss.deployment.MainDeployer.deploy(MainDeployer.java:819)
at org.jboss.deployment.MainDeployer.deploy(MainDeployer.java:782)
at sun.reflect.GeneratedMethodAccessor27.invoke(Unknown Source)
at
sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAcces
sorImpl.java:25)
at java.lang.reflect.Method.invoke(Method.java:585)
at
org.jboss.mx.interceptor.ReflectedDispatcher.invoke(ReflectedDispatch
er.java:155)
at org.jboss.mx.server.Invocation.dispatch(Invocation.java:94)
at
org.jboss.mx.interceptor.AbstractInterceptor.invoke(AbstractIntercept
or.java:133)
at org.jboss.mx.server.Invocation.invoke(Invocation.java:88)
at
org.jboss.mx.interceptor.ModelMBeanOperationInterceptor.invoke(ModelM
BeanOperationInterceptor.java:142)
at org.jboss.mx.server.Invocation.invoke(Invocation.java:88)
at
org.jboss.mx.server.AbstractMBeanInvoker.invoke(AbstractMBeanInvoker.
java:264)
at
org.jboss.mx.server.MBeanServerImpl.invoke(MBeanServerImpl.java:659)
at org.jboss.mx.util.MBeanProxyExt.invoke(MBeanProxyExt.java:210)
at $Proxy9.deploy(Unknown Source)
at
org.jboss.deployment.scanner.URLDeploymentScanner.deploy(URLDeploymen
tScanner.java:421)
at
org.jboss.deployment.scanner.URLDeploymentScanner.scan(URLDeploymentS
canner.java:634)
at
org.jboss.deployment.scanner.AbstractDeploymentScanner$ScannerThread.
doScan(AbstractDeploymentScanner.java:263)
at
org.jboss.deployment.scanner.AbstractDeploymentScanner.startService(A
bstractDeploymentScanner.java:336)
at
org.jboss.system.ServiceMBeanSupport.jbossInternalStart(ServiceMBeanS
upport.java:289)
at
org.jboss.system.ServiceMBeanSupport.jbossInternalLifecycle(ServiceMB
eanSupport.java:245)
at sun.reflect.GeneratedMethodAccessor3.invoke(Unknown Source)
at
sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAcces
sorImpl.java:25)
at java.lang.reflect.Method.invoke(Method.java:585)
at
org.jboss.mx.interceptor.ReflectedDispatcher.invoke(ReflectedDispatch
er.java:155)
at org.jboss.mx.server.Invocation.dispatch(Invocation.java:94)
at org.jboss.mx.server.Invocation.invoke(Invocation.java:86)
at
org.jboss.mx.server.AbstractMBeanInvoker.invoke(AbstractMBeanInvoker.
java:264)
at
org.jboss.mx.server.MBeanServerImpl.invoke(MBeanServerImpl.java:659)
at
org.jboss.system.ServiceController$ServiceProxy.invoke(ServiceControl
ler.java:978)
at $Proxy0.start(Unknown Source)
at
org.jboss.system.ServiceController.start(ServiceController.java:417)
at sun.reflect.GeneratedMethodAccessor9.invoke(Unknown Source)
at
sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAcces
sorImpl.java:25)
at java.lang.reflect.Method.invoke(Method.java:585)
at
org.jboss.mx.interceptor.ReflectedDispatcher.invoke(ReflectedDispatch
er.java:155)
at org.jboss.mx.server.Invocation.dispatch(Invocation.java:94)
at org.jboss.mx.server.Invocation.invoke(Invocation.java:86)
at
org.jboss.mx.server.AbstractMBeanInvoker.invoke(AbstractMBeanInvoker.
java:264)
at
org.jboss.mx.server.MBeanServerImpl.invoke(MBeanServerImpl.java:659)
at org.jboss.mx.util.MBeanProxyExt.invoke(MBeanProxyExt.java:210)
at $Proxy4.start(Unknown Source)
at org.jboss.deployment.SARDeployer.start(SARDeployer.java:302)
at org.jboss.deployment.MainDeployer.start(MainDeployer.java:1025)
at org.jboss.deployment.MainDeployer.deploy(MainDeployer.java:819)
at org.jboss.deployment.MainDeployer.deploy(MainDeployer.java:782)
at org.jboss.deployment.MainDeployer.deploy(MainDeployer.java:766)
at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method)
at
sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.
java:39)
at
sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAcces
sorImpl.java:25)
at java.lang.reflect.Method.invoke(Method.java:585)
at
org.jboss.mx.interceptor.ReflectedDispatcher.invoke(ReflectedDispatch
er.java:155)
at org.jboss.mx.server.Invocation.dispatch(Invocation.java:94)
at
org.jboss.mx.interceptor.AbstractInterceptor.invoke(AbstractIntercept
or.java:133)
at org.jboss.mx.server.Invocation.invoke(Invocation.java:88)
at
org.jboss.mx.interceptor.ModelMBeanOperationInterceptor.invoke(ModelM
BeanOperationInterceptor.java:142)
at org.jboss.mx.server.Invocation.invoke(Invocation.java:88)
at
org.jboss.mx.server.AbstractMBeanInvoker.invoke(AbstractMBeanInvoker.
java:264)
at
org.jboss.mx.server.MBeanServerImpl.invoke(MBeanServerImpl.java:659)
at org.jboss.mx.util.MBeanProxyExt.invoke(MBeanProxyExt.java:210)
at $Proxy5.deploy(Unknown Source)
at org.jboss.system.server.ServerImpl.doStart(ServerImpl.java:482)
at org.jboss.system.server.ServerImpl.start(ServerImpl.java:362)
at org.jboss.Main.boot(Main.java:200)
at org.jboss.Main$1.run(Main.java:508)
at java.lang.Thread.run(Thread.java:595)
Caused by: org.mule.config.ConfigurationException: MuleManager Failed to
initial
ise (org.mule.config.ConfigurationException)
at
org.mule.config.builders.MuleXmlConfigurationBuilder.configure(MuleXm
lConfigurationBuilder.java:223)
at
org.mule.ra.MuleResourceAdapter.start(MuleResourceAdapter.java:113)
... 89 more
Caused by: org.mule.config.ConfigurationException: MuleManager Failed to
initial
ise
at
org.mule.config.builders.MuleXmlConfigurationBuilder.configure(MuleXm
lConfigurationBuilder.java:283)
at
org.mule.config.builders.MuleXmlConfigurationBuilder.configure(MuleXm
lConfigurationBuilder.java:218)
... 90 more
Caused by: org.mule.providers.FatalConnectException: ReconnectStrategy
"org.mule
.providers.SingleAttemptConnectionStrategy" failed to reconnect receiver on
endp
oint "JmsConnector{this=1d0462, started=false, initialised=true,
name='jmsConnec
tor', disposed=false, numberOfConcurrentTransactedReceivers=4,
createMultipleTra
nsactedReceivers=true, connected=false, supportedProtocols=[jms],
serviceOverrid
es=null}"
at
org.mule.providers.SingleAttemptConnectionStrategy.doConnect(SingleAt
temptConnectionStrategy.java:29)
at
org.mule.providers.AbstractConnectionStrategy.connect(AbstractConnect
ionStrategy.java:98)
at
org.mule.providers.AbstractConnector.startConnector(AbstractConnector
.java:349)
at org.mule.MuleManager.startConnectors(MuleManager.java:930)
at org.mule.MuleManager.start(MuleManager.java:886)
at
org.mule.config.builders.MuleXmlConfigurationBuilder.configure(MuleXm
lConfigurationBuilder.java:278)
... 91 more
Caused by: org.mule.providers.FatalConnectException: ReconnectStrategy
"org.mule
.providers.SingleAttemptConnectionStrategy" failed to reconnect receiver on
endp
oint "JmsConnector{this=1d0462, started=false, initialised=true,
name='jmsConnec
tor', disposed=false, numberOfConcurrentTransactedReceivers=4,
createMultipleTra
nsactedReceivers=true, connected=false, supportedProtocols=[jms],
serviceOverrid
es=null}"
at
org.mule.providers.SingleAttemptConnectionStrategy.doConnect(SingleAt
temptConnectionStrategy.java:29)
at
org.mule.providers.AbstractConnectionStrategy.connect(AbstractConnect
ionStrategy.java:98)
at
org.mule.providers.AbstractConnector.connect(AbstractConnector.java:1
169)
at
org.mule.providers.SingleAttemptConnectionStrategy.doConnect(SingleAt
temptConnectionStrategy.java:25)
... 96 more
Caused by: org.mule.providers.ConnectException: Initialisation Failure: This
met
hod is not applicable inside the application server. See the J2EE spec, e.g.
J2E
E1.4 Section 6.6
at
org.mule.providers.jms.JmsConnector.doConnect(JmsConnector.java:381)
at
org.mule.providers.AbstractConnector.connect(AbstractConnector.java:1
159)
at
org.mule.providers.SingleAttemptConnectionStrategy.doConnect(SingleAt
temptConnectionStrategy.java:25)
... 99 more
Caused by: javax.jms.IllegalStateException: This method is not applicable
inside
the application server. See the J2EE spec, e.g. J2EE1.4 Section 6.6
at
org.jboss.resource.adapter.jms.JmsSessionFactoryImpl.setExceptionList
ener(JmsSessionFactoryImpl.java:223)
at
org.mule.providers.jms.JmsConnector.createConnection(JmsConnector.jav
a:278)
at
org.mule.providers.jms.JmsConnector.doConnect(JmsConnector.java:373)
... 101 more
18:41:17,745 INFO [EARDeployer] Started J2EE application:
file:/C:/jboss-4.2.1.
GA/server/all/deploy/mule-ear-jboss-1.4.3.ear
18:41:17,776 INFO [EARDeployer] Init J2EE application:
file:/C:/jboss-4.2.1.GA/
server/all/deploy/rr-jms-ejb3.ear
18:41:18,167 INFO [JmxKernelAbstraction] creating wrapper delegate for:
org.jbo
ss.ejb3.mdb.MDB
18:42:01,151 INFO [JmxKernelAbstraction] installing MBean:
jboss.j2ee:ear=rr-jm
s-ejb3.ear,jar=rr-jms-ejb.jar,name=LongProcessMessageBean,service=EJB3 with
depe
ndencies:
18:42:01,151 INFO [EJBContainer] STARTED EJB:
net.learntechnology.ejb.LongProce
ssMessageBean ejbName: LongProcessMessageBean
18:42:01,182 INFO [EJB3Deployer] Deployed:
file:/C:/jboss-4.2.1.GA/server/all/t
mp/deploy/tmp23570rr-jms-ejb3.ear-contents/rr-jms-ejb.jar
18:42:01,182 INFO [TomcatDeployer] deploy, ctxPath=/rr-jms,
warUrl=.../tmp/depl
oy/tmp23570rr-jms-ejb3.ear-contents/rr-jms-webapp-exp.war/
18:42:01,510 INFO [EARDeployer] Started J2EE application:
file:/C:/jboss-4.2.1.
GA/server/all/deploy/rr-jms-ejb3.ear
18:42:01,698 ERROR [URLDeploymentScanner] Incomplete Deployment listing:

--- MBeans waiting for other MBeans ---
ObjectName:
jboss.jca:service=RARDeployment,name='mule-ear-jboss-1.4.3.ear#mule-
jca-1.4.3.rar'
State: FAILED
Reason: javax.resource.spi.ResourceAdapterInternalException: Failed to
load co
nfigurations: C:\projects\LastMule\conf\config.xml

--- MBEANS THAT ARE THE ROOT CAUSE OF THE PROBLEM ---
ObjectName:
jboss.jca:service=RARDeployment,name='mule-ear-jboss-1.4.3.ear#mule-
jca-1.4.3.rar'
State: FAILED
Reason: javax.resource.spi.ResourceAdapterInternalException: Failed to
load co
nfigurations: C:\projects\LastMule\conf\config.xml


18:42:01,838 INFO [Http11Protocol] Starting Coyote HTTP/1.1 on
http-127.0.0.1-8
080
18:42:01,870 INFO [AjpProtocol] Starting Coyote AJP/1.3 on
ajp-127.0.0.1-8009
18:42:01,885 INFO [Server] JBoss (MX MicroKernel) [4.2.1.GA (build:
SVNTag=JBos
s_4_2_1_GA date=200707131605)] Started in 2m:22s:749ms

--
View this message in context: http://www.nabble.com/integrate-JBoss-Arjuna-transaction-tp15413535p15483243.html

Saravanan0

unread,
Feb 14, 2008, 1:38:02 PM2/14/08
to us...@mule.codehaus.org

Hi Andrew,

i am waiting for your reply,
Thanks

--
View this message in context: http://www.nabble.com/integrate-JBoss-Arjuna-transaction-tp15413535p15485415.html

Reply all
Reply to author
Forward
0 new messages