Class java.rmi.registry.LocateRegistry
All Packages Class Hierarchy This Package Previous Next Index
Class java.rmi.registry.LocateRegistry
java.lang.Object
|
+----java.rmi.registry.LocateRegistry
public final class LocateRegistry
extends Object
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(...);
See Also:
Registry
createRegistry(int)
Create and export a registry on the local host.
getRegistry()
Returns the remote object Registry for the local host.
getRegistry(int)
Returns the remote object Registry on the current host at the
specified port.
getRegistry(String)
Returns the remote object Registry on the specified host at a
default (i.e., well-known) port number.
getRegistry(String, int)
Returns the remote object Registry on the specified host at the
specified port.
getRegistry
public static Registry getRegistry() throws RemoteException
Returns the remote object Registry for the local host.
getRegistry
public static Registry getRegistry(int port) throws RemoteException
Returns the remote object Registry on the current host at the
specified port.
getRegistry
public static Registry getRegistry(String host) throws RemoteException, UnknownHostException
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.
getRegistry
public static Registry getRegistry(String host,
int port) throws RemoteException, UnknownHostException
Returns the remote object Registry on the specified host at the
specified port. If port
Wyszukiwarka
Podobne podstrony:
java rmi registry RegistryHandlerPackage java rmi registryjava rmi registry Registryjava rmi server RMISocketFactoryjava rmi AccessExceptionjava rmi server Operationjava rmi server ObjIDjava rmi Namingjava rmi server RMIFailureHandlerjava rmi RMISecurityExceptionjava rmi NotBoundExceptionjava rmi UnknownHostExceptionjava rmi server Skeletonjava rmi server RemoteCalljava rmi dgc Leasejava rmi server RemoteObjectjava rmi dgc DGCjava rmi server UnicastRemoteObjectJava RMI Tutorialwięcej podobnych podstron