Hi all.
Before you go on prinitng jBoss T-Shirts...
My mixed CMP/BMP transaction still doesnt work.
For those of you who were busy with the textile industry lately, I will
repeat the problem description...

a stateless session bean method invokes several finder methods on several
CMP entity beans and one BMP entity bean, just to create another CMP entity
bean, having data collected from other beans.

CMPBean1 cmpBean1 = CMPBean1Home.findByXXX();
CMPBean2 cmpBean2 = CMPBean2Home.findByXXX();
BMPBean1 bmpBean1 = BMPBean1Home.findByXXX();
CMPBean3 cmpBean3 =
CMPBean3Home.create(cmpBean1.getXXX(),cmpBean2.getXXX(),bmpBean1.getXXX());

the finders work fine, but than an exception is thrown when the create() is
invoked on cmpBean3 (I will paste the exception at the end of the mail)

HOWEVER, if the BMP find invokation is left out, i.e. :

CMPBean1 cmpBean1 = CMPBean1Home.findByXXX();
CMPBean2 cmpBean2 = CMPBean2Home.findByXXX();
// BMPBean1 bmpBean1 = BMPBean1Home.findByXXX();
// CMPBean3 cmpBean3 =
CMPBean3Home.create(cmpBean1.getXXX(),cmpBean2.getXXX(),bmpBean1.getXXX());
CMPBean3 cmpBean3 =
CMPBean3Home.create(cmpBean1.getXXX(),cmpBean2.getXXX(),100);

everything works OK.

It seems like the BMP involvment in the transaction causes something bad !
Or is it just me deploying the BMP entity bean wrong somehow ?

Please help, Shahar.


here is the promised stack trace :

[KnowledgeRate] create(2,20,100,7,nice knowledge)
[KnowledgeRate] XAException: tx=OracleXid [ID=257, Global=shahar-ws/1,
Branch=] errorCode=XAER_RMERR
[KnowledgeRate] oracle.jdbc.xa.OracleXAException
[KnowledgeRate]         at
oracle.jdbc.xa.OracleXAResource.checkError(OracleXAResource.java:467)
[KnowledgeRate]         at
oracle.jdbc.xa.client.OracleXAResource.start(OracleXAResource.java:122)
[KnowledgeRate]         at
org.jboss.tm.TxCapsule.startResource(TxCapsule.java:1020)
[KnowledgeRate]         at
org.jboss.tm.TxCapsule.enlistResource(TxCapsule.java:593)
[KnowledgeRate]         at
org.jboss.tm.TransactionImpl.enlistResource(TransactionImpl.java:114)
[KnowledgeRate]         at
org.jboss.minerva.factories.XAConnectionFactory.prepareObject(XAConnectionFa
ctory.java:254)
[KnowledgeRate]         at
org.jboss.minerva.pools.ObjectPool.getObject(ObjectPool.java:539)
[KnowledgeRate]         at
org.jboss.minerva.datasource.XAPoolDataSource.getConnection(XAPoolDataSource
.java:169)
[KnowledgeRate]         at
org.jboss.ejb.plugins.jaws.jdbc.JDBCCommand.getConnection(JDBCCommand.java:6
15)
[KnowledgeRate]         at
org.jboss.ejb.plugins.jaws.jdbc.JDBCCommand.jdbcExecute(JDBCCommand.java:150
)
[KnowledgeRate]         at
org.jboss.ejb.plugins.jaws.jdbc.JDBCCreateEntityCommand.execute(JDBCCreateEn
tityCommand.java:135)
[KnowledgeRate]         at
org.jboss.ejb.plugins.jaws.JAWSPersistenceManager.createEntity(JAWSPersisten
ceManager.java:122)
[KnowledgeRate]         at
org.jboss.ejb.plugins.CMPPersistenceManager.createEntity(CMPPersistenceManag
er.java:156)
[KnowledgeRate]         at
org.jboss.ejb.EntityContainer.createHome(EntityContainer.java:433)
[KnowledgeRate]         at java.lang.reflect.Method.invoke(Native Method)
[KnowledgeRate]         at
org.jboss.ejb.EntityContainer$ContainerInterceptor.invokeHome(EntityContaine
r.java:591)
[KnowledgeRate]         at
org.jboss.ejb.plugins.EntitySynchronizationInterceptor.invokeHome(EntitySync
hronizationInterceptor.java:160)
[KnowledgeRate]         at
org.jboss.ejb.plugins.EntityInstanceInterceptor.invokeHome(EntityInstanceInt
erceptor.java:86)
[KnowledgeRate]         at
org.jboss.ejb.plugins.TxInterceptorCMT.invokeNext(TxInterceptorCMT.java:135)
[KnowledgeRate]         at
org.jboss.ejb.plugins.TxInterceptorCMT.runWithTransactions(TxInterceptorCMT.
java:263)
[KnowledgeRate]         at
org.jboss.ejb.plugins.TxInterceptorCMT.invokeHome(TxInterceptorCMT.java:86)
[KnowledgeRate]         at
org.jboss.ejb.plugins.SecurityInterceptor.invokeHome(SecurityInterceptor.jav
a:126)
[KnowledgeRate]         at
org.jboss.ejb.plugins.LogInterceptor.invokeHome(LogInterceptor.java:106)
[KnowledgeRate]         at
org.jboss.ejb.EntityContainer.invokeHome(EntityContainer.java:315)
[KnowledgeRate]         at
org.jboss.ejb.plugins.jrmp.server.JRMPContainerInvoker.invokeHome(JRMPContai
nerInvoker.java:200)
[KnowledgeRate]         at
org.jboss.ejb.plugins.jrmp.interfaces.HomeProxy.invoke(HomeProxy.java:198)
[KnowledgeRate]         at
org.jboss.proxy.ProxyCompiler$Runtime.invoke(ProxyCompiler.java:74)
[KnowledgeRate]         at
com.tikalknowledge.ksphere.profiling.entity.KnowledgeRateHome$Proxy.create(U
nknown Source)
[KnowledgeRate]         at
com.tikalknowledge.ksphere.profiling.session.ProfilingSystemClass.addKnowled
geRate(ProfilingSystemClass.java:143)
[KnowledgeRate]         at java.lang.reflect.Method.invoke(Native Method)
[KnowledgeRate]         at
org.jboss.ejb.StatelessSessionContainer$ContainerInterceptor.invoke(Stateles
sSessionContainer.java:472)
[KnowledgeRate]         at
org.jboss.ejb.plugins.StatelessSessionInstanceInterceptor.invoke(StatelessSe
ssionInstanceInterceptor.java:87)
[KnowledgeRate]         at
org.jboss.ejb.plugins.TxInterceptorCMT.invokeNext(TxInterceptorCMT.java:133)
[KnowledgeRate]         at
org.jboss.ejb.plugins.TxInterceptorCMT.runWithTransactions(TxInterceptorCMT.
java:263)
[KnowledgeRate]         at
org.jboss.ejb.plugins.TxInterceptorCMT.invoke(TxInterceptorCMT.java:99)
[KnowledgeRate]         at
org.jboss.ejb.plugins.SecurityInterceptor.invoke(SecurityInterceptor.java:14
4)
[KnowledgeRate]         at
org.jboss.ejb.plugins.LogInterceptor.invoke(LogInterceptor.java:192)
[KnowledgeRate]         at
org.jboss.ejb.StatelessSessionContainer.invoke(StatelessSessionContainer.jav
a:271)
[KnowledgeRate]         at
org.jboss.ejb.plugins.jrmp.server.JRMPContainerInvoker.invoke(JRMPContainerI
nvoker.java:237)
[KnowledgeRate]         at
org.jboss.ejb.plugins.jrmp.interfaces.StatelessSessionProxy.invoke(Stateless
SessionProxy.java:152)
[KnowledgeRate]         at
org.jboss.proxy.ProxyCompiler$Runtime.invoke(ProxyCompiler.java:74)
[KnowledgeRate]         at
com.tikalknowledge.ksphere.profiling.session.ProfilingSystem$Proxy.addKnowle
dgeRate(Unknown Source)
[KnowledgeRate]         at
com.tikalknowledge.ksphere.profiling.session.ProfilingSystemClass.addKnowled
geRate(ProfilingSystemClass.java:127)
[KnowledgeRate]         at java.lang.reflect.Method.invoke(Native Method)
[KnowledgeRate]         at
org.jboss.ejb.StatelessSessionContainer$ContainerInterceptor.invoke(Stateles
sSessionContainer.java:472)
[KnowledgeRate]         at
org.jboss.ejb.plugins.StatelessSessionInstanceInterceptor.invoke(StatelessSe
ssionInstanceInterceptor.java:87)
[KnowledgeRate]         at
org.jboss.ejb.plugins.TxInterceptorCMT.invokeNext(TxInterceptorCMT.java:133)
[KnowledgeRate]         at
org.jboss.ejb.plugins.TxInterceptorCMT.runWithTransactions(TxInterceptorCMT.
java:263)
[KnowledgeRate]         at
org.jboss.ejb.plugins.TxInterceptorCMT.invoke(TxInterceptorCMT.java:99)
[KnowledgeRate]         at
org.jboss.ejb.plugins.SecurityInterceptor.invoke(SecurityInterceptor.java:14
4)
[KnowledgeRate]         at
org.jboss.ejb.plugins.LogInterceptor.invoke(LogInterceptor.java:192)
[KnowledgeRate]         at
org.jboss.ejb.StatelessSessionContainer.invoke(StatelessSessionContainer.jav
a:271)
[KnowledgeRate]         at
org.jboss.ejb.plugins.jrmp.server.JRMPContainerInvoker.invoke(JRMPContainerI
nvoker.java:163)
[KnowledgeRate]         at java.lang.reflect.Method.invoke(Native Method)
[KnowledgeRate]         at sun.rmi.server.UnicastServerRef.dispatch(Unknown Source)
[KnowledgeRate]         at sun.rmi.transport.Transport$1.run(Unknown Source)
[KnowledgeRate]         at java.security.AccessController.doPrivileged(Native
Method)
[KnowledgeRate]         at sun.rmi.transport.Transport.serviceCall(Unknown Source)
[KnowledgeRate]         at
sun.rmi.transport.tcp.TCPTransport.handleMessages(Unknown Source)
[KnowledgeRate]         at
sun.rmi.transport.tcp.TCPTransport$ConnectionHandler.run(Unknown Source)
[KnowledgeRate]         at java.lang.Thread.run(Unknown Source)
[KnowledgeRate] java.lang.IllegalArgumentException: xaRes not enlisted
[KnowledgeRate]         at
org.jboss.tm.TxCapsule.delistResource(TxCapsule.java:462)
[KnowledgeRate]         at
org.jboss.tm.TransactionImpl.delistResource(TransactionImpl.java:101)
[KnowledgeRate]         at
org.jboss.minerva.factories.XAConnectionFactory$2.closeConnection(XAConnecti
onFactory.java:101)
[KnowledgeRate]         at
org.jboss.minerva.factories.XAConnectionFactory$2.connectionClosed(XAConnect
ionFactory.java:86)
[KnowledgeRate]         at
oracle.jdbc.pool.OraclePooledConnection.callListener(OraclePooledConnection.
java:240)
[KnowledgeRate]         at
oracle.jdbc.pool.OraclePooledConnection.logicalClose(OraclePooledConnection.
java:214)
[KnowledgeRate]         at
oracle.jdbc.driver.OracleConnection.logicalClose(OracleConnection.java:1587)
[KnowledgeRate]         at
oracle.jdbc.driver.OracleConnection.close(OracleConnection.java:542)
[KnowledgeRate]         at
org.jboss.ejb.plugins.jaws.jdbc.JDBCCommand.jdbcExecute(JDBCCommand.java:178
)
[KnowledgeRate]         at
org.jboss.ejb.plugins.jaws.jdbc.JDBCCreateEntityCommand.execute(JDBCCreateEn
tityCommand.java:135)
[KnowledgeRate]         at
org.jboss.ejb.plugins.jaws.JAWSPersistenceManager.createEntity(JAWSPersisten
ceManager.java:122)
[KnowledgeRate]         at
org.jboss.ejb.plugins.CMPPersistenceManager.createEntity(CMPPersistenceManag
er.java:156)
[KnowledgeRate]         at
org.jboss.ejb.EntityContainer.createHome(EntityContainer.java:433)
[KnowledgeRate]         at java.lang.reflect.Method.invoke(Native Method)
[KnowledgeRate]         at
org.jboss.ejb.EntityContainer$ContainerInterceptor.invokeHome(EntityContaine
r.java:591)
[KnowledgeRate]         at
org.jboss.ejb.plugins.EntitySynchronizationInterceptor.invokeHome(EntitySync
hronizationInterceptor.java:160)
[KnowledgeRate]         at
org.jboss.ejb.plugins.EntityInstanceInterceptor.invokeHome(EntityInstanceInt
erceptor.java:86)
[KnowledgeRate]         at
org.jboss.ejb.plugins.TxInterceptorCMT.invokeNext(TxInterceptorCMT.java:135)
[KnowledgeRate]         at
org.jboss.ejb.plugins.TxInterceptorCMT.runWithTransactions(TxInterceptorCMT.
java:263)
[KnowledgeRate]         at
org.jboss.ejb.plugins.TxInterceptorCMT.invokeHome(TxInterceptorCMT.java:86)
[KnowledgeRate]         at
org.jboss.ejb.plugins.SecurityInterceptor.invokeHome(SecurityInterceptor.jav
a:126)
[KnowledgeRate]         at
org.jboss.ejb.plugins.LogInterceptor.invokeHome(LogInterceptor.java:106)
[KnowledgeRate]         at
org.jboss.ejb.EntityContainer.invokeHome(EntityContainer.java:315)
[KnowledgeRate]         at
org.jboss.ejb.plugins.jrmp.server.JRMPContainerInvoker.invokeHome(JRMPContai
nerInvoker.java:200)
[KnowledgeRate]         at
org.jboss.ejb.plugins.jrmp.interfaces.HomeProxy.invoke(HomeProxy.java:198)
[KnowledgeRate]         at
org.jboss.proxy.ProxyCompiler$Runtime.invoke(ProxyCompiler.java:74)
[KnowledgeRate]         at
com.tikalknowledge.ksphere.profiling.entity.KnowledgeRateHome$Proxy.create(U
nknown Source)
[KnowledgeRate]         at
com.tikalknowledge.ksphere.profiling.session.ProfilingSystemClass.addKnowled
geRate(ProfilingSystemClass.java:143)
[KnowledgeRate]         at java.lang.reflect.Method.invoke(Native Method)
[KnowledgeRate]         at
org.jboss.ejb.StatelessSessionContainer$ContainerInterceptor.invoke(Stateles
sSessionContainer.java:472)
[KnowledgeRate]         at
org.jboss.ejb.plugins.StatelessSessionInstanceInterceptor.invoke(StatelessSe
ssionInstanceInterceptor.java:87)
[KnowledgeRate]         at
org.jboss.ejb.plugins.TxInterceptorCMT.invokeNext(TxInterceptorCMT.java:133)
[KnowledgeRate]         at
org.jboss.ejb.plugins.TxInterceptorCMT.runWithTransactions(TxInterceptorCMT.
java:263)
[KnowledgeRate]         at
org.jboss.ejb.plugins.TxInterceptorCMT.invoke(TxInterceptorCMT.java:99)
[KnowledgeRate]         at
org.jboss.ejb.plugins.SecurityInterceptor.invoke(SecurityInterceptor.java:14
4)
[KnowledgeRate]         at
org.jboss.ejb.plugins.LogInterceptor.invoke(LogInterceptor.java:192)
[KnowledgeRate]         at
org.jboss.ejb.StatelessSessionContainer.invoke(StatelessSessionContainer.jav
a:271)
[KnowledgeRate]         at
org.jboss.ejb.plugins.jrmp.server.JRMPContainerInvoker.invoke(JRMPContainerI
nvoker.java:237)
[KnowledgeRate]         at
org.jboss.ejb.plugins.jrmp.interfaces.StatelessSessionProxy.invoke(Stateless
SessionProxy.java:152)
[KnowledgeRate]         at
org.jboss.proxy.ProxyCompiler$Runtime.invoke(ProxyCompiler.java:74)
[KnowledgeRate]         at
com.tikalknowledge.ksphere.profiling.session.ProfilingSystem$Proxy.addKnowle
dgeRate(Unknown Source)
[KnowledgeRate]         at
com.tikalknowledge.ksphere.profiling.session.ProfilingSystemClass.addKnowled
geRate(ProfilingSystemClass.java:127)
[KnowledgeRate]         at java.lang.reflect.Method.invoke(Native Method)
[KnowledgeRate]         at
org.jboss.ejb.StatelessSessionContainer$ContainerInterceptor.invoke(Stateles
sSessionContainer.java:472)
[KnowledgeRate]         at
org.jboss.ejb.plugins.StatelessSessionInstanceInterceptor.invoke(StatelessSe
ssionInstanceInterceptor.java:87)
[KnowledgeRate]         at
org.jboss.ejb.plugins.TxInterceptorCMT.invokeNext(TxInterceptorCMT.java:133)
[KnowledgeRate]         at
org.jboss.ejb.plugins.TxInterceptorCMT.runWithTransactions(TxInterceptorCMT.
java:263)
[KnowledgeRate]         at
org.jboss.ejb.plugins.TxInterceptorCMT.invoke(TxInterceptorCMT.java:99)
[KnowledgeRate]         at
org.jboss.ejb.plugins.SecurityInterceptor.invoke(SecurityInterceptor.java:14
4)
[KnowledgeRate]         at
org.jboss.ejb.plugins.LogInterceptor.invoke(LogInterceptor.java:192)
[KnowledgeRate]         at
org.jboss.ejb.StatelessSessionContainer.invoke(StatelessSessionContainer.jav
a:271)
[KnowledgeRate]         at
org.jboss.ejb.plugins.jrmp.server.JRMPContainerInvoker.invoke(JRMPContainerI
nvoker.java:163)
[KnowledgeRate]         at java.lang.reflect.Method.invoke(Native Method)
[KnowledgeRate]         at sun.rmi.server.UnicastServerRef.dispatch(Unknown Source)
[KnowledgeRate]         at sun.rmi.transport.Transport$1.run(Unknown Source)
[KnowledgeRate]         at java.security.AccessController.doPrivileged(Native
Method)
[KnowledgeRate]         at sun.rmi.transport.Transport.serviceCall(Unknown Source)
[KnowledgeRate]         at
sun.rmi.transport.tcp.TCPTransport.handleMessages(Unknown Source)
[KnowledgeRate]         at
sun.rmi.transport.tcp.TCPTransport$ConnectionHandler.run(Unknown Source)
[KnowledgeRate]         at java.lang.Thread.run(Unknown Source)
[JAWS] java.lang.RuntimeException: Unable to deregister with
TransactionManager: java.lang.IllegalArgumentException: xaRes not enlisted
[JAWS]  at
org.jboss.minerva.factories.XAConnectionFactory$2.closeConnection(XAConnecti
onFactory.java:106)
[JAWS]  at
org.jboss.minerva.factories.XAConnectionFactory$2.connectionClosed(XAConnect
ionFactory.java:86)
[JAWS]  at
oracle.jdbc.pool.OraclePooledConnection.callListener(OraclePooledConnection.
java:240)
[JAWS]  at
oracle.jdbc.pool.OraclePooledConnection.logicalClose(OraclePooledConnection.
java:214)
[JAWS]  at
oracle.jdbc.driver.OracleConnection.logicalClose(OracleConnection.java:1587)
[JAWS]  at
oracle.jdbc.driver.OracleConnection.close(OracleConnection.java:542)
[JAWS]  at
org.jboss.ejb.plugins.jaws.jdbc.JDBCCommand.jdbcExecute(JDBCCommand.java:178
)
[JAWS]  at
org.jboss.ejb.plugins.jaws.jdbc.JDBCCreateEntityCommand.execute(JDBCCreateEn
tityCommand.java:135)
[JAWS]  at
org.jboss.ejb.plugins.jaws.JAWSPersistenceManager.createEntity(JAWSPersisten
ceManager.java:122)
[JAWS]  at
org.jboss.ejb.plugins.CMPPersistenceManager.createEntity(CMPPersistenceManag
er.java:156)
[JAWS]  at
org.jboss.ejb.EntityContainer.createHome(EntityContainer.java:433)
[JAWS]  at java.lang.reflect.Method.invoke(Native Method)
[JAWS]  at
org.jboss.ejb.EntityContainer$ContainerInterceptor.invokeHome(EntityContaine
r.java:591)
[JAWS]  at
org.jboss.ejb.plugins.EntitySynchronizationInterceptor.invokeHome(EntitySync
hronizationInterceptor.java:160)
[JAWS]  at
org.jboss.ejb.plugins.EntityInstanceInterceptor.invokeHome(EntityInstanceInt
erceptor.java:86)
[JAWS]  at
org.jboss.ejb.plugins.TxInterceptorCMT.invokeNext(TxInterceptorCMT.java:135)
[JAWS]  at
org.jboss.ejb.plugins.TxInterceptorCMT.runWithTransactions(TxInterceptorCMT.
java:263)
[JAWS]  at
org.jboss.ejb.plugins.TxInterceptorCMT.invokeHome(TxInterceptorCMT.java:86)
[JAWS]  at
org.jboss.ejb.plugins.SecurityInterceptor.invokeHome(SecurityInterceptor.jav
a:126)
[JAWS]  at
org.jboss.ejb.plugins.LogInterceptor.invokeHome(LogInterceptor.java:106)
[JAWS]  at
org.jboss.ejb.EntityContainer.invokeHome(EntityContainer.java:315)
[JAWS]  at
org.jboss.ejb.plugins.jrmp.server.JRMPContainerInvoker.invokeHome(JRMPContai
nerInvoker.java:200)
[JAWS]  at
org.jboss.ejb.plugins.jrmp.interfaces.HomeProxy.invoke(HomeProxy.java:198)
[JAWS]  at
org.jboss.proxy.ProxyCompiler$Runtime.invoke(ProxyCompiler.java:74)
[JAWS]  at
com.tikalknowledge.ksphere.profiling.entity.KnowledgeRateHome$Proxy.create(U
nknown Source)
[JAWS]  at
com.tikalknowledge.ksphere.profiling.session.ProfilingSystemClass.addKnowled
geRate(ProfilingSystemClass.java:143)
[JAWS]  at java.lang.reflect.Method.invoke(Native Method)
[JAWS]  at
org.jboss.ejb.StatelessSessionContainer$ContainerInterceptor.invoke(Stateles
sSessionContainer.java:472)
[JAWS]  at
org.jboss.ejb.plugins.StatelessSessionInstanceInterceptor.invoke(StatelessSe
ssionInstanceInterceptor.java:87)
[JAWS]  at
org.jboss.ejb.plugins.TxInterceptorCMT.invokeNext(TxInterceptorCMT.java:133)
[JAWS]  at
org.jboss.ejb.plugins.TxInterceptorCMT.runWithTransactions(TxInterceptorCMT.
java:263)
[JAWS]  at
org.jboss.ejb.plugins.TxInterceptorCMT.invoke(TxInterceptorCMT.java:99)
[JAWS]  at
org.jboss.ejb.plugins.SecurityInterceptor.invoke(SecurityInterceptor.java:14
4)
[JAWS]  at
org.jboss.ejb.plugins.LogInterceptor.invoke(LogInterceptor.java:192)
[JAWS]  at
org.jboss.ejb.StatelessSessionContainer.invoke(StatelessSessionContainer.jav
a:271)
[JAWS]  at
org.jboss.ejb.plugins.jrmp.server.JRMPContainerInvoker.invoke(JRMPContainerI
nvoker.java:237)
[JAWS]  at
org.jboss.ejb.plugins.jrmp.interfaces.StatelessSessionProxy.invoke(Stateless
SessionProxy.java:152)
[JAWS]  at
org.jboss.proxy.ProxyCompiler$Runtime.invoke(ProxyCompiler.java:74)
[JAWS]  at
com.tikalknowledge.ksphere.profiling.session.ProfilingSystem$Proxy.addKnowle
dgeRate(Unknown Source)
[JAWS]  at
com.tikalknowledge.ksphere.profiling.session.ProfilingSystemClass.addKnowled
geRate(ProfilingSystemClass.java:127)
[JAWS]  at java.lang.reflect.Method.invoke(Native Method)
[JAWS]  at
org.jboss.ejb.StatelessSessionContainer$ContainerInterceptor.invoke(Stateles
sSessionContainer.java:472)
[JAWS]  at
org.jboss.ejb.plugins.StatelessSessionInstanceInterceptor.invoke(StatelessSe
ssionInstanceInterceptor.java:87)
[JAWS]  at
org.jboss.ejb.plugins.TxInterceptorCMT.invokeNext(TxInterceptorCMT.java:133)
[JAWS]  at
org.jboss.ejb.plugins.TxInterceptorCMT.runWithTransactions(TxInterceptorCMT.
java:263)
[JAWS]  at
org.jboss.ejb.plugins.TxInterceptorCMT.invoke(TxInterceptorCMT.java:99)
[JAWS]  at
org.jboss.ejb.plugins.SecurityInterceptor.invoke(SecurityInterceptor.java:14
4)
[JAWS]  at
org.jboss.ejb.plugins.LogInterceptor.invoke(LogInterceptor.java:192)
[JAWS]  at
org.jboss.ejb.StatelessSessionContainer.invoke(StatelessSessionContainer.jav
a:271)
[JAWS]  at
org.jboss.ejb.plugins.jrmp.server.JRMPContainerInvoker.invoke(JRMPContainerI
nvoker.java:163)
[JAWS]  at java.lang.reflect.Method.invoke(Native Method)
[JAWS]  at sun.rmi.server.UnicastServerRef.dispatch(Unknown Source)
[JAWS]  at sun.rmi.transport.Transport$1.run(Unknown Source)
[JAWS]  at java.security.AccessController.doPrivileged(Native Method)
[JAWS]  at sun.rmi.transport.Transport.serviceCall(Unknown Source)
[JAWS]  at sun.rmi.transport.tcp.TCPTransport.handleMessages(Unknown Source)
[JAWS]  at sun.rmi.transport.tcp.TCPTransport$ConnectionHandler.run(Unknown
Source)
[JAWS]  at java.lang.Thread.run(Unknown Source)
[KnowledgeRate] Could not create entity:java.lang.RuntimeException: Unable
to deregister with TransactionManager: java.lang.IllegalArgumentException:
xaRes not enlisted
[ProfilingSystem] TRANSACTION ROLLBACK EXCEPTION:javax.ejb.CreateException:
Could not create entity:java.lang.RuntimeException: Unable to deregister
with TransactionManager: java.lang.IllegalArgumentException: xaRes not
enlisted; nested exception is:
        java.rmi.RemoteException: javax.ejb.CreateException: Could not create
entity:java.lang.RuntimeException: Unable to deregister with
TransactionManager: java.lang.IllegalArgumentException: xaRes not enlisted
[ProfilingSystem] java.rmi.RemoteException: javax.ejb.CreateException: Could
not create entity:java.lang.RuntimeException: Unable to deregister with
TransactionManager: java.lang.IllegalArgumentException: xaRes not enlisted
[ProfilingSystem]       at
com.tikalknowledge.ksphere.profiling.session.ProfilingSystemClass.addKnowled
geRate(ProfilingSystemClass.java:146)
[ProfilingSystem]       at java.lang.reflect.Method.invoke(Native Method)
[ProfilingSystem]       at
org.jboss.ejb.StatelessSessionContainer$ContainerInterceptor.invoke(Stateles
sSessionContainer.java:472)
[ProfilingSystem]       at
org.jboss.ejb.plugins.StatelessSessionInstanceInterceptor.invoke(StatelessSe
ssionInstanceInterceptor.java:87)
[ProfilingSystem]       at
org.jboss.ejb.plugins.TxInterceptorCMT.invokeNext(TxInterceptorCMT.java:133)
[ProfilingSystem]       at
org.jboss.ejb.plugins.TxInterceptorCMT.runWithTransactions(TxInterceptorCMT.
java:263)
[ProfilingSystem]       at
org.jboss.ejb.plugins.TxInterceptorCMT.invoke(TxInterceptorCMT.java:99)
[ProfilingSystem]       at
org.jboss.ejb.plugins.SecurityInterceptor.invoke(SecurityInterceptor.java:14
4)
[ProfilingSystem]       at
org.jboss.ejb.plugins.LogInterceptor.invoke(LogInterceptor.java:192)
[ProfilingSystem]       at
org.jboss.ejb.StatelessSessionContainer.invoke(StatelessSessionContainer.jav
a:271)
[ProfilingSystem]       at
org.jboss.ejb.plugins.jrmp.server.JRMPContainerInvoker.invoke(JRMPContainerI
nvoker.java:237)
[ProfilingSystem]       at
org.jboss.ejb.plugins.jrmp.interfaces.StatelessSessionProxy.invoke(Stateless
SessionProxy.java:152)
[ProfilingSystem]       at
org.jboss.proxy.ProxyCompiler$Runtime.invoke(ProxyCompiler.java:74)
[ProfilingSystem]       at
com.tikalknowledge.ksphere.profiling.session.ProfilingSystem$Proxy.addKnowle
dgeRate(Unknown Source)
[ProfilingSystem]       at
com.tikalknowledge.ksphere.profiling.session.ProfilingSystemClass.addKnowled
geRate(ProfilingSystemClass.java:127)
[ProfilingSystem]       at java.lang.reflect.Method.invoke(Native Method)
[ProfilingSystem]       at
org.jboss.ejb.StatelessSessionContainer$ContainerInterceptor.invoke(Stateles
sSessionContainer.java:472)
[ProfilingSystem]       at
org.jboss.ejb.plugins.StatelessSessionInstanceInterceptor.invoke(StatelessSe
ssionInstanceInterceptor.java:87)
[ProfilingSystem]       at
org.jboss.ejb.plugins.TxInterceptorCMT.invokeNext(TxInterceptorCMT.java:133)
[ProfilingSystem]       at
org.jboss.ejb.plugins.TxInterceptorCMT.runWithTransactions(TxInterceptorCMT.
java:263)
[ProfilingSystem]       at
org.jboss.ejb.plugins.TxInterceptorCMT.invoke(TxInterceptorCMT.java:99)
[ProfilingSystem]       at
org.jboss.ejb.plugins.SecurityInterceptor.invoke(SecurityInterceptor.java:14
4)
[ProfilingSystem]       at
org.jboss.ejb.plugins.LogInterceptor.invoke(LogInterceptor.java:192)
[ProfilingSystem]       at
org.jboss.ejb.StatelessSessionContainer.invoke(StatelessSessionContainer.jav
a:271)
[ProfilingSystem]       at
org.jboss.ejb.plugins.jrmp.server.JRMPContainerInvoker.invoke(JRMPContainerI
nvoker.java:163)
[ProfilingSystem]       at java.lang.reflect.Method.invoke(Native Method)
[ProfilingSystem]       at sun.rmi.server.UnicastServerRef.dispatch(Unknown
Source)
[ProfilingSystem]       at sun.rmi.transport.Transport$1.run(Unknown Source)
[ProfilingSystem]       at java.security.AccessController.doPrivileged(Native
Method)
[ProfilingSystem]       at sun.rmi.transport.Transport.serviceCall(Unknown
Source)
[ProfilingSystem]       at
sun.rmi.transport.tcp.TCPTransport.handleMessages(Unknown Source)
[ProfilingSystem]       at
sun.rmi.transport.tcp.TCPTransport$ConnectionHandler.run(Unknown Source)
[ProfilingSystem]       at java.lang.Thread.run(Unknown Source)
[ProfilingSystem] javax.transaction.RollbackException: Already marked for
rollback
[ProfilingSystem]       at
org.jboss.tm.TxCapsule.enlistResource(TxCapsule.java:543)
[ProfilingSystem]       at
org.jboss.tm.TransactionImpl.enlistResource(TransactionImpl.java:114)
[ProfilingSystem]       at
org.jboss.minerva.factories.XAConnectionFactory.prepareObject(XAConnectionFa
ctory.java:254)
[ProfilingSystem]       at
org.jboss.minerva.pools.ObjectPool.createNewObject(ObjectPool.java:807)
[ProfilingSystem]       at
org.jboss.minerva.pools.ObjectPool.getObject(ObjectPool.java:549)
[ProfilingSystem]       at
org.jboss.minerva.datasource.XAPoolDataSource.getConnection(XAPoolDataSource
.java:169)
[ProfilingSystem]       at
org.jboss.ejb.plugins.jaws.jdbc.JDBCCommand.getConnection(JDBCCommand.java:6
15)
[ProfilingSystem]       at
org.jboss.ejb.plugins.jaws.jdbc.JDBCCommand.jdbcExecute(JDBCCommand.java:150
)
[ProfilingSystem]       at
org.jboss.ejb.plugins.jaws.jdbc.JDBCStoreEntityCommand.execute(JDBCStoreEnti
tyCommand.java:97)
[ProfilingSystem]       at
org.jboss.ejb.plugins.jaws.JAWSPersistenceManager.storeEntity(JAWSPersistenc
eManager.java:156)
[ProfilingSystem]       at
org.jboss.ejb.plugins.CMPPersistenceManager.storeEntity(CMPPersistenceManage
r.java:337)
[ProfilingSystem]       at
org.jboss.ejb.plugins.EntitySynchronizationInterceptor$InstanceSynchronizati
on.beforeCompletion(EntitySynchronizationInterceptor.java:343)
[ProfilingSystem]       at
org.jboss.tm.TxCapsule.doBeforeCompletion(TxCapsule.java:1104)
[ProfilingSystem]       at org.jboss.tm.TxCapsule.rollback(TxCapsule.java:362)
[ProfilingSystem]       at
org.jboss.tm.TransactionImpl.rollback(TransactionImpl.java:89)
[ProfilingSystem]       at
org.jboss.ejb.plugins.TxInterceptorCMT.runWithTransactions(TxInterceptorCMT.
java:307)
[ProfilingSystem]       at
org.jboss.ejb.plugins.TxInterceptorCMT.invoke(TxInterceptorCMT.java:99)
[ProfilingSystem]       at
org.jboss.ejb.plugins.SecurityInterceptor.invoke(SecurityInterceptor.java:14
4)
[ProfilingSystem]       at
org.jboss.ejb.plugins.LogInterceptor.invoke(LogInterceptor.java:192)
[ProfilingSystem]       at
org.jboss.ejb.StatelessSessionContainer.invoke(StatelessSessionContainer.jav
a:271)
[ProfilingSystem]       at
org.jboss.ejb.plugins.jrmp.server.JRMPContainerInvoker.invoke(JRMPContainerI
nvoker.java:163)
[ProfilingSystem]       at java.lang.reflect.Method.invoke(Native Method)
[ProfilingSystem]       at sun.rmi.server.UnicastServerRef.dispatch(Unknown
Source)
[ProfilingSystem]       at sun.rmi.transport.Transport$1.run(Unknown Source)
[ProfilingSystem]       at java.security.AccessController.doPrivileged(Native
Method)
[ProfilingSystem]       at sun.rmi.transport.Transport.serviceCall(Unknown
Source)
[ProfilingSystem]       at
sun.rmi.transport.tcp.TCPTransport.handleMessages(Unknown Source)
[ProfilingSystem]       at
sun.rmi.transport.tcp.TCPTransport$ConnectionHandler.run(Unknown Source)
[ProfilingSystem]       at java.lang.Thread.run(Unknown Source)
[ProfilingSystem] java.rmi.ServerException: Store failed; nested exception
is:
[ProfilingSystem]       java.lang.RuntimeException: Unable to register with
TransactionManager: javax.transaction.RollbackException: Already marked for
rollback
[ProfilingSystem] java.lang.RuntimeException: Unable to register with
TransactionManager: javax.transaction.RollbackException: Already marked for
rollback
[ProfilingSystem]       at
org.jboss.minerva.factories.XAConnectionFactory.prepareObject(XAConnectionFa
ctory.java:262)
[ProfilingSystem]       at
org.jboss.minerva.pools.ObjectPool.createNewObject(ObjectPool.java:807)
[ProfilingSystem]       at
org.jboss.minerva.pools.ObjectPool.getObject(ObjectPool.java:549)
[ProfilingSystem]       at
org.jboss.minerva.datasource.XAPoolDataSource.getConnection(XAPoolDataSource
.java:169)
[ProfilingSystem]       at
org.jboss.ejb.plugins.jaws.jdbc.JDBCCommand.getConnection(JDBCCommand.java:6
15)
[ProfilingSystem]       at
org.jboss.ejb.plugins.jaws.jdbc.JDBCCommand.jdbcExecute(JDBCCommand.java:150
)
[ProfilingSystem]       at
org.jboss.ejb.plugins.jaws.jdbc.JDBCStoreEntityCommand.execute(JDBCStoreEnti
tyCommand.java:97)
[ProfilingSystem]       at
org.jboss.ejb.plugins.jaws.JAWSPersistenceManager.storeEntity(JAWSPersistenc
eManager.java:156)
[ProfilingSystem]       at
org.jboss.ejb.plugins.CMPPersistenceManager.storeEntity(CMPPersistenceManage
r.java:337)
[ProfilingSystem]       at
org.jboss.ejb.plugins.EntitySynchronizationInterceptor$InstanceSynchronizati
on.beforeCompletion(EntitySynchronizationInterceptor.java:343)
[ProfilingSystem]       at
org.jboss.tm.TxCapsule.doBeforeCompletion(TxCapsule.java:1104)
[ProfilingSystem]       at org.jboss.tm.TxCapsule.rollback(TxCapsule.java:362)
[ProfilingSystem]       at
org.jboss.tm.TransactionImpl.rollback(TransactionImpl.java:89)
[ProfilingSystem]       at
org.jboss.ejb.plugins.TxInterceptorCMT.runWithTransactions(TxInterceptorCMT.
java:307)
[ProfilingSystem]       at
org.jboss.ejb.plugins.TxInterceptorCMT.invoke(TxInterceptorCMT.java:99)
[ProfilingSystem]       at
org.jboss.ejb.plugins.SecurityInterceptor.invoke(SecurityInterceptor.java:14
4)
[ProfilingSystem]       at
org.jboss.ejb.plugins.LogInterceptor.invoke(LogInterceptor.java:192)
[ProfilingSystem]       at
org.jboss.ejb.StatelessSessionContainer.invoke(StatelessSessionContainer.jav
a:271)
[ProfilingSystem]       at
org.jboss.ejb.plugins.jrmp.server.JRMPContainerInvoker.invoke(JRMPContainerI
nvoker.java:163)
[ProfilingSystem]       at java.lang.reflect.Method.invoke(Native Method)
[ProfilingSystem]       at sun.rmi.server.UnicastServerRef.dispatch(Unknown
Source)
[ProfilingSystem]       at sun.rmi.transport.Transport$1.run(Unknown Source)
[ProfilingSystem]       at java.security.AccessController.doPrivileged(Native
Method)
[ProfilingSystem]       at sun.rmi.transport.Transport.serviceCall(Unknown
Source)
[ProfilingSystem]       at
sun.rmi.transport.tcp.TCPTransport.handleMessages(Unknown Source)
[ProfilingSystem]       at
sun.rmi.transport.tcp.TCPTransport$ConnectionHandler.run(Unknown Source)
[ProfilingSystem]       at java.lang.Thread.run(Unknown Source)
[ProfilingSystem] javax.transaction.RollbackException: Already marked for
rollback
[ProfilingSystem]       at
org.jboss.tm.TxCapsule.enlistResource(TxCapsule.java:543)
[ProfilingSystem]       at
org.jboss.tm.TransactionImpl.enlistResource(TransactionImpl.java:114)
[ProfilingSystem]       at
org.jboss.minerva.factories.XAConnectionFactory.prepareObject(XAConnectionFa
ctory.java:254)
[ProfilingSystem]       at
org.jboss.minerva.pools.ObjectPool.createNewObject(ObjectPool.java:807)
[ProfilingSystem]       at
org.jboss.minerva.pools.ObjectPool.getObject(ObjectPool.java:549)
[ProfilingSystem]       at
org.jboss.minerva.datasource.XAPoolDataSource.getConnection(XAPoolDataSource
.java:169)
[ProfilingSystem]       at
com.tikalknowledge.ksphere.profiling.entity.KnowledgeClass.ejbStore(Knowledg
eClass.java:359)
[ProfilingSystem]       at java.lang.reflect.Method.invoke(Native Method)
[ProfilingSystem]       at
org.jboss.ejb.plugins.BMPPersistenceManager.storeEntity(BMPPersistenceManage
r.java:305)
[ProfilingSystem]       at
org.jboss.ejb.plugins.EntitySynchronizationInterceptor$InstanceSynchronizati
on.beforeCompletion(EntitySynchronizationInterceptor.java:343)
[ProfilingSystem]       at
org.jboss.tm.TxCapsule.doBeforeCompletion(TxCapsule.java:1104)
[ProfilingSystem]       at org.jboss.tm.TxCapsule.rollback(TxCapsule.java:362)
[ProfilingSystem]       at
org.jboss.tm.TransactionImpl.rollback(TransactionImpl.java:89)
[ProfilingSystem]       at
org.jboss.ejb.plugins.TxInterceptorCMT.runWithTransactions(TxInterceptorCMT.
java:307)
[ProfilingSystem]       at
org.jboss.ejb.plugins.TxInterceptorCMT.invoke(TxInterceptorCMT.java:99)
[ProfilingSystem]       at
org.jboss.ejb.plugins.SecurityInterceptor.invoke(SecurityInterceptor.java:14
4)
[ProfilingSystem]       at
org.jboss.ejb.plugins.LogInterceptor.invoke(LogInterceptor.java:192)
[ProfilingSystem]       at
org.jboss.ejb.StatelessSessionContainer.invoke(StatelessSessionContainer.jav
a:271)
[ProfilingSystem]       at
org.jboss.ejb.plugins.jrmp.server.JRMPContainerInvoker.invoke(JRMPContainerI
nvoker.java:163)
[ProfilingSystem]       at java.lang.reflect.Method.invoke(Native Method)
[ProfilingSystem]       at sun.rmi.server.UnicastServerRef.dispatch(Unknown
Source)
[ProfilingSystem]       at sun.rmi.transport.Transport$1.run(Unknown Source)
[ProfilingSystem]       at java.security.AccessController.doPrivileged(Native
Method)
[ProfilingSystem]       at sun.rmi.transport.Transport.serviceCall(Unknown
Source)
[ProfilingSystem]       at
sun.rmi.transport.tcp.TCPTransport.handleMessages(Unknown Source)
[ProfilingSystem]       at
sun.rmi.transport.tcp.TCPTransport$ConnectionHandler.run(Unknown Source)
[ProfilingSystem]       at java.lang.Thread.run(Unknown Source)
[ProfilingSystem] java.rmi.RemoteException: java.lang.RuntimeException:
Unable to register with TransactionManager:
javax.transaction.RollbackException: Already marked for rollback
[ProfilingSystem]       at
com.tikalknowledge.ksphere.profiling.entity.KnowledgeClass.ejbStore(Knowledg
eClass.java:415)
[ProfilingSystem]       at java.lang.reflect.Method.invoke(Native Method)
[ProfilingSystem]       at
org.jboss.ejb.plugins.BMPPersistenceManager.storeEntity(BMPPersistenceManage
r.java:305)
[ProfilingSystem]       at
org.jboss.ejb.plugins.EntitySynchronizationInterceptor$InstanceSynchronizati
on.beforeCompletion(EntitySynchronizationInterceptor.java:343)
[ProfilingSystem]       at
org.jboss.tm.TxCapsule.doBeforeCompletion(TxCapsule.java:1104)
[ProfilingSystem]       at org.jboss.tm.TxCapsule.rollback(TxCapsule.java:362)
[ProfilingSystem]       at
org.jboss.tm.TransactionImpl.rollback(TransactionImpl.java:89)
[ProfilingSystem]       at
org.jboss.ejb.plugins.TxInterceptorCMT.runWithTransactions(TxInterceptorCMT.
java:307)
[ProfilingSystem]       at
org.jboss.ejb.plugins.TxInterceptorCMT.invoke(TxInterceptorCMT.java:99)
[ProfilingSystem]       at
org.jboss.ejb.plugins.SecurityInterceptor.invoke(SecurityInterceptor.java:14
4)
[ProfilingSystem]       at
org.jboss.ejb.plugins.LogInterceptor.invoke(LogInterceptor.java:192)
[ProfilingSystem]       at
org.jboss.ejb.StatelessSessionContainer.invoke(StatelessSessionContainer.jav
a:271)
[ProfilingSystem]       at
org.jboss.ejb.plugins.jrmp.server.JRMPContainerInvoker.invoke(JRMPContainerI
nvoker.java:163)
[ProfilingSystem]       at java.lang.reflect.Method.invoke(Native Method)
[ProfilingSystem]       at sun.rmi.server.UnicastServerRef.dispatch(Unknown
Source)
[ProfilingSystem]       at sun.rmi.transport.Transport$1.run(Unknown Source)
[ProfilingSystem]       at java.security.AccessController.doPrivileged(Native
Method)
[ProfilingSystem]       at sun.rmi.transport.Transport.serviceCall(Unknown
Source)
[ProfilingSystem]       at
sun.rmi.transport.tcp.TCPTransport.handleMessages(Unknown Source)
[ProfilingSystem]       at
sun.rmi.transport.tcp.TCPTransport$ConnectionHandler.run(Unknown Source)
[ProfilingSystem]       at java.lang.Thread.run(Unknown Source)
[ProfilingSystem] javax.transaction.RollbackException: Already marked for
rollback
[ProfilingSystem]       at
org.jboss.tm.TxCapsule.enlistResource(TxCapsule.java:543)
[ProfilingSystem]       at
org.jboss.tm.TransactionImpl.enlistResource(TransactionImpl.java:114)
[ProfilingSystem]       at
org.jboss.minerva.factories.XAConnectionFactory.prepareObject(XAConnectionFa
ctory.java:254)
[ProfilingSystem]       at
org.jboss.minerva.pools.ObjectPool.createNewObject(ObjectPool.java:807)
[ProfilingSystem]       at
org.jboss.minerva.pools.ObjectPool.getObject(ObjectPool.java:549)
[ProfilingSystem]       at
org.jboss.minerva.datasource.XAPoolDataSource.getConnection(XAPoolDataSource
.java:169)
[ProfilingSystem]       at
org.jboss.ejb.plugins.jaws.jdbc.JDBCCommand.getConnection(JDBCCommand.java:6
15)
[ProfilingSystem]       at
org.jboss.ejb.plugins.jaws.jdbc.JDBCCommand.jdbcExecute(JDBCCommand.java:150
)
[ProfilingSystem]       at
org.jboss.ejb.plugins.jaws.jdbc.JDBCStoreEntityCommand.execute(JDBCStoreEnti
tyCommand.java:97)
[ProfilingSystem]       at
org.jboss.ejb.plugins.jaws.JAWSPersistenceManager.storeEntity(JAWSPersistenc
eManager.java:156)
[ProfilingSystem]       at
org.jboss.ejb.plugins.CMPPersistenceManager.storeEntity(CMPPersistenceManage
r.java:337)
[ProfilingSystem]       at
org.jboss.ejb.plugins.EntitySynchronizationInterceptor$InstanceSynchronizati
on.beforeCompletion(EntitySynchronizationInterceptor.java:343)
[ProfilingSystem]       at
org.jboss.tm.TxCapsule.doBeforeCompletion(TxCapsule.java:1104)
[ProfilingSystem]       at org.jboss.tm.TxCapsule.rollback(TxCapsule.java:362)
[ProfilingSystem]       at
org.jboss.tm.TransactionImpl.rollback(TransactionImpl.java:89)
[ProfilingSystem]       at
org.jboss.ejb.plugins.TxInterceptorCMT.runWithTransactions(TxInterceptorCMT.
java:307)
[ProfilingSystem]       at
org.jboss.ejb.plugins.TxInterceptorCMT.invoke(TxInterceptorCMT.java:99)
[ProfilingSystem]       at
org.jboss.ejb.plugins.SecurityInterceptor.invoke(SecurityInterceptor.java:14
4)
[ProfilingSystem]       at
org.jboss.ejb.plugins.LogInterceptor.invoke(LogInterceptor.java:192)
[ProfilingSystem]       at
org.jboss.ejb.StatelessSessionContainer.invoke(StatelessSessionContainer.jav
a:271)
[ProfilingSystem]       at
org.jboss.ejb.plugins.jrmp.server.JRMPContainerInvoker.invoke(JRMPContainerI
nvoker.java:163)
[ProfilingSystem]       at java.lang.reflect.Method.invoke(Native Method)
[ProfilingSystem]       at sun.rmi.server.UnicastServerRef.dispatch(Unknown
Source)
[ProfilingSystem]       at sun.rmi.transport.Transport$1.run(Unknown Source)
[ProfilingSystem]       at java.security.AccessController.doPrivileged(Native
Method)
[ProfilingSystem]       at sun.rmi.transport.Transport.serviceCall(Unknown
Source)
[ProfilingSystem]       at
sun.rmi.transport.tcp.TCPTransport.handleMessages(Unknown Source)
[ProfilingSystem]       at
sun.rmi.transport.tcp.TCPTransport$ConnectionHandler.run(Unknown Source)
[ProfilingSystem]       at java.lang.Thread.run(Unknown Source)
[ProfilingSystem] java.rmi.ServerException: Store failed; nested exception
is:
[ProfilingSystem]       java.lang.RuntimeException: Unable to register with
TransactionManager: javax.transaction.RollbackException: Already marked for
rollback
[ProfilingSystem] java.lang.RuntimeException: Unable to register with
TransactionManager: javax.transaction.RollbackException: Already marked for
rollback
[ProfilingSystem]       at
org.jboss.minerva.factories.XAConnectionFactory.prepareObject(XAConnectionFa
ctory.java:262)
[ProfilingSystem]       at
org.jboss.minerva.pools.ObjectPool.createNewObject(ObjectPool.java:807)
[ProfilingSystem]       at
org.jboss.minerva.pools.ObjectPool.getObject(ObjectPool.java:549)
[ProfilingSystem]       at
org.jboss.minerva.datasource.XAPoolDataSource.getConnection(XAPoolDataSource
.java:169)
[ProfilingSystem]       at
org.jboss.ejb.plugins.jaws.jdbc.JDBCCommand.getConnection(JDBCCommand.java:6
15)
[ProfilingSystem]       at
org.jboss.ejb.plugins.jaws.jdbc.JDBCCommand.jdbcExecute(JDBCCommand.java:150
)
[ProfilingSystem]       at
org.jboss.ejb.plugins.jaws.jdbc.JDBCStoreEntityCommand.execute(JDBCStoreEnti
tyCommand.java:97)
[ProfilingSystem]       at
org.jboss.ejb.plugins.jaws.JAWSPersistenceManager.storeEntity(JAWSPersistenc
eManager.java:156)
[ProfilingSystem]       at
org.jboss.ejb.plugins.CMPPersistenceManager.storeEntity(CMPPersistenceManage
r.java:337)
[ProfilingSystem]       at
org.jboss.ejb.plugins.EntitySynchronizationInterceptor$InstanceSynchronizati
on.beforeCompletion(EntitySynchronizationInterceptor.java:343)
[ProfilingSystem]       at
org.jboss.tm.TxCapsule.doBeforeCompletion(TxCapsule.java:1104)
[ProfilingSystem]       at org.jboss.tm.TxCapsule.rollback(TxCapsule.java:362)
[ProfilingSystem]       at
org.jboss.tm.TransactionImpl.rollback(TransactionImpl.java:89)
[ProfilingSystem]       at
org.jboss.ejb.plugins.TxInterceptorCMT.runWithTransactions(TxInterceptorCMT.
java:307)
[ProfilingSystem]       at
org.jboss.ejb.plugins.TxInterceptorCMT.invoke(TxInterceptorCMT.java:99)
[ProfilingSystem]       at
org.jboss.ejb.plugins.SecurityInterceptor.invoke(SecurityInterceptor.java:14
4)
[ProfilingSystem]       at
org.jboss.ejb.plugins.LogInterceptor.invoke(LogInterceptor.java:192)
[ProfilingSystem]       at
org.jboss.ejb.StatelessSessionContainer.invoke(StatelessSessionContainer.jav
a:271)
[ProfilingSystem]       at
org.jboss.ejb.plugins.jrmp.server.JRMPContainerInvoker.invoke(JRMPContainerI
nvoker.java:163)
[ProfilingSystem]       at java.lang.reflect.Method.invoke(Native Method)
[ProfilingSystem]       at sun.rmi.server.UnicastServerRef.dispatch(Unknown
Source)
[ProfilingSystem]       at sun.rmi.transport.Transport$1.run(Unknown Source)
[ProfilingSystem]       at java.security.AccessController.doPrivileged(Native
Method)
[ProfilingSystem]       at sun.rmi.transport.Transport.serviceCall(Unknown
Source)
[ProfilingSystem]       at
sun.rmi.transport.tcp.TCPTransport.handleMessages(Unknown Source)
[ProfilingSystem]       at
sun.rmi.transport.tcp.TCPTransport$ConnectionHandler.run(Unknown Source)
[ProfilingSystem]       at java.lang.Thread.run(Unknown Source)
[ProfilingSystem] javax.transaction.RollbackException: Already marked for
rollback
[ProfilingSystem]       at
org.jboss.tm.TxCapsule.enlistResource(TxCapsule.java:543)
[ProfilingSystem]       at
org.jboss.tm.TransactionImpl.enlistResource(TransactionImpl.java:114)
[ProfilingSystem]       at
org.jboss.minerva.factories.XAConnectionFactory.prepareObject(XAConnectionFa
ctory.java:254)
[ProfilingSystem]       at
org.jboss.minerva.pools.ObjectPool.createNewObject(ObjectPool.java:807)
[ProfilingSystem]       at
org.jboss.minerva.pools.ObjectPool.getObject(ObjectPool.java:549)
[ProfilingSystem]       at
org.jboss.minerva.datasource.XAPoolDataSource.getConnection(XAPoolDataSource
.java:169)
[ProfilingSystem]       at
org.jboss.ejb.plugins.jaws.jdbc.JDBCCommand.getConnection(JDBCCommand.java:6
15)
[ProfilingSystem]       at
org.jboss.ejb.plugins.jaws.jdbc.JDBCCommand.jdbcExecute(JDBCCommand.java:150
)
[ProfilingSystem]       at
org.jboss.ejb.plugins.jaws.jdbc.JDBCStoreEntityCommand.execute(JDBCStoreEnti
tyCommand.java:97)
[ProfilingSystem]       at
org.jboss.ejb.plugins.jaws.JAWSPersistenceManager.storeEntity(JAWSPersistenc
eManager.java:156)
[ProfilingSystem]       at
org.jboss.ejb.plugins.CMPPersistenceManager.storeEntity(CMPPersistenceManage
r.java:337)
[ProfilingSystem]       at
org.jboss.ejb.plugins.EntitySynchronizationInterceptor$InstanceSynchronizati
on.beforeCompletion(EntitySynchronizationInterceptor.java:343)
[ProfilingSystem]       at
org.jboss.tm.TxCapsule.doBeforeCompletion(TxCapsule.java:1104)
[ProfilingSystem]       at org.jboss.tm.TxCapsule.rollback(TxCapsule.java:362)
[ProfilingSystem]       at
org.jboss.tm.TransactionImpl.rollback(TransactionImpl.java:89)
[ProfilingSystem]       at
org.jboss.ejb.plugins.TxInterceptorCMT.runWithTransactions(TxInterceptorCMT.
java:307)
[ProfilingSystem]       at
org.jboss.ejb.plugins.TxInterceptorCMT.invoke(TxInterceptorCMT.java:99)
[ProfilingSystem]       at
org.jboss.ejb.plugins.SecurityInterceptor.invoke(SecurityInterceptor.java:14
4)
[ProfilingSystem]       at
org.jboss.ejb.plugins.LogInterceptor.invoke(LogInterceptor.java:192)
[ProfilingSystem]       at
org.jboss.ejb.StatelessSessionContainer.invoke(StatelessSessionContainer.jav
a:271)
[ProfilingSystem]       at
org.jboss.ejb.plugins.jrmp.server.JRMPContainerInvoker.invoke(JRMPContainerI
nvoker.java:163)
[ProfilingSystem]       at java.lang.reflect.Method.invoke(Native Method)
[ProfilingSystem]       at sun.rmi.server.UnicastServerRef.dispatch(Unknown
Source)
[ProfilingSystem]       at sun.rmi.transport.Transport$1.run(Unknown Source)
[ProfilingSystem]       at java.security.AccessController.doPrivileged(Native
Method)
[ProfilingSystem]       at sun.rmi.transport.Transport.serviceCall(Unknown
Source)
[ProfilingSystem]       at
sun.rmi.transport.tcp.TCPTransport.handleMessages(Unknown Source)
[ProfilingSystem]       at
sun.rmi.transport.tcp.TCPTransport$ConnectionHandler.run(Unknown Source)
[ProfilingSystem]       at java.lang.Thread.run(Unknown Source)
[ProfilingSystem] java.rmi.ServerException: Store failed; nested exception
is:
[ProfilingSystem]       java.lang.RuntimeException: Unable to register with
TransactionManager: javax.transaction.RollbackException: Already marked for
rollback
[ProfilingSystem] java.lang.RuntimeException: Unable to register with
TransactionManager: javax.transaction.RollbackException: Already marked for
rollback
[ProfilingSystem]       at
org.jboss.minerva.factories.XAConnectionFactory.prepareObject(XAConnectionFa
ctory.java:262)
[ProfilingSystem]       at
org.jboss.minerva.pools.ObjectPool.createNewObject(ObjectPool.java:807)
[ProfilingSystem]       at
org.jboss.minerva.pools.ObjectPool.getObject(ObjectPool.java:549)
[ProfilingSystem]       at
org.jboss.minerva.datasource.XAPoolDataSource.getConnection(XAPoolDataSource
.java:169)
[ProfilingSystem]       at
org.jboss.ejb.plugins.jaws.jdbc.JDBCCommand.getConnection(JDBCCommand.java:6
15)
[ProfilingSystem]       at
org.jboss.ejb.plugins.jaws.jdbc.JDBCCommand.jdbcExecute(JDBCCommand.java:150
)
[ProfilingSystem]       at
org.jboss.ejb.plugins.jaws.jdbc.JDBCStoreEntityCommand.execute(JDBCStoreEnti
tyCommand.java:97)
[ProfilingSystem]       at
org.jboss.ejb.plugins.jaws.JAWSPersistenceManager.storeEntity(JAWSPersistenc
eManager.java:156)
[ProfilingSystem]       at
org.jboss.ejb.plugins.CMPPersistenceManager.storeEntity(CMPPersistenceManage
r.java:337)
[ProfilingSystem]       at
org.jboss.ejb.plugins.EntitySynchronizationInterceptor$InstanceSynchronizati
on.beforeCompletion(EntitySynchronizationInterceptor.java:343)
[ProfilingSystem]       at
org.jboss.tm.TxCapsule.doBeforeCompletion(TxCapsule.java:1104)
[ProfilingSystem]       at org.jboss.tm.TxCapsule.rollback(TxCapsule.java:362)
[ProfilingSystem]       at
org.jboss.tm.TransactionImpl.rollback(TransactionImpl.java:89)
[ProfilingSystem]       at
org.jboss.ejb.plugins.TxInterceptorCMT.runWithTransactions(TxInterceptorCMT.
java:307)
[ProfilingSystem]       at
org.jboss.ejb.plugins.TxInterceptorCMT.invoke(TxInterceptorCMT.java:99)
[ProfilingSystem]       at
org.jboss.ejb.plugins.SecurityInterceptor.invoke(SecurityInterceptor.java:14
4)
[ProfilingSystem]       at
org.jboss.ejb.plugins.LogInterceptor.invoke(LogInterceptor.java:192)
[ProfilingSystem]       at
org.jboss.ejb.StatelessSessionContainer.invoke(StatelessSessionContainer.jav
a:271)
[ProfilingSystem]       at
org.jboss.ejb.plugins.jrmp.server.JRMPContainerInvoker.invoke(JRMPContainerI
nvoker.java:163)
[ProfilingSystem]       at java.lang.reflect.Method.invoke(Native Method)
[ProfilingSystem]       at sun.rmi.server.UnicastServerRef.dispatch(Unknown
Source)
[ProfilingSystem]       at sun.rmi.transport.Transport$1.run(Unknown Source)
[ProfilingSystem]       at java.security.AccessController.doPrivileged(Native
Method)
[ProfilingSystem]       at sun.rmi.transport.Transport.serviceCall(Unknown
Source)
[ProfilingSystem]       at
sun.rmi.transport.tcp.TCPTransport.handleMessages(Unknown Source)
[ProfilingSystem]       at
sun.rmi.transport.tcp.TCPTransport$ConnectionHandler.run(Unknown Source)
[ProfilingSystem]       at java.lang.Thread.run(Unknown Source)
[ProfilingSystem] XAException: tx=OracleXid [ID=257, Global=shahar-ws/1,
Branch=] errorCode=XAER_RMERR
[ProfilingSystem] oracle.jdbc.xa.OracleXAException
[ProfilingSystem]       at
oracle.jdbc.xa.OracleXAResource.checkError(OracleXAResource.java:467)
[ProfilingSystem]       at
oracle.jdbc.xa.client.OracleXAResource.rollback(OracleXAResource.java:436)
[ProfilingSystem]       at
org.jboss.tm.TxCapsule.rollbackResources(TxCapsule.java:1385)
[ProfilingSystem]       at org.jboss.tm.TxCapsule.rollback(TxCapsule.java:364)
[ProfilingSystem]       at
org.jboss.tm.TransactionImpl.rollback(TransactionImpl.java:89)
[ProfilingSystem]       at
org.jboss.ejb.plugins.TxInterceptorCMT.runWithTransactions(TxInterceptorCMT.
java:307)
[ProfilingSystem]       at
org.jboss.ejb.plugins.TxInterceptorCMT.invoke(TxInterceptorCMT.java:99)
[ProfilingSystem]       at
org.jboss.ejb.plugins.SecurityInterceptor.invoke(SecurityInterceptor.java:14
4)
[ProfilingSystem]       at
org.jboss.ejb.plugins.LogInterceptor.invoke(LogInterceptor.java:192)
[ProfilingSystem]       at
org.jboss.ejb.StatelessSessionContainer.invoke(StatelessSessionContainer.jav
a:271)
[ProfilingSystem]       at
org.jboss.ejb.plugins.jrmp.server.JRMPContainerInvoker.invoke(JRMPContainerI
nvoker.java:163)
[ProfilingSystem]       at java.lang.reflect.Method.invoke(Native Method)
[ProfilingSystem]       at sun.rmi.server.UnicastServerRef.dispatch(Unknown
Source)
[ProfilingSystem]       at sun.rmi.transport.Transport$1.run(Unknown Source)
[ProfilingSystem]       at java.security.AccessController.doPrivileged(Native
Method)
[ProfilingSystem]       at sun.rmi.transport.Transport.serviceCall(Unknown
Source)
[ProfilingSystem]       at
sun.rmi.transport.tcp.TCPTransport.handleMessages(Unknown Source)
[ProfilingSystem]       at
sun.rmi.transport.tcp.TCPTransport$ConnectionHandler.run(Unknown Source)
[ProfilingSystem]       at java.lang.Thread.run(Unknown Source)
[ProfilingSystem] XAException: tx=OracleXid [ID=257, Global=shahar-ws/1,
Branch=] errorCode=XAER_RMERR
[ProfilingSystem] oracle.jdbc.xa.OracleXAException
[ProfilingSystem]       at
oracle.jdbc.xa.OracleXAResource.checkError(OracleXAResource.java:467)
[ProfilingSystem]       at
oracle.jdbc.xa.client.OracleXAResource.rollback(OracleXAResource.java:436)
[ProfilingSystem]       at
org.jboss.tm.TxCapsule.rollbackResources(TxCapsule.java:1385)
[ProfilingSystem]       at org.jboss.tm.TxCapsule.rollback(TxCapsule.java:364)
[ProfilingSystem]       at
org.jboss.tm.TransactionImpl.rollback(TransactionImpl.java:89)
[ProfilingSystem]       at
org.jboss.ejb.plugins.TxInterceptorCMT.runWithTransactions(TxInterceptorCMT.
java:307)
[ProfilingSystem]       at
org.jboss.ejb.plugins.TxInterceptorCMT.invoke(TxInterceptorCMT.java:99)
[ProfilingSystem]       at
org.jboss.ejb.plugins.SecurityInterceptor.invoke(SecurityInterceptor.java:14
4)
[ProfilingSystem]       at
org.jboss.ejb.plugins.LogInterceptor.invoke(LogInterceptor.java:192)
[ProfilingSystem]       at
org.jboss.ejb.StatelessSessionContainer.invoke(StatelessSessionContainer.jav
a:271)
[ProfilingSystem]       at
org.jboss.ejb.plugins.jrmp.server.JRMPContainerInvoker.invoke(JRMPContainerI
nvoker.java:163)
[ProfilingSystem]       at java.lang.reflect.Method.invoke(Native Method)
[ProfilingSystem]       at sun.rmi.server.UnicastServerRef.dispatch(Unknown
Source)
[ProfilingSystem]       at sun.rmi.transport.Transport$1.run(Unknown Source)
[ProfilingSystem]       at java.security.AccessController.doPrivileged(Native
Method)
[ProfilingSystem]       at sun.rmi.transport.Transport.serviceCall(Unknown
Source)
[ProfilingSystem]       at
sun.rmi.transport.tcp.TCPTransport.handleMessages(Unknown Source)
[ProfilingSystem]       at
sun.rmi.transport.tcp.TCPTransport$ConnectionHandler.run(Unknown Source)
[ProfilingSystem]       at java.lang.Thread.run(Unknown Source)
[ProfilingSystem] XAException: tx=OracleXid [ID=257, Global=shahar-ws/1,
Branch=] errorCode=XAER_RMERR
[ProfilingSystem] oracle.jdbc.xa.OracleXAException
[ProfilingSystem]       at
oracle.jdbc.xa.OracleXAResource.checkError(OracleXAResource.java:467)
[ProfilingSystem]       at
oracle.jdbc.xa.client.OracleXAResource.rollback(OracleXAResource.java:436)
[ProfilingSystem]       at
org.jboss.tm.TxCapsule.rollbackResources(TxCapsule.java:1385)
[ProfilingSystem]       at org.jboss.tm.TxCapsule.rollback(TxCapsule.java:364)
[ProfilingSystem]       at
org.jboss.tm.TransactionImpl.rollback(TransactionImpl.java:89)
[ProfilingSystem]       at
org.jboss.ejb.plugins.TxInterceptorCMT.runWithTransactions(TxInterceptorCMT.
java:307)
[ProfilingSystem]       at
org.jboss.ejb.plugins.TxInterceptorCMT.invoke(TxInterceptorCMT.java:99)
[ProfilingSystem]       at
org.jboss.ejb.plugins.SecurityInterceptor.invoke(SecurityInterceptor.java:14
4)
[ProfilingSystem]       at
org.jboss.ejb.plugins.LogInterceptor.invoke(LogInterceptor.java:192)
[ProfilingSystem]       at
org.jboss.ejb.StatelessSessionContainer.invoke(StatelessSessionContainer.jav
a:271)
[ProfilingSystem]       at
org.jboss.ejb.plugins.jrmp.server.JRMPContainerInvoker.invoke(JRMPContainerI
nvoker.java:163)
[ProfilingSystem]       at java.lang.reflect.Method.invoke(Native Method)
[ProfilingSystem]       at sun.rmi.server.UnicastServerRef.dispatch(Unknown
Source)
[ProfilingSystem]       at sun.rmi.transport.Transport$1.run(Unknown Source)
[ProfilingSystem]       at java.security.AccessController.doPrivileged(Native
Method)
[ProfilingSystem]       at sun.rmi.transport.Transport.serviceCall(Unknown
Source)
[ProfilingSystem]       at
sun.rmi.transport.tcp.TCPTransport.handleMessages(Unknown Source)
[ProfilingSystem]       at
sun.rmi.transport.tcp.TCPTransport$ConnectionHandler.run(Unknown Source)
[ProfilingSystem]       at java.lang.Thread.run(Unknown Source)
[ProfilingSystem] XAException: tx=OracleXid [ID=257, Global=shahar-ws/1,
Branch=] errorCode=XAER_RMERR
[ProfilingSystem] oracle.jdbc.xa.OracleXAException
[ProfilingSystem]       at
oracle.jdbc.xa.OracleXAResource.checkError(OracleXAResource.java:467)
[ProfilingSystem]       at
oracle.jdbc.xa.client.OracleXAResource.rollback(OracleXAResource.java:436)
[ProfilingSystem]       at
org.jboss.tm.TxCapsule.rollbackResources(TxCapsule.java:1385)
[ProfilingSystem]       at org.jboss.tm.TxCapsule.rollback(TxCapsule.java:364)
[ProfilingSystem]       at
org.jboss.tm.TransactionImpl.rollback(TransactionImpl.java:89)
[ProfilingSystem]       at
org.jboss.ejb.plugins.TxInterceptorCMT.runWithTransactions(TxInterceptorCMT.
java:307)
[ProfilingSystem]       at
org.jboss.ejb.plugins.TxInterceptorCMT.invoke(TxInterceptorCMT.java:99)
[ProfilingSystem]       at
org.jboss.ejb.plugins.SecurityInterceptor.invoke(SecurityInterceptor.java:14
4)
[ProfilingSystem]       at
org.jboss.ejb.plugins.LogInterceptor.invoke(LogInterceptor.java:192)
[ProfilingSystem]       at
org.jboss.ejb.StatelessSessionContainer.invoke(StatelessSessionContainer.jav
a:271)
[ProfilingSystem]       at
org.jboss.ejb.plugins.jrmp.server.JRMPContainerInvoker.invoke(JRMPContainerI
nvoker.java:163)
[ProfilingSystem]       at java.lang.reflect.Method.invoke(Native Method)
[ProfilingSystem]       at sun.rmi.server.UnicastServerRef.dispatch(Unknown
Source)
[ProfilingSystem]       at sun.rmi.transport.Transport$1.run(Unknown Source)
[ProfilingSystem]       at java.security.AccessController.doPrivileged(Native
Method)
[ProfilingSystem]       at sun.rmi.transport.Transport.serviceCall(Unknown
Source)
[ProfilingSystem]       at
sun.rmi.transport.tcp.TCPTransport.handleMessages(Unknown Source)
[ProfilingSystem]       at
sun.rmi.transport.tcp.TCPTransport$ConnectionHandler.run(Unknown Source)
[ProfilingSystem]       at java.lang.Thread.run(Unknown Source)
[ProfilingSystem] XAException: tx=OracleXid [ID=257, Global=shahar-ws/1,
Branch=] errorCode=XAER_RMERR
[ProfilingSystem] oracle.jdbc.xa.OracleXAException
[ProfilingSystem]       at
oracle.jdbc.xa.OracleXAResource.checkError(OracleXAResource.java:467)
[ProfilingSystem]       at
oracle.jdbc.xa.client.OracleXAResource.rollback(OracleXAResource.java:436)
[ProfilingSystem]       at
org.jboss.tm.TxCapsule.rollbackResources(TxCapsule.java:1385)
[ProfilingSystem]       at org.jboss.tm.TxCapsule.rollback(TxCapsule.java:364)
[ProfilingSystem]       at
org.jboss.tm.TransactionImpl.rollback(TransactionImpl.java:89)
[ProfilingSystem]       at
org.jboss.ejb.plugins.TxInterceptorCMT.runWithTransactions(TxInterceptorCMT.
java:307)
[ProfilingSystem]       at
org.jboss.ejb.plugins.TxInterceptorCMT.invoke(TxInterceptorCMT.java:99)
[ProfilingSystem]       at
org.jboss.ejb.plugins.SecurityInterceptor.invoke(SecurityInterceptor.java:14
4)
[ProfilingSystem]       at
org.jboss.ejb.plugins.LogInterceptor.invoke(LogInterceptor.java:192)
[ProfilingSystem]       at
org.jboss.ejb.StatelessSessionContainer.invoke(StatelessSessionContainer.jav
a:271)
[ProfilingSystem]       at
org.jboss.ejb.plugins.jrmp.server.JRMPContainerInvoker.invoke(JRMPContainerI
nvoker.java:163)
[ProfilingSystem]       at java.lang.reflect.Method.invoke(Native Method)
[ProfilingSystem]       at sun.rmi.server.UnicastServerRef.dispatch(Unknown
Source)
[ProfilingSystem]       at sun.rmi.transport.Transport$1.run(Unknown Source)
[ProfilingSystem]       at java.security.AccessController.doPrivileged(Native
Method)
[ProfilingSystem]       at sun.rmi.transport.Transport.serviceCall(Unknown
Source)
[ProfilingSystem]       at
sun.rmi.transport.tcp.TCPTransport.handleMessages(Unknown Source)
[ProfilingSystem]       at
sun.rmi.transport.tcp.TCPTransport$ConnectionHandler.run(Unknown Source)
[ProfilingSystem]       at java.lang.Thread.run(Unknown Source)
[ProfilingSystem] XAException: tx=OracleXid [ID=257, Global=shahar-ws/1,
Branch=] errorCode=XAER_RMERR
[ProfilingSystem] oracle.jdbc.xa.OracleXAException
[ProfilingSystem]       at
oracle.jdbc.xa.OracleXAResource.checkError(OracleXAResource.java:467)
[ProfilingSystem]       at
oracle.jdbc.xa.client.OracleXAResource.rollback(OracleXAResource.java:436)
[ProfilingSystem]       at
org.jboss.tm.TxCapsule.rollbackResources(TxCapsule.java:1385)
[ProfilingSystem]       at org.jboss.tm.TxCapsule.rollback(TxCapsule.java:364)
[ProfilingSystem]       at
org.jboss.tm.TransactionImpl.rollback(TransactionImpl.java:89)
[ProfilingSystem]       at
org.jboss.ejb.plugins.TxInterceptorCMT.runWithTransactions(TxInterceptorCMT.
java:307)
[ProfilingSystem]       at
org.jboss.ejb.plugins.TxInterceptorCMT.invoke(TxInterceptorCMT.java:99)
[ProfilingSystem]       at
org.jboss.ejb.plugins.SecurityInterceptor.invoke(SecurityInterceptor.java:14
4)
[ProfilingSystem]       at
org.jboss.ejb.plugins.LogInterceptor.invoke(LogInterceptor.java:192)
[ProfilingSystem]       at
org.jboss.ejb.StatelessSessionContainer.invoke(StatelessSessionContainer.jav
a:271)
[ProfilingSystem]       at
org.jboss.ejb.plugins.jrmp.server.JRMPContainerInvoker.invoke(JRMPContainerI
nvoker.java:163)
[ProfilingSystem]       at java.lang.reflect.Method.invoke(Native Method)
[ProfilingSystem]       at sun.rmi.server.UnicastServerRef.dispatch(Unknown
Source)
[ProfilingSystem]       at sun.rmi.transport.Transport$1.run(Unknown Source)
[ProfilingSystem]       at java.security.AccessController.doPrivileged(Native
Method)
[ProfilingSystem]       at sun.rmi.transport.Transport.serviceCall(Unknown
Source)
[ProfilingSystem]       at
sun.rmi.transport.tcp.TCPTransport.handleMessages(Unknown Source)
[ProfilingSystem]       at
sun.rmi.transport.tcp.TCPTransport$ConnectionHandler.run(Unknown Source)
[ProfilingSystem]       at java.lang.Thread.run(Unknown Source)
[ProfilingSystem] XAException: tx=OracleXid [ID=257, Global=shahar-ws/1,
Branch=] errorCode=XAER_RMERR
[ProfilingSystem] oracle.jdbc.xa.OracleXAException
[ProfilingSystem]       at
oracle.jdbc.xa.OracleXAResource.checkError(OracleXAResource.java:467)
[ProfilingSystem]       at
oracle.jdbc.xa.client.OracleXAResource.rollback(OracleXAResource.java:436)
[ProfilingSystem]       at
org.jboss.tm.TxCapsule.rollbackResources(TxCapsule.java:1385)
[ProfilingSystem]       at org.jboss.tm.TxCapsule.rollback(TxCapsule.java:364)
[ProfilingSystem]       at
org.jboss.tm.TransactionImpl.rollback(TransactionImpl.java:89)
[ProfilingSystem]       at
org.jboss.ejb.plugins.TxInterceptorCMT.runWithTransactions(TxInterceptorCMT.
java:307)
[ProfilingSystem]       at
org.jboss.ejb.plugins.TxInterceptorCMT.invoke(TxInterceptorCMT.java:99)
[ProfilingSystem]       at
org.jboss.ejb.plugins.SecurityInterceptor.invoke(SecurityInterceptor.java:14
4)
[ProfilingSystem]       at
org.jboss.ejb.plugins.LogInterceptor.invoke(LogInterceptor.java:192)
[ProfilingSystem]       at
org.jboss.ejb.StatelessSessionContainer.invoke(StatelessSessionContainer.jav
a:271)
[ProfilingSystem]       at
org.jboss.ejb.plugins.jrmp.server.JRMPContainerInvoker.invoke(JRMPContainerI
nvoker.java:163)
[ProfilingSystem]       at java.lang.reflect.Method.invoke(Native Method)
[ProfilingSystem]       at sun.rmi.server.UnicastServerRef.dispatch(Unknown
Source)
[ProfilingSystem]       at sun.rmi.transport.Transport$1.run(Unknown Source)
[ProfilingSystem]       at java.security.AccessController.doPrivileged(Native
Method)
[ProfilingSystem]       at sun.rmi.transport.Transport.serviceCall(Unknown
Source)
[ProfilingSystem]       at
sun.rmi.transport.tcp.TCPTransport.handleMessages(Unknown Source)
[ProfilingSystem]       at
sun.rmi.transport.tcp.TCPTransport$ConnectionHandler.run(Unknown Source)
[ProfilingSystem]       at java.lang.Thread.run(Unknown Source)
[ProfilingSystem] XAException: tx=OracleXid [ID=257, Global=shahar-ws/1,
Branch=] errorCode=XAER_RMERR
[ProfilingSystem] oracle.jdbc.xa.OracleXAException
[ProfilingSystem]       at
oracle.jdbc.xa.OracleXAResource.checkError(OracleXAResource.java:467)
[ProfilingSystem]       at
oracle.jdbc.xa.client.OracleXAResource.rollback(OracleXAResource.java:436)
[ProfilingSystem]       at
org.jboss.tm.TxCapsule.rollbackResources(TxCapsule.java:1385)
[ProfilingSystem]       at org.jboss.tm.TxCapsule.rollback(TxCapsule.java:364)
[ProfilingSystem]       at
org.jboss.tm.TransactionImpl.rollback(TransactionImpl.java:89)
[ProfilingSystem]       at
org.jboss.ejb.plugins.TxInterceptorCMT.runWithTransactions(TxInterceptorCMT.
java:307)
[ProfilingSystem]       at
org.jboss.ejb.plugins.TxInterceptorCMT.invoke(TxInterceptorCMT.java:99)
[ProfilingSystem]       at
org.jboss.ejb.plugins.SecurityInterceptor.invoke(SecurityInterceptor.java:14
4)
[ProfilingSystem]       at
org.jboss.ejb.plugins.LogInterceptor.invoke(LogInterceptor.java:192)
[ProfilingSystem]       at
org.jboss.ejb.StatelessSessionContainer.invoke(StatelessSessionContainer.jav
a:271)
[ProfilingSystem]       at
org.jboss.ejb.plugins.jrmp.server.JRMPContainerInvoker.invoke(JRMPContainerI
nvoker.java:163)
[ProfilingSystem]       at java.lang.reflect.Method.invoke(Native Method)
[ProfilingSystem]       at sun.rmi.server.UnicastServerRef.dispatch(Unknown
Source)
[ProfilingSystem]       at sun.rmi.transport.Transport$1.run(Unknown Source)
[ProfilingSystem]       at java.security.AccessController.doPrivileged(Native
Method)
[ProfilingSystem]       at sun.rmi.transport.Transport.serviceCall(Unknown
Source)
[ProfilingSystem]       at
sun.rmi.transport.tcp.TCPTransport.handleMessages(Unknown Source)
[ProfilingSystem]       at
sun.rmi.transport.tcp.TCPTransport$ConnectionHandler.run(Unknown Source)
[ProfilingSystem]       at java.lang.Thread.run(Unknown Source)
[ProfilingSystem] XAException: tx=OracleXid [ID=257, Global=shahar-ws/1,
Branch=] errorCode=XAER_RMERR
[ProfilingSystem] oracle.jdbc.xa.OracleXAException
[ProfilingSystem]       at
oracle.jdbc.xa.OracleXAResource.checkError(OracleXAResource.java:467)
[ProfilingSystem]       at
oracle.jdbc.xa.client.OracleXAResource.rollback(OracleXAResource.java:436)
[ProfilingSystem]       at
org.jboss.tm.TxCapsule.rollbackResources(TxCapsule.java:1385)
[ProfilingSystem]       at org.jboss.tm.TxCapsule.rollback(TxCapsule.java:364)
[ProfilingSystem]       at
org.jboss.tm.TransactionImpl.rollback(TransactionImpl.java:89)
[ProfilingSystem]       at
org.jboss.ejb.plugins.TxInterceptorCMT.runWithTransactions(TxInterceptorCMT.
java:307)
[ProfilingSystem]       at
org.jboss.ejb.plugins.TxInterceptorCMT.invoke(TxInterceptorCMT.java:99)
[ProfilingSystem]       at
org.jboss.ejb.plugins.SecurityInterceptor.invoke(SecurityInterceptor.java:14
4)
[ProfilingSystem]       at
org.jboss.ejb.plugins.LogInterceptor.invoke(LogInterceptor.java:192)
[ProfilingSystem]       at
org.jboss.ejb.StatelessSessionContainer.invoke(StatelessSessionContainer.jav
a:271)
[ProfilingSystem]       at
org.jboss.ejb.plugins.jrmp.server.JRMPContainerInvoker.invoke(JRMPContainerI
nvoker.java:163)
[ProfilingSystem]       at java.lang.reflect.Method.invoke(Native Method)
[ProfilingSystem]       at sun.rmi.server.UnicastServerRef.dispatch(Unknown
Source)
[ProfilingSystem]       at sun.rmi.transport.Transport$1.run(Unknown Source)
[ProfilingSystem]       at java.security.AccessController.doPrivileged(Native
Method)
[ProfilingSystem]       at sun.rmi.transport.Transport.serviceCall(Unknown
Source)
[ProfilingSystem]       at
sun.rmi.transport.tcp.TCPTransport.handleMessages(Unknown Source)
[ProfilingSystem]       at
sun.rmi.transport.tcp.TCPTransport$ConnectionHandler.run(Unknown Source)
[ProfilingSystem]       at java.lang.Thread.run(Unknown Source)
[ProfilingSystem] XAException: tx=OracleXid [ID=257, Global=shahar-ws/1,
Branch=] errorCode=XAER_RMERR
[ProfilingSystem] oracle.jdbc.xa.OracleXAException
[ProfilingSystem]       at
oracle.jdbc.xa.OracleXAResource.checkError(OracleXAResource.java:467)
[ProfilingSystem]       at
oracle.jdbc.xa.client.OracleXAResource.rollback(OracleXAResource.java:436)
[ProfilingSystem]       at
org.jboss.tm.TxCapsule.rollbackResources(TxCapsule.java:1385)
[ProfilingSystem]       at org.jboss.tm.TxCapsule.rollback(TxCapsule.java:364)
[ProfilingSystem]       at
org.jboss.tm.TransactionImpl.rollback(TransactionImpl.java:89)
[ProfilingSystem]       at
org.jboss.ejb.plugins.TxInterceptorCMT.runWithTransactions(TxInterceptorCMT.
java:307)
[ProfilingSystem]       at
org.jboss.ejb.plugins.TxInterceptorCMT.invoke(TxInterceptorCMT.java:99)
[ProfilingSystem]       at
org.jboss.ejb.plugins.SecurityInterceptor.invoke(SecurityInterceptor.java:14
4)
[ProfilingSystem]       at
org.jboss.ejb.plugins.LogInterceptor.invoke(LogInterceptor.java:192)
[ProfilingSystem]       at
org.jboss.ejb.StatelessSessionContainer.invoke(StatelessSessionContainer.jav
a:271)
[ProfilingSystem]       at
org.jboss.ejb.plugins.jrmp.server.JRMPContainerInvoker.invoke(JRMPContainerI
nvoker.java:163)
[ProfilingSystem]       at java.lang.reflect.Method.invoke(Native Method)
[ProfilingSystem]       at sun.rmi.server.UnicastServerRef.dispatch(Unknown
Source)
[ProfilingSystem]       at sun.rmi.transport.Transport$1.run(Unknown Source)
[ProfilingSystem]       at java.security.AccessController.doPrivileged(Native
Method)
[ProfilingSystem]       at sun.rmi.transport.Transport.serviceCall(Unknown
Source)
[ProfilingSystem]       at
sun.rmi.transport.tcp.TCPTransport.handleMessages(Unknown Source)
[ProfilingSystem]       at
sun.rmi.transport.tcp.TCPTransport$ConnectionHandler.run(Unknown Source)
[ProfilingSystem]       at java.lang.Thread.run(Unknown Source)
[ProfilingSystem] TRANSACTION ROLLBACK EXCEPTION:javax.ejb.CreateException:
Could not create entity:java.lang.RuntimeException: Unable to deregister
with TransactionManager: java.lang.IllegalArgumentException: xaRes not
enlisted; nested exception is:
        java.rmi.RemoteException: javax.ejb.CreateException: Could not create
entity:java.lang.RuntimeException: Unable to deregister with
TransactionManager: java.lang.IllegalArgumentException: xaRes not enlisted;
nested exception is:
        javax.transaction.TransactionRolledbackException:
javax.ejb.CreateException: Could not create
entity:java.lang.RuntimeException: Unable to deregister with
TransactionManager: java.lang.IllegalArgumentException: xaRes not enlisted;
nested exception is:
        java.rmi.RemoteException: javax.ejb.CreateException: Could not create
entity:java.lang.RuntimeException: Unable to deregister with
TransactionManager: java.lang.IllegalArgumentException: xaRes not enlisted
[ProfilingSystem] javax.transaction.TransactionRolledbackException:
javax.ejb.CreateException: Could not create
entity:java.lang.RuntimeException: Unable to deregister with
TransactionManager: java.lang.IllegalArgumentException: xaRes not enlisted;
nested exception is:
[ProfilingSystem]       java.rmi.RemoteException: javax.ejb.CreateException:
Could not create entity:java.lang.RuntimeException: Unable to deregister
with TransactionManager: java.lang.IllegalArgumentException: xaRes not
enlisted
[ProfilingSystem] java.rmi.RemoteException: javax.ejb.CreateException: Could
not create entity:java.lang.RuntimeException: Unable to deregister with
TransactionManager: java.lang.IllegalArgumentException: xaRes not enlisted
[ProfilingSystem]       at
com.tikalknowledge.ksphere.profiling.session.ProfilingSystemClass.addKnowled
geRate(ProfilingSystemClass.java:146)
[ProfilingSystem]       at java.lang.reflect.Method.invoke(Native Method)
[ProfilingSystem]       at
org.jboss.ejb.StatelessSessionContainer$ContainerInterceptor.invoke(Stateles
sSessionContainer.java:472)
[ProfilingSystem]       at
org.jboss.ejb.plugins.StatelessSessionInstanceInterceptor.invoke(StatelessSe
ssionInstanceInterceptor.java:87)
[ProfilingSystem]       at
org.jboss.ejb.plugins.TxInterceptorCMT.invokeNext(TxInterceptorCMT.java:133)
[ProfilingSystem]       at
org.jboss.ejb.plugins.TxInterceptorCMT.runWithTransactions(TxInterceptorCMT.
java:263)
[ProfilingSystem]       at
org.jboss.ejb.plugins.TxInterceptorCMT.invoke(TxInterceptorCMT.java:99)
[ProfilingSystem]       at
org.jboss.ejb.plugins.SecurityInterceptor.invoke(SecurityInterceptor.java:14
4)
[ProfilingSystem]       at
org.jboss.ejb.plugins.LogInterceptor.invoke(LogInterceptor.java:192)
[ProfilingSystem]       at
org.jboss.ejb.StatelessSessionContainer.invoke(StatelessSessionContainer.jav
a:271)
[ProfilingSystem]       at
org.jboss.ejb.plugins.jrmp.server.JRMPContainerInvoker.invoke(JRMPContainerI
nvoker.java:237)
[ProfilingSystem]       at
org.jboss.ejb.plugins.jrmp.interfaces.StatelessSessionProxy.invoke(Stateless
SessionProxy.java:152)
[ProfilingSystem]       at
org.jboss.proxy.ProxyCompiler$Runtime.invoke(ProxyCompiler.java:74)
[ProfilingSystem]       at
com.tikalknowledge.ksphere.profiling.session.ProfilingSystem$Proxy.addKnowle
dgeRate(Unknown Source)
[ProfilingSystem]       at
com.tikalknowledge.ksphere.profiling.session.ProfilingSystemClass.addKnowled
geRate(ProfilingSystemClass.java:127)
[ProfilingSystem]       at java.lang.reflect.Method.invoke(Native Method)
[ProfilingSystem]       at
org.jboss.ejb.StatelessSessionContainer$ContainerInterceptor.invoke(Stateles
sSessionContainer.java:472)
[ProfilingSystem]       at
org.jboss.ejb.plugins.StatelessSessionInstanceInterceptor.invoke(StatelessSe
ssionInstanceInterceptor.java:87)
[ProfilingSystem]       at
org.jboss.ejb.plugins.TxInterceptorCMT.invokeNext(TxInterceptorCMT.java:133)
[ProfilingSystem]       at
org.jboss.ejb.plugins.TxInterceptorCMT.runWithTransactions(TxInterceptorCMT.
java:263)
[ProfilingSystem]       at
org.jboss.ejb.plugins.TxInterceptorCMT.invoke(TxInterceptorCMT.java:99)
[ProfilingSystem]       at
org.jboss.ejb.plugins.SecurityInterceptor.invoke(SecurityInterceptor.java:14
4)
[ProfilingSystem]       at
org.jboss.ejb.plugins.LogInterceptor.invoke(LogInterceptor.java:192)
[ProfilingSystem]       at
org.jboss.ejb.StatelessSessionContainer.invoke(StatelessSessionContainer.jav
a:271)
[ProfilingSystem]       at
org.jboss.ejb.plugins.jrmp.server.JRMPContainerInvoker.invoke(JRMPContainerI
nvoker.java:163)
[ProfilingSystem]       at java.lang.reflect.Method.invoke(Native Method)
[ProfilingSystem]       at sun.rmi.server.UnicastServerRef.dispatch(Unknown
Source)
[ProfilingSystem]       at sun.rmi.transport.Transport$1.run(Unknown Source)
[ProfilingSystem]       at java.security.AccessController.doPrivileged(Native
Method)
[ProfilingSystem]       at sun.rmi.transport.Transport.serviceCall(Unknown
Source)
[ProfilingSystem]       at
sun.rmi.transport.tcp.TCPTransport.handleMessages(Unknown Source)
[ProfilingSystem]       at
sun.rmi.transport.tcp.TCPTransport$ConnectionHandler.run(Unknown Source)
[ProfilingSystem]       at java.lang.Thread.run(Unknown Source)



--
--------------------------------------------------------------
To subscribe:        [EMAIL PROTECTED]
To unsubscribe:      [EMAIL PROTECTED]
Problems?:           [EMAIL PROTECTED]

Reply via email to