CORBAComponents vs. EJB 1.1
Home and Finder Interfaces
- CORBA Component model expects the component developer to provide the implementation of those interfaces.
- EJB produces the implementation of Home and finder operations from the Home interface definition in the ejb-jar file while expecting that the bean developer provides matching ejbCreate() method for each create() method on the Home interface definition.
How these interfaces are obtained by the client:
- EJB uses JNDI.
- CORBA Component model uses resolve_initial_references() method of ORB and this can use the CORBA Naming service for locate the interface.