Hi folks,
I've got a C# client which can currently communicate with a C# server.
I am considering re-writing the server in Java (to make it work better on Linux).
Currently, the C# setup uses BinaryReader/Writer on top of a Network Stream on top of a Socket.
Is there some Java implementation that would be compatible with the C# end?
If not, what should I change? I'm hopeing I don't have to deal with raw Socket data.....
Cheers :)
Jonny