Log in to follow, share, and participate in this community.
Thread TransactionManagerFactory
TransactionManagerFactoryhttp://jira.jboss.com/jira/browse/JBAS-3053 I need to inject the transaction manager in the ejb timer service, so is there a problem if I make: org.jboss.tm.TransactionManagerServiceMBean extend a new org.jboss.tm.T...
Fast file loggerHi Chaps- Quick question: Does JBoss Transactions have a fast file-based transaction logger component (like HOWL for example). I'm exploring the idea of how this can help us in JBoss Messaging.
Thread Announcement: JBoss signs Definitive Agreement to be acquire
Announcement: JBoss signs Definitive Agreement to be acquireI am personally excited to tell you that JBoss has accepted an acquisition offer from Red Hat. The goal of JBoss has always been to promote and accelerate the adoption of Open Source and the Professional Open Source M...
JBoss Transactions 4.2 releasesWe've just released JBoss Transactions 4.2 (the re-badged version of the Arjuna Transaction Service). You can obtain the downloads and documentation by following links from http://labs.jboss.com/portal/index.html?ctrl...
Thread org.jboss.tm.XidImpl interoperability between 3.2.x and 4.0.
org.jboss.tm.XidImpl interoperability between 3.2.x and 4.0.Not sure if this concerns the new TM implementation, but I don't see other Tx forum to post. We have incompatibilities in the way org.jboss.tm.XidImpl is implemented between 3.2.x and 4.0.x. This prevents 3.2.x serv...
JASS - JSR-95Hello there, i'll write my diploma thesis about advanced transaction model's in Java and i'll try to implement a prototype for JSR-95. The basis for this might be http://forge.objectweb.org/projects/jass/, but is thi...
UserTransactionHi at all, i'm modifying the UserTransaction to implent "Exactly once" behaviour... I've modified the getUserTransaction() method in the class BaseSessionContext adding this line (to allow the downcast): return (Use...
Xid padding not needed with Oracle 10gFound this out while testing DTM recovery. I didn't check other 10g releases, but Xid padding is a no-op with Oracle 10g release 10.1.0.3.0. Everything works with and without padding, even transaction recovery after a...
Thread mt-issues with org.jboss.tm.TransactionLocal
mt-issues with org.jboss.tm.TransactionLocalAlthough I started examining the TransactionLocal backends for thread-safety (i.e. TransactionLocalDelegateImpl + TransactionLocalSynchronization & TxManager + TransactionImpl), it seems to me that TransactionLoca...
TransactionLocalDelegateImplA related question to my previous post, since I am there: TransactionLocalDelegateImpl as an alternative implementation of TransactionLocalDelegate, when a TransactionManager other than TxManager is used, uses the 't...
disassociateThread on tm.suspend()Currently, we don't disassociate the calling thread from the tx when we suspend() (we just nullify the ti.tx reference) :
public Transaction suspend() throws SystemException
{
ThreadInfo ti = getThreadInfo();
Tr...
cleaning up after recoveryI'm implementing creating a generic Recoverable that wraps a JCA ManagedConnection. How do I clean up after I'm done with the managed connection? Do I call managedConnection.destroy(), cleanup() or both? thanks
pluggable Xid padding in JCAThis is in regards to: http://jira.jboss.com/jira/browse/JBAS-1405 I was looking on how to implement this and it seems the approach would be to create a XAResource proxy whenever the TxConnectionManager.TxConnection...
Recoverable registration implementationThis is in regards to: http://jira.jboss.com/jira/browse/JBAS-1408 After looking at the JCA code a bunch, it seems that the best place for registering the recoverable might be in the RARDeployment class? After the M...
Where should UserTransaction live?A modularization issue... I have some (still uncommitted) code that uses the DTM to implement UserTransaction over JBoss remoting. The code is very simple and consists on just two classes: org.jboss.tm.remoting.clie...
SynchronizationHello I need to register a Synchronization object which will receive afterCompletion() invocations - or the equivalent - AFTER all resources in the transaction have been committed. I could register against the javax...
JBoss JTS specification feeback requestFrancisco Reverbel published specification draft for the new JBoss JTS implementation. Please review and comment: http://www.jboss.org/wiki/Wiki.jsp?page=JBossJTS
Last resource gambit implemented wrong?I don't think last resource gambit is implemented correctly. For it to work, you will have to reuse the same DB connection as the TX recovery logger and let the TX recovery logger do the commit. Right now, the commit ...