vote up 2 vote down star

I'm working on a socket app in Ruby Shoes, and want to send a message to the server. The server expects the XML message, and then a null (0) character.

How can I send that in TCP Sockets in Ruby?

Thanks.

flag

1 Answer

vote up 2 vote down check

I found my own answer... The problem was not sending the NULL, it was a thread issue.

You can send a NULL as part of a string by just concatenating it on to the end of the string...

NULL = "\000"

... tc = tc + "</endtag>"

tc = tc + NULL

Socket.send(tc, 0)

link|flag

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.