Re: EJB verification error
It looks lime you've declared a method on the Remote Interface of your bean, but not implemented this correctly in the implementation class.
If your remote interface is:
Code:
public void updateRecord throws RemoteException, MyException;
Your business implementation class should have a method in it:
Code:
public void updateRecord throws MyException {}
Re: EJB verification error
RecordHome.java
Code:
public Record findByPrimaryKey (String pKey) throws FinderException, RemoteException;
//home method to create the entity bean
public Record create(String id) throws RemoteException, CreateException;
}
In RecordBean.java
Code:
public String ejbCreate(String id) throws CreateException{....}
public String ejbFindByPrimaryKey (String pKey) throws FinderException{...}
It seems not violating the rule....is there any other possible error?
Thank you