| 
 | JavaTM 2 Platform Std. Ed. v1.3.1 | |||||||||
| PREV PACKAGE NEXT PACKAGE | FRAMES NO FRAMES | |||||||||
See: 
          Description
| Interface Summary | |
| Remote | The Remoteinterface serves to identify interfaces whose
 methods may be invoked from a non-local virtual machine. | 
| Class Summary | |
| MarshalledObject | A MarshalledObjectcontains a byte stream with the serialized
 representation of an object given to its constructor. | 
| Naming | The Namingclass provides methods for storing and obtaining
 references to remote objects in the remote object registry. | 
| RMISecurityManager | RMISecurityManagerprovides an example security manager for
 use by RMI applications that use downloaded code. | 
| Exception Summary | |
| AccessException | An AccessExceptionis thrown by certain methods of thejava.rmi.Namingclass (specificallybind,rebind, andunbind) and methods of thejava.rmi.activation.ActivationSysteminterface to
 indicate that the caller does not have permission to perform the action
 requested by the method call. | 
| AlreadyBoundException | An AlreadyBoundExceptionis thrown if an attempt
 is made to bind an object in the registry to a name that already
 has an associated binding. | 
| ConnectException | A ConnectExceptionis thrown if a connection is refused
 to the remote host for a remote method call. | 
| ConnectIOException | A ConnectIOExceptionis thrown if anIOExceptionoccurs while making a connection
 to the remote host for a remote method call. | 
| MarshalException | A MarshalExceptionis thrown if ajava.io.IOExceptionoccurs while marshalling the remote call
 header, arguments or return value for a remote method call. | 
| NoSuchObjectException | A NoSuchObjectExceptionis thrown if an attempt is made to
 invoke a method on an object that no longer exists in the remote virtual
 machine. | 
| NotBoundException | A NotBoundExceptionis thrown if an attempt
 is made to lookup or unbind in the registry a name that has
 no associated binding. | 
| RemoteException | A RemoteExceptionis the common superclass for a number of
 communication-related exceptions that may occur during the execution of a
 remote method call. | 
| RMISecurityException | Deprecated. no replacement. | 
| ServerError | A ServerErroris thrown as a result of a remote method call
 if the execution of the remote method on the server machine throws ajava.lang.Error. | 
| ServerException | A ServerExceptionis thrown as a result of a remote method call
 if the execution of the remote method on the server machine throws aRemoteException. | 
| ServerRuntimeException | Deprecated. no replacement | 
| StubNotFoundException | A StubNotFoundExceptionis thrown if a valid stub class
 could not be found for a remote object when it is exported. | 
| UnexpectedException | An UnexpectedExceptionis 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 thethrowsclause of the method in the remote interface. | 
| UnknownHostException | An UnknownHostExceptionis thrown if ajava.net.UnknownHostExceptionoccurs while creating
 a connection to the remote host for a remote method call. | 
| UnmarshalException | An UnmarshalExceptioncan 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.IOExceptionoccurs unmarshalling
 parameters (on the server side) or the return value (on the client side). | 
Provides the RMI package. RMI is Remote Method Invocation. It is a mechanism that enables an object on one Java virtual machine to invoke methods on an object in another Java virtual machine. Any object that can be invoked this way must implement the Remote interface. When such an object is invoked, its arguments are ``marshalled'' and sent from the local virtual machine to the remote one, where the arguments are ``unmarshalled.'' When the method terminates, the results are marshalled from the remote machine and sent to the caller's virtual machine. If the method invocation results in an exception being thrown, the exception is indicated to caller.
| 
 | JavaTM 2 Platform Std. Ed. v1.3.1 | |||||||||
| PREV PACKAGE NEXT PACKAGE | FRAMES NO FRAMES | |||||||||
Java, Java 2D, and JDBC are trademarks or registered trademarks of Oracle and/or its affiliates, in the US and other countries.
Copyright © 1995, 2010 Oracle and/or its affiliates.    All rights reserved.