java - separate rmiregistry and server application -


i'm developing basic application starts rmiregistry @ server:

try {             // create registry , bind name , object.             registry = locateregistry.createregistry(thisport);             registry.rebind("rmiserver", this);         }         catch (remoteexception e) {             throw e;         } 

i want run registry on machine. possible separate this?

i want run registry on machine. possible separate this?

its possible. if registry running on different machine, can locate using locateregistry.getregistry(host, port)


Comments

Popular posts from this blog

unicode - Are email addresses allowed to contain non-alphanumeric characters? -

c++ - Convert big endian to little endian when reading from a binary file -

C#: Application without a window or taskbar item (background app) that can still use Console.WriteLine() -