* [ 1666919 ] Transaction handling different for local and remote process
This commit is contained in:
parent
40d6e76458
commit
32c2a8ecbb
|
@ -260,7 +260,9 @@ public class ServerBean implements SessionBean
|
||||||
return pi;
|
return pi;
|
||||||
}
|
}
|
||||||
// Start Process
|
// Start Process
|
||||||
Trx trx = Trx.get(Trx.createTrxName("ServerPrc"), true);
|
String trxName = pi.getTransactionName();
|
||||||
|
if (trxName == null) trxName = Trx.createTrxName("ServerPrc");
|
||||||
|
Trx trx = Trx.get(trxName, true);
|
||||||
try
|
try
|
||||||
{
|
{
|
||||||
boolean ok = process.startProcess (ctx, pi, trx);
|
boolean ok = process.startProcess (ctx, pi, trx);
|
||||||
|
|
Loading…
Reference in New Issue