On Tue, 2004-03-09 at 16:47, [EMAIL PROTECTED] wrote: > I'd like to know how the DeploymentDescriptor are generated for the EJB Files. > Do I have to add some xdoclet tags into the EJB Bean files ?
Yes. See http://xdoclet.sourceforge.net/tags/ejb-tags.html for more details. There were some efforts made at one point to try and get things to generate a sensible DD by default with no tags, but realistically you will need to add @ejb.* tags in your bean class (especially @ejb.bean). Also, make sure your bean class says it implements SessionBean/EntityBean/MessageDrivenBean or it won't be processed; you can declare your bean class abstract to avoid having to implement all the methods of those interfaces (ejbActivate, ejbPassivate etc.) Andrew. ------------------------------------------------------- This SF.Net email is sponsored by: IBM Linux Tutorials Free Linux tutorial presented by Daniel Robbins, President and CEO of GenToo technologies. Learn everything from fundamentals to system administration.http://ads.osdn.com/?ad_id=1470&alloc_id=3638&op=click _______________________________________________ xdoclet-user mailing list [EMAIL PROTECTED] https://lists.sourceforge.net/lists/listinfo/xdoclet-user
