RE: [Xdoclet-user] help w/ BMP primary keys

2004-09-09 Thread Andrew Stevens
On Wed, 2004-09-08 at 02:12, Harkness, David wrote: William I. Zumwalt penned ... Also, seems weird, but would I just code the primary key return type as the return of my ejbCreate() methods ... before it's even been generated? I'm not understanding this. That's my understanding of

RE: [Xdoclet-user] Maven XDoclet v1.2.1, setup issue

2004-09-09 Thread Brian Topping
David, Try 1.2.2-SNAPSHOT... There should be a full compliment of jars there for that version. best, -b -Original Message- From: David Smiley [mailto:[EMAIL PROTECTED] Sent: Thursday, September 09, 2004 1:27 AM To: [EMAIL PROTECTED] Subject: [Xdoclet-user] Maven XDoclet v1.2.1,

Re: [Xdoclet-user] Maven XDoclet v1.2.1, setup issue

2004-09-09 Thread M.-Leander Reimer
Hi David, I think you have to declare the required XDoclet JAR files as dependencies in your project.xml file, e.g. dependency groupIdxdoclet/groupId artifactIdxdoclet-ejb-module/artifactId version1.2.1/version /dependency dependency groupIdxdoclet/groupId

[Xdoclet-user] Implementing an interface

2004-09-09 Thread Yahia Intissar MERCHAOUI
Hi all, Sorry, this may be a newbie question, but I wanna know if it we can use the xdoclet templating mechanism to generate classes implementing some interface (the name of the interface is not known in advance). Can we reproduce the same behavior than the one proposed with wizards in java

[Xdoclet-user] Using XDoclet to create Struts dynamic action forms

2004-09-09 Thread Marco Tedone
Hi, I understand there is this (webdoclet?) element: strutsdynaformvalidationxml/ that creates struts dynamic forms. Where could I find documentation on it? Which XDoclet version (if possible under Maven's point of view) contains this release? Where shall I put the XDoclet comments? Thanks,

RE: [Xdoclet-user] Using XDoclet to create Struts dynamic action forms

2004-09-09 Thread Marco Mistroni
Hello there, Check this link http://www.systemmobile.com/blog/index.php?p=26more=1c=1tb=1pb=1 regards marco -Original Message- From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] On Behalf Of Marco Tedone Sent: 09 September 2004 14:43 To: [EMAIL PROTECTED] Subject:

RE: [Xdoclet-user] Maven XDoclet v1.2.1, setup issue

2004-09-09 Thread Marco Mistroni
Hello, It's a stupid question, but did u include all those jars as Dependencies of your project? Can u send ur project.xml file? Regards marco -Original Message- From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] On Behalf Of David Smiley Sent: 09 September 2004 06:27 To:

Re: [Xdoclet-user] Using XDoclet to create Struts dynamic action forms

2004-09-09 Thread Marco Tedone
Thank you Marco, but the link on the page doesn't work, I don't know which version of the Maven apache plugin supports this. Currently we're using 1.2 but I fear that this functionality has been implemented in 1.2.2. Could you confirm? As far as I understood, it's just necessary to define the

Re: [Xdoclet-user] Using XDoclet to create Struts dynamic action forms

2004-09-09 Thread Nick Heudecker
The Struts Dynamic Form creation is part of XDoclet 1.2.2. A snapshot of 1.2.2 was recently made available on the sf.net site. If you can't upgrade to 1.2.2, the old version of the patch providing support for DynaForms can be found at:

Re: [Xdoclet-user] Using XDoclet to create Struts dynamic action forms

2004-09-09 Thread David Durham
Marco (which one, I do not know), Here's something posted on Struts user. So far as I know, the readme is the only documentation, but I have it working if you need assistance. This release adds validation support to the DynaForms generated by XDoclet. Using the @struts.validator tags, you can

Re: [Xdoclet-user] Using XDoclet to create Struts dynamic action forms

2004-09-09 Thread Nick Heudecker
Oh yeah, I forgot I released that version. :) On Thu, 09 Sep 2004 10:52:20 -0500, David Durham [EMAIL PROTECTED] wrote: Marco (which one, I do not know), Here's something posted on Struts user. So far as I know, the readme is the only documentation, but I have it working if you need

RE: [Xdoclet-user] Using XDoclet to create Struts dynamic action forms

2004-09-09 Thread Marco Mistroni
Hello, Sorry. I got that link from Mr Nick Heudecker (he's on this list, I'll bet he'll spot the message and reply) long time ago.. I actually never had the time :-( to use the code due to work issues Thank you Marco, but the link on the page doesn't work, I don't know which version

Re: [Xdoclet-user] Maven XDoclet v1.2.1, setup issue

2004-09-09 Thread Joachim Bader
Hello, On Thursday 09 September 2004 07:27, David Smiley wrote: I'm having a devil of a time working with Maven XDoclet for an existing project (internal) that uses both. I installed the latest Maven (v1.0) and I downloaded XDoclet v1.2.1. I put the xdoclet maven plugin file in my Maven

[Xdoclet-user] hibernate and formula

2004-09-09 Thread Ralph Churchill
I'm using xdoclet-1.2.2-SNAPSHOT and the newly added formula hibernate tag does not seem to be working. I'm confused because in xdoclet, formula is associated with column, but in hibernate... it's a parameter of property. Here's my xdoclet: /** * @hibernate.property *

Re: [Xdoclet-user] Using XDoclet to create Struts dynamic action forms

2004-09-09 Thread Marco Tedone
I've downaloded it and it works. The dyna form gets written in the struts-config.xml file. This is what I've defined in the VO class at the class level: * @struts.dynaform *name=aDynaForm *type=org.apache.struts.action.DynaActionForm This is what I've defined in the VO class at the

Re: [Xdoclet-user] Using XDoclet to create Struts dynamic action forms

2004-09-09 Thread David Durham
Nick Heudecker wrote: Oh yeah, I forgot I released that version. :) Now you're just askin' for trouble. The old version worked (for me), but I replaced the jar's and I get this error: Can't create a strutsdynaformvalidationxml element under webdoclet. Make sure the jar file containing the

Re: [Xdoclet-user] Using XDoclet to create Struts dynamic action forms

2004-09-09 Thread David Durham
David Durham wrote: Can't create a strutsdynaformvalidationxml element under webdoclet. Make sure the jar file containing the corresponding subtask class is on the classpath specified in the taskdef that defined {2}. Ok, looks like the new version runs right along with the strutsconfigxml/ task.

Re: [Xdoclet-user] Maven XDoclet v1.2.1, setup issue

2004-09-09 Thread David Smiley
On Sep 9, 2004, at 4:07 AM, M.-Leander Reimer wrote: Hi David, I think you have to declare the required XDoclet JAR files as dependencies in your project.xml file, e.g. dependency groupIdxdoclet/groupId artifactIdxdoclet-ejb-module/artifactId version1.2.1/version