Uses of Class
java.rmi.RemoteException

Packages that use RemoteException
Package
Description
Provides the RMI package.
Provides support for RMI Object Activation.
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

    Subclasses of RemoteException in java.rmi
    Modifier and Type
    Class
    Description
    class 
    An AccessException is thrown by certain methods of the java.rmi.Naming class (specifically bind, rebind, and unbind) and methods of the java.rmi.activation.ActivationSystem interface to indicate that the caller does not have permission to perform the action requested by the method call.
    class 
    A ConnectException is thrown if a connection is refused to the remote host for a remote method call.
    class 
    A ConnectIOException is thrown if an IOException occurs while making a connection to the remote host for a remote method call.
    class 
    A MarshalException is thrown if a java.io.IOException occurs while marshalling the remote call header, arguments or return value for a remote method call.
    class 
    A NoSuchObjectException is thrown if an attempt is made to invoke a method on an object that no longer exists in the remote virtual machine.
    class 
    A ServerError is thrown as a result of a remote method invocation when an Error 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 
    A ServerException is thrown as a result of a remote method invocation when a RemoteException is thrown while processing the invocation on the server, either while unmarshalling the arguments or executing the remote method itself.
    class 
    Deprecated.
    no replacement
    class 
    A StubNotFoundException is thrown if a valid stub class could not be found for a remote object when it is exported.
    class 
    An UnexpectedException 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 the throws clause of the method in the remote interface.
    class 
    An UnknownHostException is thrown if a java.net.UnknownHostException occurs while creating a connection to the remote host for a remote method call.
    class 
    An UnmarshalException 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 a java.io.IOException occurs unmarshalling parameters (on the server side) or the return value (on the client side).
    Methods in java.rmi that throw RemoteException
    Modifier and Type
    Method
    Description
    static void
    Naming.bind​(String name, Remote obj)
    Binds the specified name to a remote object.
    static String[]
    Naming.list​(String name)
    Returns an array of the names bound in the registry.
    static Remote
    Naming.lookup​(String name)
    Returns a reference, a stub, for the remote object associated with the specified name.
    static void
    Naming.rebind​(String name, Remote obj)
    Rebinds the specified name to a new remote object.
    static void
    Naming.unbind​(String name)
    Destroys the binding for the specified name that is associated with a remote object.
  • Uses of RemoteException in java.rmi.activation

    Modifier and Type
    Class
    Description
    class 
    Deprecated, for removal: This API element is subject to removal in a future version.
    See the java.rmi.activation package specification for further information.
    Methods in java.rmi.activation that throw RemoteException
    Modifier and Type
    Method
    Description
    ActivationID.activate​(boolean force)
    Deprecated, for removal: This API element is subject to removal in a future version.
    Activate the object for this id.
    Activator.activate​(ActivationID id, boolean force)
    Deprecated, for removal: This API element is subject to removal in a future version.
    Activate the object associated with the activation identifier, id.
    ActivationSystem.activeGroup​(ActivationGroupID id, ActivationInstantiator group, long incarnation)
    Deprecated, for removal: This API element is subject to removal in a future version.
    Callback to inform activation system that group is now active.
    protected void
    ActivationGroup.activeObject​(ActivationID id, MarshalledObject<? extends Remote> mobj)
    Deprecated, for removal: This API element is subject to removal in a future version.
    This protected method is necessary for subclasses to make the activeObject callback to the group's monitor.
    abstract void
    ActivationGroup.activeObject​(ActivationID id, Remote obj)
    Deprecated, for removal: This API element is subject to removal in a future version.
    The group's activeObject method is called when an object is exported (either by Activatable object construction or an explicit call to Activatable.exportObject.
    void
    ActivationMonitor.activeObject​(ActivationID id, MarshalledObject<? extends Remote> obj)
    Deprecated, for removal: This API element is subject to removal in a future version.
    Informs that an object is now active.
    Activatable.exportObject​(Remote obj, String location, MarshalledObject<?> data, boolean restart, int port)
    Deprecated, for removal: This API element is subject to removal in a future version.
    Registers an activation descriptor (with the specified location, data, and restart mode) for the specified object, and exports that object with the specified port.
    Activatable.exportObject​(Remote obj, String location, MarshalledObject<?> data, boolean restart, int port, RMIClientSocketFactory csf, RMIServerSocketFactory ssf)
    Deprecated, for removal: This API element is subject to removal in a future version.
    Registers an activation descriptor (with the specified location, data, and restart mode) for the specified object, and exports that object with the specified port, and the specified client and server socket factories.
    static Remote
    Activatable.exportObject​(Remote obj, ActivationID id, int port)
    Deprecated, for removal: This API element is subject to removal in a future version.
    Export the activatable remote object to the RMI runtime to make the object available to receive incoming calls.
    static Remote
    Activatable.exportObject​(Remote obj, ActivationID id, int port, RMIClientSocketFactory csf, RMIServerSocketFactory ssf)
    Deprecated, for removal: This API element is subject to removal in a future version.
    Export the activatable remote object to the RMI runtime to make the object available to receive incoming calls.
    ActivationSystem.getActivationDesc​(ActivationID id)
    Deprecated, for removal: This API element is subject to removal in a future version.
    Returns the activation descriptor, for the object with the activation identifier, id.
    ActivationSystem.getActivationGroupDesc​(ActivationGroupID id)
    Deprecated, for removal: This API element is subject to removal in a future version.
    Returns the activation group descriptor, for the group with the activation group identifier, id.
    static boolean
    Activatable.inactive​(ActivationID id)
    Deprecated, for removal: This API element is subject to removal in a future version.
    Informs the system that the object with the corresponding activation id is currently inactive.
    protected void
    ActivationGroup.inactiveGroup()
    Deprecated, for removal: This API element is subject to removal in a future version.
    This protected method is necessary for subclasses to make the inactiveGroup callback to the group's monitor.
    void
    ActivationMonitor.inactiveGroup​(ActivationGroupID id, long incarnation)
    Deprecated, for removal: This API element is subject to removal in a future version.
    Informs that the group is now inactive.
    boolean
    ActivationGroup.inactiveObject​(ActivationID id)
    Deprecated, for removal: This API element is subject to removal in a future version.
    The group's inactiveObject method is called indirectly via a call to the Activatable.inactive method.
    void
    ActivationMonitor.inactiveObject​(ActivationID id)
    Deprecated, for removal: This API element is subject to removal in a future version.
    An activation group calls its monitor's inactiveObject method when an object in its group becomes inactive (deactivates).
    ActivationGroup_Stub.newInstance​(ActivationID id, ActivationDesc desc)
    Deprecated, for removal: This API element is subject to removal in a future version.
    Stub method for ActivationGroup.newInstance.
    ActivationInstantiator.newInstance​(ActivationID id, ActivationDesc desc)
    Deprecated, for removal: This API element is subject to removal in a future version.
    The activator calls an instantiator's newInstance method in order to recreate in that group an object with the activation identifier, id, and descriptor, desc.
    static Remote
    Activatable.register​(ActivationDesc desc)
    Deprecated, for removal: This API element is subject to removal in a future version.
    Register an object descriptor for an activatable remote object so that is can be activated on demand.
    ActivationSystem.registerGroup​(ActivationGroupDesc desc)
    Deprecated, for removal: This API element is subject to removal in a future version.
    Register the activation group.
    ActivationSystem.registerObject​(ActivationDesc desc)
    Deprecated, for removal: This API element is subject to removal in a future version.
    The registerObject method is used to register an activation descriptor, desc, and obtain an activation identifier for a activatable remote object.
    ActivationSystem.setActivationDesc​(ActivationID id, ActivationDesc desc)
    Deprecated, for removal: This API element is subject to removal in a future version.
    Set the activation descriptor, desc for the object with the activation identifier, id.
    Deprecated, for removal: This API element is subject to removal in a future version.
    Set the activation group descriptor, desc for the object with the activation group identifier, id.
    void
    ActivationSystem.shutdown()
    Deprecated, for removal: This API element is subject to removal in a future version.
    Shutdown the activation system.
    static void
    Activatable.unregister​(ActivationID id)
    Deprecated, for removal: This API element is subject to removal in a future version.
    Revokes previous registration for the activation descriptor associated with id.
    void
    ActivationSystem.unregisterGroup​(ActivationGroupID id)
    Deprecated, for removal: This API element is subject to removal in a future version.
    Remove the activation group.
    void
    ActivationSystem.unregisterObject​(ActivationID id)
    Deprecated, for removal: This API element is subject to removal in a future version.
    Remove the activation id and associated descriptor previously registered with the ActivationSystem; the object can no longer be activated via the object's activation id.
    Constructors in java.rmi.activation that throw RemoteException
    Modifier
    Constructor
    Description
    protected
    Activatable​(String location, MarshalledObject<?> data, boolean restart, int port)
    Deprecated, for removal: This API element is subject to removal in a future version.
    Constructs an activatable remote object by registering an activation descriptor (with the specified location, data, and restart mode) for this object, and exporting the object with the specified port.
    protected
    Activatable​(String location, MarshalledObject<?> data, boolean restart, int port, RMIClientSocketFactory csf, RMIServerSocketFactory ssf)
    Deprecated, for removal: This API element is subject to removal in a future version.
    Constructs an activatable remote object by registering an activation descriptor (with the specified location, data, and restart mode) for this object, and exporting the object with the specified port, and specified client and server socket factories.
    protected
    Activatable​(ActivationID id, int port)
    Deprecated, for removal: This API element is subject to removal in a future version.
    Constructor used to activate/export the object on a specified port.
    protected
    Deprecated, for removal: This API element is subject to removal in a future version.
    Constructor used to activate/export the object on a specified port.
    protected
    Deprecated, for removal: This API element is subject to removal in a future version.
    Constructs an activation group with the given activation group identifier.
  • Uses of RemoteException in java.rmi.dgc

    Methods in java.rmi.dgc that throw RemoteException
    Modifier and Type
    Method
    Description
    void
    DGC.clean​(ObjID[] ids, long sequenceNum, VMID vmid, boolean strong)
    The clean call removes the 'vmid' from the reference list of each remote object indicated in 'id's.
    DGC.dirty​(ObjID[] ids, long sequenceNum, Lease lease)
    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

    Methods in java.rmi.registry that throw RemoteException
    Modifier and Type
    Method
    Description
    void
    Registry.bind​(String name, Remote obj)
    Binds a remote reference to the specified name in this registry.
    static Registry
    LocateRegistry.createRegistry​(int port)
    Creates and exports a Registry instance on the local host that accepts requests on the specified port.
    static Registry
    LocateRegistry.createRegistry​(int port, RMIClientSocketFactory csf, RMIServerSocketFactory ssf)
    Creates and exports a Registry 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 object Registry for the local host on the default registry port of 1099.
    static Registry
    LocateRegistry.getRegistry​(int port)
    Returns a reference to the remote object Registry for the local host on the specified port.
    static Registry
    LocateRegistry.getRegistry​(String host)
    Returns a reference to the remote object Registry on the specified host on the default registry port of 1099.
    static Registry
    LocateRegistry.getRegistry​(String host, int port)
    Returns a reference to the remote object Registry on the specified host and port.
    static Registry
    LocateRegistry.getRegistry​(String host, int port, RMIClientSocketFactory csf)
    Returns a locally created remote reference to the remote object Registry on the specified host and port.
    Registry.list()
    Returns an array of the names bound in this registry.
    Registry.lookup​(String name)
    Returns the remote reference bound to the specified name in this registry.
    void
    Registry.rebind​(String name, Remote obj)
    Replaces the binding for the specified name 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
    Registry.unbind​(String name)
    Removes the binding for the specified name in this registry.
  • Uses of RemoteException in java.rmi.server

    Modifier and Type
    Class
    Description
    class 
    An ExportException is a RemoteException thrown if an attempt to export a remote object fails.
    class 
    Deprecated.
    no replacement.
    class 
    Deprecated.
    no replacement.
    class 
    Deprecated.
    This class is obsolete.
    Methods in java.rmi.server that throw RemoteException
    Modifier and Type
    Method
    Description
    void
    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.
    Constructors in java.rmi.server that throw RemoteException
    Modifier
    Constructor
    Description
    protected
    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
    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 Type
    Method
    Description
    RMIServer.getVersion()
    The version of the RMI Connector Protocol understood by this connector server.
    RMIServerImpl_Stub.getVersion()