[jboss-user] [Beginners Corner] - Re: ERROR [NamingService] Could not start on port 1099

visolvejboss do-not-reply at jboss.com
Fri Dec 1 23:28:41 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=3990724#3990724

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



More information about the jboss-user mailing list