Jim, > Generation of the DAO and its associated bulk accessors/mutators is a > nice feature. XDoclet is properly generating the DAO and the appropriate > methods on MyEntityBeanCMP. > > However, what good are these methods without exposing them to the remote > interface? In order to use these methods, they have to be added to the > remote interfaces as well. Is there a tag to do this?
Like other methods, to use it remotely, you still need to expose it yourself - that is, have an ejb:interface-method on your getData method: /** * @ejb:interface-method */ public abstract MyEntityData getData(); and likewise on the setData( ... ) hth dim _______________________________________________ Xdoclet-user mailing list [EMAIL PROTECTED] https://lists.sourceforge.net/lists/listinfo/xdoclet-user
