• Post Reply Bookmark Topic Watch Topic
  • New Topic
programming forums Java Mobile Certification Databases Caching Books Engineering Micro Controllers OS Languages Paradigms IDEs Build Tools Frameworks Application Servers Open Source This Site Careers Other Pie Elite all forums
this forum made possible by our volunteer staff, including ...
Marshals:
  • Campbell Ritchie
  • Tim Cooke
  • paul wheaton
  • Ron McLeod
  • Jeanne Boyarsky
Sheriffs:
  • Paul Clapham
Saloon Keepers:
  • Tim Holloway
  • Roland Mueller
Bartenders:

Urgent: AbstractMethodError - in Finder Methods...

 
Ranch Hand
Posts: 39
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Quote
  • Report post to moderator
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]
 
I love a woman who dresses in stainless steel ... and carries tiny ads:
Clean our rivers and oceans from home
https://www.kickstarter.com/projects/paulwheaton/willow-feeders
reply
    Bookmark Topic Watch Topic
  • New Topic