On higher level if we analyze EJB say statelessEJB Bean , its seems to be that ejb framework created out of RMI API's. Reason why i am saying this :-
IN RMI also ae have remote interface. on naming lookup we get the stub which gives a call to skelton which internally calls to remote object.
In EJB we have home interface and remote interface whose implementation are provided by ejb container( which looks like nothing but stubs) on calling create on home interface it gives the remote object on which as per me will give the call to skelton which internally calls the session object.
Please let me know if above comparison makes sense?