Case:
We got a server and a client.
On the server side, we have:
Server (Socket bla bla bla)
IDocument - Interface for Documents
Message - Implements document
On the client side we have
Client - Socket bla bla bla
IDocument - Same interface
Now he claims that we with ObjectOutputStream, can send this Message Object to the Client, and execute its methods, because both the server AND the client have the IDocument interface.
Now he claimed this and told us today, that we should use this, so the client never will be affected by new types of Documents.
It's an assignment for tomorrow that we must do, and I don't have much time left. So either I figure out if this is even possible, or find another way to do it!
(And he's not talking about RMI, we already covered this, he claims we can distribute executable objects to client which don't have the class file, but only the interface describing the methods.)
Please help!
