TCP Server failing after first response
TCP Server failing after first response NOTE I rewrote this question for the bounty as i was able to figure out how to get the first question solved but didn't want to start a new question. the comments below pertain to the original question, not the revised. Description of Issue My tcp client executes querying the tcp server one time successfully, returns the response, and then subsequent requests to the server from the client fails. Also, if i terminate the client and reload it fails on the first attempt as well. Here's what my command prompt looks like: root@ubuntuT:/home/jon/gocode/udps# ./udpservtcpclient Text to send: SampleQuery Message from server: SampleResponse Text to send: SampleQuery ((End - No Response)) root@ubuntuT:/home/jon/gocode/udps# ./udpservtcpclient Text to send: SampleQuery ((End - No Response)) What I expect I expect to be able to query the tcp server from the tcp client endlessly, and have the tcp server return a response from the UDP Server every tim...
