On Wed, 2004-01-28 at 17:34, COCKLE Timothy wrote: > yes > > @web.*
Eh? Not unless somebody's radically changed xjavadoc and I missed the CVS notifications :-) In servlets, yes, but not in JSPs. The parser doesn't understand them. On the other hand, it's a bad idea to have code in the JSPs anyway, it's mixing presentation and business logic which makes things harder to maintain. Put the code in a javabean (or, if you're feeling sufficiently confident, a custom JSP tag), and use that from the JSP instead. You could then run xdoclet over the javabean/tag class, though you might need to modify the templates slightly since it wouldn't be a Servlet/Filter descendant. Andrew. > > > -----Original Message----- > From: Neil Mendoza [mailto:[EMAIL PROTECTED] > Sent: Wed 28/01/2004 16:33 > To: [EMAIL PROTECTED] > Cc: > Subject: [Xdoclet-user] JSP/EJB Newbie Question > Hi, > > Am I right in thinking that I can use xdoclet in JSP files to generate > the necessary code and deployment descriptors to be able to use RMI with > EJB's? > > Thanks, > > Neil Mendoza. ------------------------------------------------------- The SF.Net email is sponsored by EclipseCon 2004 Premiere Conference on Open Tools Development and Integration See the breadth of Eclipse activity. February 3-5 in Anaheim, CA. http://www.eclipsecon.org/osdn _______________________________________________ xdoclet-user mailing list [EMAIL PROTECTED] https://lists.sourceforge.net/lists/listinfo/xdoclet-user
