I am trying to connect a client with gui with a server withoout gui. Connection is being done, but i cant see any messages between these two apps.
(i should get SERVER HERE
After compairing this code with some I have written in the past using sockets , I noticed you are using output.write(string) and input.readline() - These do not mix well, readline() expects a newline and write does not give one.