I found my own answer ... The problem is not sending NULL, this is a thread problem.
You can send NULL as part of a string by simply concatenating it to the end of the string ...
NULL = "\ 000"
... tc = tc + "</endtag>"
tc = tc + NULL
Socket.send (tc, 0)
source
share