Thanks that fixed it!
-----Original Message----- From: Andrew Stevens [mailto:[EMAIL PROTECTED] Sent: Mon 21/07/2003 23:36 To: [EMAIL PROTECTED] Cc: Subject: Re: [Xdoclet-user] Real simple and stupid question! On Mon, 2003-07-21 at 15:52, COCKLE Timothy wrote: > I am sure someone can help with this! > > I am just want to get a real simlpe "hello world" EJB session bean going I have > written the bean code: ... > package testXdoc; > > import javax.ejb.SessionBean; > import javax.ejb.SessionContext; > > /** > * @ejb.bean type="Stateless" > * view-type="both" > */ > public class HelloBean implements SessionBean ... > And the build.xml ... > <property name="src" value="${basedir}/testXdoc"/> That'll only work if that's the root of your package hierarchy i.e. the bean source file is ${basedir}/testXdoc/testXdoc/HelloBean.java If that's not the case, try <property name="src" value="${basedir}"/> instead. Andrew. ------------------------------------------------------- This SF.net email is sponsored by: VM Ware With VMware you can run multiple operating systems on a single machine. WITHOUT REBOOTING! Mix Linux / Windows / Novell virtual machines at the same time. Free trial click here: http://www.vmware.com/wl/offer/345/0 _______________________________________________ xdoclet-user mailing list [EMAIL PROTECTED] https://lists.sourceforge.net/lists/listinfo/xdoclet-user ------------------------------------------------------- This SF.net email is sponsored by: VM Ware With VMware you can run multiple operating systems on a single machine. WITHOUT REBOOTING! Mix Linux / Windows / Novell virtual machines at the same time. Free trial click here: http://www.vmware.com/wl/offer/345/0 _______________________________________________ xdoclet-user mailing list [EMAIL PROTECTED] https://lists.sourceforge.net/lists/listinfo/xdoclet-user
