This class is used to obtain the bootstrap Registry on a particular
host (including your local host). The following example demonstrates usage
(minus exception handling):
Server wishes to make itself available to others:
SomeService service = ...; // remote object for service
Registry registry = LocateRegistry.getRegistry();
registry.bind("I Serve", service);
The client wishes to make requests of the above service:
Registry registry = LocateRegistry.getRegistry("foo.services.com");
SomeService service = (SomeService)registry.lookup("I Serve");
service.requestService(...);
Returns the remote object Registry on the specified host at a
default (i.e., well-known) port number. If the host
String reference is null, the local
host is used.
Returns the remote object Registry on the specified host at the
specified port. If port <= 0, the default Registry port number
is used. If the host String reference is
null, the local host is used.