Hi,

I'm not sure if i'm doing something wrong or what but i have the
following home interface:

public interface ShipHome extends javax.ejb.EJBHome
{
    :
    :
    public Ship findByPrimaryKey(ShipPK primaryKey)
        throws FinderException, RemoteException;
    :
    :
}

and the following impl

public class ShipBean implements javax.ejb.EntityBean {
     :
     :
    public ShipPK ejbFindByPrimaryKey(ShipPK primaryKey)
    throws FinderException {
System.out.println("ejbFindByPrimaryKey");
           :
           :
        return primaryKey;
    }

the ejbFindByPrimaryKey() never gets called when calling
findByPrimaryKey() in the client.  Has anyone seen this problem.
I'm using BMP.

thanx in advance
-- anthony




--
--------------------------------------------------------------
To subscribe:        [EMAIL PROTECTED]
To unsubscribe:      [EMAIL PROTECTED]
Problems?:           [EMAIL PROTECTED]

Reply via email to