| Author |
RMI registry - inside or out?
|
David Duran
Ranch Hand
Joined: Feb 11, 2002
Posts: 122
|
|
|
Does anyone know of any pros/cons to starting the RMI registry from within my application as opposed to externally via the rmiregistry exectutable?
|
 |
Gopi Kishore
Greenhorn
Joined: Sep 27, 2003
Posts: 15
|
|
Runtime rt = Runtime.getRuntime(); rt.exec("C:/jbuilder5/jdk1.3/bin/rmiregistry.exe"); Try these two steps putting in any class main method Cheers Gopi
|
 |
David Duran
Ranch Hand
Joined: Feb 11, 2002
Posts: 122
|
|
Here's another way: Registry registry = LocateRegistry.createRegistry(); // default port I use the below method to try and start rmid but to no success.
|
 |
 |
|
|
subject: RMI registry - inside or out?
|
|
|