| Class | Description |
|---|---|
| RmiFacade | |
| RmiProtocol |
Represents stateless RMI protocol - modification of JSON-RPC 2.0:
- request object modification: additional field "parameter types" to resolve overloaded methods in Java
- request object modification: "arguments" field instead of "params"
- response object modification: additional field "result type" to create implementation specific proxies
- response object modification: "value" field instead of "result"
- protocol doesn't support batch requests
- protocol doesn't support notification requests
|
| Exception | Description |
|---|---|
| MethodInvocationException | |
| MethodNotFoundException |
Method (public or non-public) is not found for given class
(and all its superclasses) and for given method parameter types.
|
| MethodNotVisibleException |
Method is found, but has no 'public' visibility.
|
| MethodParameterException |
Either method parameter class couldn't be loaded
or method parameter value couldn't be mapped to
according method parameter type provided.
|
| RmiException |
Base class for all protocol specific exceptions.
|
| TargetObjectNotFoundException | |
| TargetServerException | |
| UnsupportedProtocolException |
Copyright © 2015 Sterodium. All rights reserved.