The
J2EE specifications says- The home interface of a Stateless Session Bean must have a single create() method with no arguments, while the session bean class must contain exactly one ejbCreate() method, also without arguments. Stateful Session Beans can have arguments (more than one create method) stateful beans can contain multiple ejbCreate().
The ejbCreate() methods is part of the bean�s lifecycle, so the compiler will not return an error because there is no ejbCreate() method.
You need a reference to your EJBObject to startwith.
-Sachin Deshmukh