By calling the
awTxBeginTransaction function you can begin a transaction on the subscribing client. The following example contains an excerpt that shows the use of the
awTxBeginTransaction function to create a subscribing client:
. . .
err = awTxBeginTransaction(txclient2,"1");
if (!verifyNoError(__FILE__,"awNewBrokerTxContext",__LINE__,err)) {
return 0;
}
. . .