hi can anybody tell me the basic difference between EJB and RMI? thanks
aseem kapoor
Greenhorn
Joined: Jun 24, 2000
Posts: 14
posted
0
EJB is serverside componet designing , it works on rmi in background. whreas RMI is can be used to invoke remote methords in remote jvm's
George Brown
Ranch Hand
Joined: Sep 26, 2000
Posts: 919
posted
0
Preethi, please would you look at the JavaRanch naming policy: unfortunately, single-letter last names are less than the requirement. Thanks.
Sean MacLean
author
Ranch Hand
Joined: Nov 07, 2000
Posts: 621
posted
0
To eleaborate a bit on what Aseem wrote, RMI is the basic structure upon which EJB's are based. If you study the structure of how RMI works (stub/skeletons + naming registries) and *then* look at EJBs you'll probably notice the EBJ's are basically a higher level abstraction of RMI technology. Sean