I am trying to build a WCF client for a Java Socket server which talks on a custom XML messages. I have created my own custom binding with MessageEncoder and netTCP ...
I'm sending a string message from my client application to my server application using sockets. I'm using DataOutputStream to send from client and DataInputStream to receive the message in my server. ...
i have a java client-server app in java, both using the same connection class that contains both send/receive messages.
for some reason, some of the messages i send are received in a ...
I've created a client/server based game in which the server collects requests through TCP sockets and sends back the movement information and such through UDP without any ack (I really have ...
If you're losing data then there's most likely a bug in your code, it's not that it's somebody else's fault for not being fast enough. I could speculate that you aren't synchronizing the code that appends to your GUI component, but I don't see that part of the code. That's where I would start looking. Or at least I would put ...