| You hould be safe calling the ObjectBroker API from inside a CICS
C Transaction provided that you (and the API call!) obey the
documented restriction on what system calls can be made from inside
a transaction.
You need to pay attention to making sure that the transaction does end
up in a sleep or similar (otherwise you will quickly run out of
CICS application servers). Also be careful around resources created
by the API call. Consider the impact that say a force purge of the CICS
task might have ? As an example thread creation and mutex handling
is fairly dangerous. Finally, do not mess with the signal handling
code. Installing you own signal handling could modify the behaviour
of your CICS system!
Good luck!
-gerry
|