[Andromda-user] Custom ApplicationException

2005-03-20 Thread vido
Hello, I'm trying to have custom <> classes generated, but I'm facing two issues : 1- (not directly related to AndroMDA) : I can't find how to specify a non-default constructor for a class in MagicDraw. If someone knows how to... 2- The <> classes get generated under common/target , thu

Re: [Andromda-user] Sending parameters between use cases (II)

2005-03-20 Thread vido
On Sun, Mar 20, 2005 at 05:55:24PM +0100, Wouter Zoons wrote: > Vido, could you do me a favor and create a page in confluence and paste your > previous email in there ? (http://confluence.andromda.org/) if you don't > have an account yet you can signup in jira (http://jira.andromda.org/), user > ac

RE: [Andromda-user] Sorting model elements

2005-03-20 Thread Wouter Zoons
Yup, and it's what I am doing in the database cartridge too, works fine: http://cvs.sourceforge.net/viewcvs.py/andromda/contrib/cartridges/andromda-d atabase/src/templates/database/create-dummy-load.vsl?view=markup (FYI: for the generation of dummy data I need to respect the foreign keys and the m

Re: [Andromda-user] Sorting model elements

2005-03-20 Thread Chad Brandon
Matthias Küspert wrote: Hi folks, is there any possibility to sort the model-elements that are passed to my cartridge? Background: my cartridge receives a classes-collection (entities) and I need to sort them in a way that base-classes are defined before the derived classes. The cartridge generates

[Andromda-user] Sorting model elements

2005-03-20 Thread Matthias =?ISO-8859-1?Q?K=FCspert?=
Hi folks, is there any possibility to sort the model-elements that are passed to my cartridge? Background: my cartridge receives a classes-collection (entities) and I need to sort them in a way that base-classes are defined before the derived classes. The cartridge generates an input file for a s

RE: [Andromda-user] fileuploads

2005-03-20 Thread Wouter Zoons
Please hit reply-all in the future. You'll find your answer in: /home/mila/private/mavenbpm4/bpm4test3/AndroMDAGenTask050320230737.exc Anyway, I see you're using maven 1.0-rc3 which is quite old and has some serious bugs .. try upgrading to maven 1.0.2, I'll update the docs to reflect this requir

RE: [Andromda-user] fileuploads

2005-03-20 Thread Wouter Zoons
Well, it's explained here: http://team.andromda.org/docs/starting.html#My_first_AndroMDA_project Just scroll down a bit, there's a numbered list and #2 tells you what to do, basically you can do this: 1. maven 2. maven web 3. maven mda 4. maven mda -Dfilter=spring,java 5. maven core 6. maven clea

RE: [Andromda-user] fileuploads

2005-03-20 Thread Wouter Zoons
Did you include the fileupload jar In the war bundle ? Try putting it in /WEB-INF/lib. With our andromdapp:generate maven plugin you would not need to worry about these things :-) -- Wouter > -Original Message- > From: [EMAIL PROTECTED] [mailto:andromda-user- > [EMAIL PROTECTED] On Behal

[Andromda-user] fileuploads

2005-03-20 Thread Miloslav Vlach
Hi, I have problem with submiting the form. I'am using the Ant for compiling project and for ant build file and project working dir I'am using the andromda-ant-3.0-RC1-SNAPSHOT.jar tool. I had copied the xdoclet-hibernate-module.jar and commons-fileuploads-1.0 jars before compiling my applicatio

RE: [Andromda-user] bmp4struts - non-empty name of JSP page

2005-03-20 Thread Wouter Zoons
I did not look at your model yet, but this error means the JSP has no name.   How can that be, you gave it a name, didn’t you ? well, you didn’t, you ‘labeled’ the image in the diagram but you did not give a name to the actual element from the underlying datastructure In magicdraw it mea

[Andromda-user] Re: andromda + OCL

2005-03-20 Thread Chad Brandon
Aram Hovsepyan wrote: Dear Chad, Sorry to disturb again but I have been looking for some time to find something about how to make OCL generation work with androMDA, however no luck yet. According to the website tutorial the OCL plug-in is automatically lo

[Andromda-user] bmp4struts - non-empty name of JSP page

2005-03-20 Thread Wojciech Ciesielski
Hi – I’m still trying to make some simplest own example of web-app made with bpm4struts but I’m encountering en error:   ERROR [AndroMDA:VALIDATION:ERROR] 1) org.andromda.cartridges.bpm4struts.metafacades.StrutsJsp[my::firstusecase::Show me::Show me activity::undefined]: A JSP page must h

Re: [Andromda-user] MySql database script generation

2005-03-20 Thread Gabriela Chiribau
Also for mysql the DatTime type is generated as datatype.DateTime which is a syntaz error for mysql --- Gabriela Chiribau <[EMAIL PROTECTED]> wrote: > I am working on a MySql enabled project. > > I have changed the required lines in the > project.properties, created the JBOSS data source > etc..

RE: [Andromda-user] BPM4Struts: define view types for table column without defining action to one row

2005-03-20 Thread Wouter Zoons
> -Original Message- > From: [EMAIL PROTECTED] [mailto:andromda-user- > [EMAIL PROTECTED] On Behalf Of [EMAIL PROTECTED] > Sent: Saturday, March 19, 2005 11:33 PM > To: andromda-user@lists.sourceforge.net > Subject: RE: [Andromda-user] BPM4Struts: define view types for table > column with

[Andromda-user] MySql database script generation

2005-03-20 Thread Gabriela Chiribau
I am working on a MySql enabled project. I have changed the required lines in the project.properties, created the JBOSS data source etc... In the model, I defined a class that has an attribute called id of type string, and stereotyped it with "Primary Key". There are 2 problems with the sql scri

RE: [Andromda-user] Sending parameters between use cases (II)

2005-03-20 Thread Wouter Zoons
> 5- to my surprise, there is in fact NO NEED to put a trigger on >activity2's transition from its initial state to the first action >state, which contains a call to it's controller doStuff(paramA,paramB). > [WZ> ] indeed, I thought it would be less work to not repeat those parameters, the

RE: [Andromda-user] Is anyone using SwixML and AndroMDA ?

2005-03-20 Thread Wouter Zoons
Go for it! > -Original Message- > From: [EMAIL PROTECTED] [mailto:andromda-user- > [EMAIL PROTECTED] On Behalf Of Ludovic Maitre > Sent: Sunday, March 20, 2005 1:53 PM > To: andromda-user@lists.sourceforge.net > Subject: [Andromda-user] Is anyone using SwixML and AndroMDA ? > > Hello, >

Re: [Andromda-user] Sending parameters between use cases (II)

2005-03-20 Thread vido
Alright, there is a way, then. I just tested to be sure. Thanks for the clarification, it helped a lot. In case other peoples would like to know, let me explain the procedure. Here is how I did it : 1- create two uses cases case1 and case2, with their activity diagrams activity1 and activity2

[Andromda-user] Is anyone using SwixML and AndroMDA ?

2005-03-20 Thread Ludovic Maitre
Hello, I want to generate a SWING gui interface for an andromda project. Has anybody working on this ? i plan to generate the UI in a manner similar to BPM4Struts but with SwixML swing interfaces instead of JSP and a custom (indetermined, ideas appreciated) controller for replacing the Struts pa