[jboss-user] [Beginners Corner] - Re: Help me!!! ERROR [MainDeployer] Could not create deploym

visolvejboss do-not-reply at jboss.com
Tue Dec 12 08:49:20 EST 2006


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=3993072#3993072

Reply to the post : http://www.jboss.com/index.html?module=bb&op=posting&mode=reply&p=3993072



More information about the jboss-user mailing list