I'm currently writing a simple client/server in Java using sockets. I want the server to make decisions based on different "commands" and/or serialized objects that are received from the client via the socket, and vice-versa.
Something like:
[Receive Command 'DoSomething' From Client]
[Call Method 'DoSomething' on the Server]
[Send result/status to Client]
etc...
Is there a convention for flow control like this using ordinary socket communication, perhaps with serialization? Should I be using RMI in Java instead?