Log in to follow, share, and participate in this community.
Article Narayana /qa tests - How to run
Narayana /qa tests - How to run/qa module which can be found at the Narayana repository contains an extensive set of tests for verification of transaction manager functionality in a distributed environment where communication runs over iiop. In oth...
Thread C API for distributed transaction management
C API for distributed transaction managementI have a C application where we are planning to replace Tuxedo and Oracle with Narayana and PostgreSQL. But PostgreSQL does not have a C API for distributed transaction management. I want to check whether we can avo...
Thread Narayana JTS and Blacktie XATMI Java Implementation
Narayana JTS and Blacktie XATMI Java ImplementationI am trying to locate the Narayana JTS and Blacktie XTAMI's Java implementation in github code. I found blacktie xatmi project "https://github.com/jbosstm/narayana/tree/master/blacktie/jatmibroker-xatmi" but d...
Thread How to synchronize more than one datasource together
How to synchronize more than one datasource togetherI have three separated spring boot projects configured with Narayana and JPA * account-service : create new account * payment-service : create new payment * trx-service : just an endpoint to call account an...
Thread Using WildFly instance as an external transaction coordinator service
Using WildFly instance as an external transaction coordinator serviceI struggle with configuring an external transaction coordinator. According to https://developer.jboss.org/message/809802, all I need is the xts-environment property in my standalone.xml. My testing environment...
Thread How to share transactions between multiple threads
How to share transactions between multiple threadsHi, I have a configured nirayana standalone JTA and two REST endpoints 1. for beginning a transaction 2. using transaction @GetMapping("/starttx")
public String starttx() thr...
rollback transaction does not workI created a narayana-artemis-springboot project based on quickstart stock market sample but it does not rollback transaction in case of throwing exception and data will be saved to database. here is the full s...
Thread Firing an @Initialized(TransactionScoped.class) event
Firing an @Initialized(TransactionScoped.class) eventI wonder: should there be a CDI-specific wrapper around Narayana's TransactionManagerImple that fires an @Initialized(TransactionScoped.class)-qualified event? The specification says (in section 6.7): P...
Thread Distributed transaction with different vendors
Distributed transaction with different vendorsI working on a Java EE project (JPA) on Tomcat 7. I have 2 Persistent Units: one with Mysql managed by EclipseLink, one with MongoDB with Hibernate-ogm. I'm trying to understand how to configure the Mysql PU o...
Maximum transactions limitFew queries on Narayana transaction manager? what's the maximum number of transactions limit? Number of transactions per second? Is there any support contract we must acquire for using Narayana transaction manager ...
Multiple DataSources in one transactionHi all, I have been working a couple of weeks on a requirement that requires modifying some methods that are using transactions, the code between the transaction can read/update/delete/etc elements in the data...
narayana transction timeoutsHi Does anyone have a sample of how to change the default transaction timeout for transactions created using org.jboss.narayana.tomcat.jta.UserTransactionFactory in Tomcat's context.xml files ? Seems the defa...
Thread narayana-jta still at 5.9.0.Final; everything else at 5.9.1.Final?
narayana-jta still at 5.9.0.Final; everything else at 5.9.1.Final?Hello; is there a reason that narayana-jta is still at 5.9.0.Final? See https://search.maven.org/classic/#search%7Cga%7C1%7Cg%3A%22org.jboss.narayana.jta%22 . 5.9.1.Final would contain my prior changes to ...
How to retrieve the transaction Id ?Hi all ! I need to test a distributed transaction using EJB CMT . As it's a production environment I'd need some helper class that displays the TransactionId (so that I'm sure that the transaction propagated correctly...
Blacktie Data buffer - 2D char arrayHi, I want to create 2D (two dimensional) char array data buffer for my C structure using Blacktie. How to do this (syntax)? Ex: this is my C structure typedef struct mystruct { char input [200][4]...
JBossTransactionsWithSpringUsing JBossTS with the Spring Framework The Spring framework (http://www.springframework.org) allows pluggable transaction managers. If you need XA support for your Spring application then you need to plug in a...
Use Narayana JBoss with PostGreSQLHi, We are evaluating narayana wildly + blacktie to replace Tuxedo (which uses DB2, Oracle and Informix) I have read some useful posts here about how to set this up. I want to know if we can use Postg...
Thread Using Narayana to make two RESTful services transactional
Using Narayana to make two RESTful services transactionalHi, I have a REST web service( service 1) which calls another REST web service (service 2). Both are deployed into Wildfly10. If any exception occurs in service 1, I need to rollback updates made in serv...