I’ve just been doing some checking on this to see if its suitable for a requirement I have to complete where I need to send a query message and return an ACK. I have found the results I get are different from the documentation.
Anyone any idea what I am doing wrong/missing?
I’ve tried setting a few of the usual meta elements but the results remain unchanged.
I have an ‘in’ thread (static) routed to the ‘upoc’ thread and am resending messages on the ‘in’ thread with the message content as the disposition. The upoc code simply prints the message and returns with the disposition.
The result is taken from the log file with debug in
Disposition Result
CONTINUE Writing message succeeded … Invoking SENDOK
SEND Writing message succeeded … Invoking SENDOK
KILL Unsupported disposition from protocol write TPS: KILL
PROTO Unsupported disposition from protocol write TPS: PROTO
OVER Unsupported disposition from protocol write TPS: OVER
ERROR Writing message failed, Requeuing undelivered message …
and fills up the log file!!
Tcl Code
…
set myDisp [msgget $aMsgId]
Print GlobQCU$HciConnName “RUN disposition: $myDisp” I
set myDisp “{$myDisp $aMsgId}”
return $myDisp
…