Hi,
I have a production with a BS calling a BP calling another BP and so on and finally a BO. All calls are made using SendRequestSync.
The initial request is passed by value. The response is passed by ref and I allocate memory for it in the BO, hoping that it will go back to the initial caller in the BS, but it does not.
It looks like the following:
// In BS, do not allocate response, call BP1
I have tried many combinations of reference of values, does not work. Why is the response NULLed and I can't retrieve it in the initial caller ?
.png)
705
.png)


