Issue 772: Subtransactions question (transactions) Source: (, ) Nature: Uncategorized Issue Severity: Minor Summary: Summary: What happens if the transaction service does not support subtransactions and the following Java code is executed (find code in corresponding archive file)The create call in the TransactionFactory receives current (non-null) transaction in the service context. Should it ignore the current transaction and create another (flat) transaction? Resolution: Revised Text: Actions taken: October 14, 1997: received issue Discussion: End of Annotations:===== Return-Path: Date: Tue, 14 Oct 1997 09:16:38 -0700 From: Rob Nagler To: transactions@omg.org Subject: Question about CosTransactions behaviour I am implementing CosTransactions v1.1 as described in orbos/97-03-04. I have a few questions. I apologize in advance if this isn't the correct mailing list for such issues. 2) What happens if the transaction service doesn't support subtransactions and the following Java code is executed? current.begin(); org.omg.CosTransactions.Control control = transFactory.create(0); The create call in the TransactionFactory receives the current (non-null) transaction in the service context. Should it ignore the current transaction and simply create another (flat) transaction? It seems that way, because create can't raise SubtransactionsUnavailable.