I have a program called Test.p
. The program calls another program ServerTest.p
via an appserver call.
In ServerTest.p
, I want to know the name of the program that called (in this case Test.p
). I tried using the program-name()
function but it only gives me a stack trace for the current appserver.
How can I find out what program called ServerTest.p
?