RemoteRef.invoke implementation

Posted by phill on Stack Overflow See other posts from Stack Overflow or by phill
Published on 2010-04-14T07:38:33Z Indexed on 2010/04/14 7:43 UTC
Read the original article Hit count: 361

Filed under:
|
|

Just finished a basic implementation of RMI for a class project, and now I am interested in how it is actually done. Sun is kind enough to provide the source for the majority of the Java classes with the JDK, however an implementation of RemoteRef doesn't seem to be there. I have the source for the interface RemoteRef along with the ServerRef interface and one implementation, ProxyRef, which just calls invoke on another RemoteRef, but none of the classes that implement actual code, ActivatableRef or UnicastRef for example, are included.

I mention ActivatableRef and UnicastRef because I believe these have proper implementations of invoke thanks to the wonder that is Eclipse and its class file editor showing that it is more then just a method declaration. Although I can tell that it is more then a declaration, I can't get much more out of it, building a string here, throw exception there, but nothing about the process that is taking place to send the remote method call. Would anyone here happen to know where I can get this code, or if its even available?

If it is not available, would anyone happen to know what the message being sent to the server looks like?

phill

© Stack Overflow or respective owner

Related posts about java

Related posts about invoke