Uses of Class
java.rmi.RemoteException
Package
Description
Provides the RMI package.
Provides classes and interface for RMI distributed
garbage-collection (DGC).
Provides a class and two interfaces for the RMI registry.
Provides classes and interfaces for supporting the server side of RMI.
The RMI connector is a connector for the JMX Remote API that
uses RMI to transmit client requests to a remote MBean server.
-
Uses of RemoteException in java.rmi
Modifier and TypeClassDescriptionclass
AnAccessException
is thrown by certain methods of thejava.rmi.Naming
class (specificallybind
,rebind
, andunbind
) to indicate that the caller does not have permission to perform the action requested by the method call.class
AConnectException
is thrown if a connection is refused to the remote host for a remote method call.class
AConnectIOException
is thrown if anIOException
occurs while making a connection to the remote host for a remote method call.class
AMarshalException
is thrown if ajava.io.IOException
occurs while marshalling the remote call header, arguments or return value for a remote method call.class
ANoSuchObjectException
is thrown if an attempt is made to invoke a method on an object that no longer exists in the remote virtual machine.class
AServerError
is thrown as a result of a remote method invocation when anError
is thrown while processing the invocation on the server, either while unmarshalling the arguments, executing the remote method itself, or marshalling the return value.class
AServerException
is thrown as a result of a remote method invocation when aRemoteException
is thrown while processing the invocation on the server, either while unmarshalling the arguments or executing the remote method itself.class
Deprecated.no replacementclass
AStubNotFoundException
is thrown if a valid stub class could not be found for a remote object when it is exported.class
AnUnexpectedException
is thrown if the client of a remote method call receives, as a result of the call, a checked exception that is not among the checked exception types declared in thethrows
clause of the method in the remote interface.class
AnUnknownHostException
is thrown if ajava.net.UnknownHostException
occurs while creating a connection to the remote host for a remote method call.class
AnUnmarshalException
can be thrown while unmarshalling the parameters or results of a remote method call if any of the following conditions occur: if an exception occurs while unmarshalling the call header if the protocol for the return value is invalid if ajava.io.IOException
occurs unmarshalling parameters (on the server side) or the return value (on the client side).Modifier and TypeMethodDescriptionstatic void
Binds the specifiedname
to a remote object.static String[]
Returns an array of the names bound in the registry.static Remote
Returns a reference, a stub, for the remote object associated with the specifiedname
.static void
Rebinds the specified name to a new remote object.static void
Destroys the binding for the specified name that is associated with a remote object. -
Uses of RemoteException in java.rmi.dgc
Modifier and TypeMethodDescriptionvoid
The clean call removes the 'vmid' from the reference list of each remote object indicated in 'id's.The dirty call requests leases for the remote object references associated with the object identifiers contained in the array 'ids'. -
Uses of RemoteException in java.rmi.registry
Modifier and TypeMethodDescriptionvoid
Binds a remote reference to the specifiedname
in this registry.static Registry
LocateRegistry.createRegistry
(int port) Creates and exports aRegistry
instance on the local host that accepts requests on the specifiedport
.static Registry
LocateRegistry.createRegistry
(int port, RMIClientSocketFactory csf, RMIServerSocketFactory ssf) Creates and exports aRegistry
instance on the local host that uses custom socket factories for communication with that instance.static Registry
LocateRegistry.getRegistry()
Returns a reference to the remote objectRegistry
for the local host on the default registry port of 1099.static Registry
LocateRegistry.getRegistry
(int port) Returns a reference to the remote objectRegistry
for the local host on the specifiedport
.static Registry
LocateRegistry.getRegistry
(String host) Returns a reference to the remote objectRegistry
on the specifiedhost
on the default registry port of 1099.static Registry
LocateRegistry.getRegistry
(String host, int port) Returns a reference to the remote objectRegistry
on the specifiedhost
andport
.static Registry
LocateRegistry.getRegistry
(String host, int port, RMIClientSocketFactory csf) Returns a locally created remote reference to the remote objectRegistry
on the specifiedhost
andport
.String[]
Registry.list()
Returns an array of the names bound in this registry.Returns the remote reference bound to the specifiedname
in this registry.void
Replaces the binding for the specifiedname
in this registry with the supplied remote reference.RegistryHandler.registryImpl
(int port) Deprecated.no replacement.RegistryHandler.registryStub
(String host, int port) Deprecated.no replacement.void
Removes the binding for the specifiedname
in this registry. -
Uses of RemoteException in java.rmi.server
Modifier and TypeClassDescriptionclass
AnExportException
is aRemoteException
thrown if an attempt to export a remote object fails.class
Deprecated.no replacement.class
Deprecated.no replacement.class
Deprecated.This class is obsolete.Modifier and TypeMethodDescriptionvoid
RemoteRef.done
(RemoteCall call) Deprecated.1.2 style stubs no longer use this method.ServerRef.exportObject
(Remote obj, Object data) Deprecated.Creates a client stub object for the supplied Remote object.static RemoteStub
UnicastRemoteObject.exportObject
(Remote obj) Deprecated.This method is deprecated because it supports only static stubs.static Remote
UnicastRemoteObject.exportObject
(Remote obj, int port) Exports the remote object to make it available to receive incoming calls, using the particular supplied port.static Remote
UnicastRemoteObject.exportObject
(Remote obj, int port, ObjectInputFilter filter) Exports the remote object to make it available to receive incoming calls, using the particular supplied port and filter.static Remote
UnicastRemoteObject.exportObject
(Remote obj, int port, RMIClientSocketFactory csf, RMIServerSocketFactory ssf) Exports the remote object to make it available to receive incoming calls, using a transport specified by the given socket factory.static Remote
UnicastRemoteObject.exportObject
(Remote obj, int port, RMIClientSocketFactory csf, RMIServerSocketFactory ssf, ObjectInputFilter filter) Exports the remote object to make it available to receive incoming calls, using a transport specified by the given socket factory and filter.RemoteRef.newCall
(RemoteObject obj, Operation[] op, int opnum, long hash) Deprecated.1.2 style stubs no longer use this method.ModifierConstructorDescriptionprotected
Creates and exports a new UnicastRemoteObject object using an anonymous port.protected
UnicastRemoteObject
(int port) Creates and exports a new UnicastRemoteObject object using the particular supplied port.protected
UnicastRemoteObject
(int port, RMIClientSocketFactory csf, RMIServerSocketFactory ssf) Creates and exports a new UnicastRemoteObject object using the particular supplied port and socket factories. -
Uses of RemoteException in javax.management.remote.rmi
Modifier and TypeMethodDescriptionRMIServer.getVersion()
The version of the RMI Connector Protocol understood by this connector server.RMIServerImpl_Stub.getVersion()