You can use custom server trace to debug problems, even when the custom server is in production.
When AIX system tracing is turned on, Blueworx Voice Response traces entry and exit from all custom server library subroutine calls. You can use this trace to see if an error occurs in processing a custom server function, or if the wrong parameters are being passed to a custom server library subroutine. This might help to explain unexpected behavior.
If you want to trace specific events occurring in a custom server, see Trace points.
trace -a -1
trace -a -1 -j 456
The -a flag indicates that the trace is to be started in the background.
See the Blueworx Voice Response for AIX: Problem Determination information for other ways you can start and stop Blueworx Voice Response trace.
trcstop -1
AIX writes the binary output to /var/adm/ras/trcfile.1.
print_trace | grep CA_LIB > ca.traceIt filters the entries for custom server library subroutine calls, and writes them to the file ca.trace.
view ca.trace
For an explanation of the entries in the trace file, see How to interpret a custom server trace.