Hi,
I am defining two business methods in my Home Class (which extends EJBHome) with the 
following signatures.

public interface MyEJBHome extends EJBHome {
.....
public List listAll() throws RemoteException;
public List listObjects(Integer folderId) throws RemoteException;
...
}

And my EJB class is....

public class MyEJB implements EntityBean {
....
public List ejbHomeListAll() {
}
public List ejbHomeListObjects(Integer folderId) {
}
}

When i run ejbc in WebSphere, it is giving an error (This works fine for WebLogic):

//////////ERROR MSG/////////////
[java] [*Error] ejbModule/com/mycomp/EJSRemoteBMPMyEJBHome.java(8
1): The method listObjects(java.lang.Integer) is undefined for the type 
com.mycomp.EJSBMPMyEJBHomeBean
[java] [*Error] ejbModule/com/mycomp/EJSRemoteBMPMyEJBHome.java(81)
: The method listAll() is undefined for the type 
:com.informatica.imm.server.domain.userdefined.EJSBMPMyEJBHomeBean
///////////////END ERROR//////////

Does anyone know what might be causing this...

Thanks,
Vasu

===========================================================================
To unsubscribe, send email to [EMAIL PROTECTED] and include in the body
of the message "signoff EJB-INTEREST".  For general help, send email to
[EMAIL PROTECTED] and include in the body of the message "help".

Reply via email to