Hi All,
I have a funn problem. Here it is:
I am working on IBM Websphere Commerce Suite 5.1. I started modifying one
EJB, developed by another person after changing the owner. I removed the deployed code, access bean, added few finder methods. Generated the access bean and deploy code. The other finder methods which i havent modified are working fine. When i call the new finder method findPartNo("ABCD") which is for "PARTNO LIKE ?" gives the following exceptins:
1.ctp/wr/EJSRemoteCatEntryHome.findPartNo at javax.servlet.ServletException
2.java.lang.AbstractMethodError: ctp/wr/EJSRemoteCatEntryHome.findPartNo
My Finder method declarations:
public static final
String findPartNoWhereClause="T1.PARTNUMBER=?";
public static final String findMFPartNoWhereClause="T1.MFPARTNUMBER=?";
public static final String findPartNoLikeWhereClause="T1.PARTNUMBER LIKE ?";
public static final String findMFPartNoLikeWhereClause="T1.MFPARTNUMBER LIKE ?";
java.util.Enumeration findMFPartNo(String mfpartno) throws java.rmi.RemoteException, javax.ejb.FinderException;
java.util.Enumeration findMFPartNoLike(String mfpartnolike) throws java.rmi.RemoteException, javax.ejb.FinderException;
java.util.Enumeration findPartNo(String partno) throws java.rmi.RemoteException, javax.ejb.FinderException;
java.util.Enumeration findPartNoLike(String partnolike) throws java.rmi.RemoteException, javax.ejb.FinderException;
Have u encountered this type of problem. I hope so. Pl try to give me the soln. Thanks in advance. Bye.
Rgds,
T.Prasad
[email protected]