I try to invoke a remote process via RMI from Sun Solaris SunOs5.7
with jdk 1.1.7 to another Solaris SunOs5.6 1.1.3 and obtain error
java.net.UnknownHostException
The way I configure the client:
AmtrixProcessInterface amtrixProcess = (AmtrixProcessInterface)
Naming.lookup("rmi://x/AmtrixProcessInterface");
x is a valid IP like 10.20.a.b
The way I configure my server
Naming.rebind("//x/AmtrixProcessInterface", new AmtrixProcess());