Lorraine Fox wrote: > * @ejb.finder > * description="Find all OrgNodes with ProviderID" > * signature="Collection findOrgNodesByProvOrgPMSID(java.lang.String > pProvOrgPMSID)" > * query="SELECT OBJECT(c) FROM OrgNodeEJB c WHERE > c.ProvOrgPMSID = ?1" > > public abstract String getProvOrgPMSID();
Unless I'm mistaken, the CMP properties will be named according to Java Beans rules: drop the "get" and lowercase the first letter. Thus your EJB-QL should be "c.provOrgPMSID" which is only checked at deployment time (or perhaps ejbc?). David Harkness Sr. Software Engineer Sony Pictures Digital Networks (310) 482-4756 ------------------------------------------------------- SF.Net is sponsored by: Speed Start Your Linux Apps Now. Build and deploy apps & Web services for Linux with a free DVD software kit from IBM. Click Now! http://ads.osdn.com/?ad_id56&alloc_id438&op=click _______________________________________________ xdoclet-user mailing list [EMAIL PROTECTED] https://lists.sourceforge.net/lists/listinfo/xdoclet-user
