Originally posted by Prasad Tamirisa: In EJB com.genre.fgac.ejb.entity.AssignAssociationHome, the home create method ejbCreate(int,int,int,int,java.lang.String) did not have a corresponding ejbCreate method in the bean class, or t he ejbCreate method in the bean class was not public.
The above might be the cause. Can you post the code of the bean class?
Your home interface has a create(int,int,int,int,java.lang.String) taking 4 integers, while your bean class has methods taking 5 integers. [ May 22, 2007: Message edited by: Satou kurinosuke ]
We're turning around here. You're sending bits of codes, without telling everything you have. Please send it all, or we'll spend ages fixing it
1. You have two create methods in your home interface 2. Do you have the corresponding ejbCreate and ejbPostCreate (two sets) methods in your bean class ? The bean class you've shown above has only one set.
I got the clue from the following and its working fine now.
1. You have two create methods in your home interface 2. Do you have the corresponding ejbCreate and ejbPostCreate (two sets) methods in your bean class ? The bean class you've shown above has only one set.