Hi,
I am using RMI service and facing a condition when implementing a simple example. ı use a method that is
public void myMethod()
{
System.out.println("in MyMethod");
}
At the client side when I write myApp.myMethod(); the string "in MyMethod" is displayed in the console of Server!!!
Doesnt have to this string to be displayed at the Client console?
