1 |
This is Java's CORBA-like capability to allow Java objects to access each other's methods remotely
|
2 |
Note COM is Microsoft's (remote) object model
|
3 |
CORBA is Industry (OMG) remote object model
|
4 |
RMI is Java's way for remote objects to communicate
|
5 |
It extends the well known Remote Procedure Call (RPC) used in UNIX
|
6 |
RMI is thus part of a JavaBean global object model
-
One can imagine that RMI will not "survive" but rather one will use instead the JavaBean to CORBA interface described in earlier examples
|