On Thu, 2003-03-27 at 02:00, Nathaniel Rahav wrote: > Can you please clarify about the ejbCreate method that needs to be added?
See also the thread on "A Little Confused with Output from Value Object Stuff With Relations". The compiler errors should give you a clue what create method you need to add. e.g. if it says /Users/hunter/Desktop/groundswell-commerce/gen-src/com/liberationmedia/comme > rce/entity/OrderCMP.java:60: > create(java.lang.Integer,java.lang.String,double,double,int) in > com.liberationmedia.commerce.interfaces.OrderLineItemLocalHome cannot be > applied to (com.liberationmedia.commerce.vo.OrderLineItemValueObject) (taken from a message in that thread), then you need to add a method for ejbCreate(com.liberationmedia.commerce.vo.OrderLineItemValueObject) in the OrderLineItemEJB bean class. Basically, you need to add a create method that takes the (nested) value object in the bean class for the target entity. > I have been struggling with how to add new EJBs which are composites of > other EJBs in 1:1. Ah, now that's another matter. See XDT-333/XDT-353. > Is there a better way ? Send a patch to fix that issue? Andrew. ------------------------------------------------------- This SF.net email is sponsored by: The Definitive IT and Networking Event. Be There! NetWorld+Interop Las Vegas 2003 -- Register today! http://ads.sourceforge.net/cgi-bin/redirect.pl?keyn0001en _______________________________________________ xdoclet-user mailing list [EMAIL PROTECTED] https://lists.sourceforge.net/lists/listinfo/xdoclet-user
