Hello -
I have some working Distributed Object client/server skeleton code.
I can call remote methods but I don't see a way to have the remote
distributed object return anything other than an int return value to
the calling client.
In other words, I want the client to call a method in the remote
Distributed Object and have the remote method execute a command and
return a buffer of characters (the results) of size N bytes.
The only way I see to return the results at this point is to work
outside of DO and use a separate client/server socket connection for
data results to be passed back. But that takes away from the
advantage DO brings.