TCP implementations usually give to the applications only a stream-like interface, with no access to the individual packets. (Also, some routers/firewalls might want to repack the data in the TCP streams, which means that they do not necessarily arrive in the same blocks as sent.)
Thus we really need to use some packaging protocol on top of TCP (or really on top of any stream-pair).
A really simple protocol would be one line for each request/response, but this will work only with small data sizes (or you need to somehow escape embedded newlines).
If you want it more structured, you could use something XML-based (like XMPP): each request/response would be a complete XML element (including subelements, if necessary).
Also, if you want to use the request–response scheme, you will need to either say responses have to come in the same order as the requests were ordered (which disallows or at least complicates parallel processing on the server side for multiple requests on the same connection), or you will have to define request numbers, and the responses then will somehow include the request number they relate to.
As examples, HTTP uses the first approach (from 1.1 - before there was only one request/response pair for each connection), while the X protocol uses the second one.
For HTTP, there are already implementations around (both on client and on server side), and it can be made totally plain text (depending on the data you are sending).
Alternatively, we could build our protocol directly on a packet-based protocol like UDP. But this has the usual reliability problems of UDP, and we also need to use message-numbers (to relate responses to requests) or such - which could mean that we have to re-implement half of TCP again.
So, sorry, no real answer other than use HTTP.
response.get(). You could just read the socket later; the received input is buffered in the socket. But most likely the answer won't even have arrived when you try to get it later. – toto2 Jul 1 '11 at 13:48Future<String> response1 = remote.request("hello 1"); Future<String> response2 = remote.request("hello 2"); Future<String> response3 = remote.request("hello 3");and handle them separately at a later stage, perhaps after having done some intermediate data processing. Then a call toresponse2.get();will block or not depending if the response arrived or not. It's very convenient to organize your code that way, to be able to pass 'future responses' as an object and so on. – arnaud Jul 1 '11 at 14:28String handleRequest(String msg)to implement and alisten(port, requestHandler)– arnaud Jul 2 '11 at 5:28