Hello,
As per the EJB Specification, you should implement an ejbCreate() in your entity bean
class for all the create() methods in the home interface. For example, you have an create
method in home interface as given below.
| Product create(int productID, String productName, String productQty) throws
RemoteException, CreateException;
You should have an ejbCreate method in your entity bean class.
public ProductPK ejbCreate(int productD, String productName, String productQty) throws
CreateException
View the original post :
http://www.jboss.com/index.html?module=bb&op=viewtopic&p=3990724#...
Reply to the post :
http://www.jboss.com/index.html?module=bb&op=posting&mode=reply&a...