I am wondering how this is done.Suppose i have a client application and it has this method restartMachine();
How can i make this method to execute on the client from the server?.
I am wondering how this is done.Suppose i have a client application and it
Share
Usually you will use protocols like IIOP, which delivers CORBA. this will allow for an interface, or a contract, to define common object structures between the server and the client.
See the specs on OMG for further reading.