2 Replies Latest reply on Nov 14, 2003 9:58 AM by jamesstrachan

    Cannot add home method in BMP entity bean

    woeye

      Hi!

      I have the following home interface:

      public interface ContentEBHome extends EJBHome
      {
      ...
      public boolean checkName(...) throws RemoteException;
      }

      and I have the following implementation:

      public class ContentEBImpl implements EntityBean
      {
      ...
      public boolean ejbCheckName(...)
      {...}
      }

      Now if I try to deploy my ejb jar file I always get the following
      error:

      Each method defined in the entity bean's home interface must be either create or finder method.

      "Must be either create or finder method"? Errrm, and what about home methods? Perhaps a problem with the verifier?

      Any suggestions?

      Thanks for your help in advance,
      Lars