Maybe anyone can help me with a problem I have with cloverleaf.
I am simulating a query connection by running a tcl after an outbound thread receives a QRY^A19 message from an inbound thread. The tcl performs an sql on some database.
After the SQL-read a message is created as follows:
set ackmh [msgcreate -recover -type reply “ADR^A19”]
msgmetaset $ackmh DESTCONN [msgmetaget $mh SOURCECONN]
msgset $ackmh $replyMsg
Finally I KILL the original message and CONTINUE the new message
return “{KILL $mh} {CONTINUE $ackmh}
Everything works fine in the testtool. also the reply message is created correctly.
In my configuration I have 2 threads. The inbound thread only sends the message. The outbound thread performs the tcl. Furthermore, in the “route replies” tab of the outbound thread I have configured that ADR_A19 should be sent back to the inbound thread. Unfortunately, I do not receive anything back
What am I missing?
Thnx for your response.