Re: [appfuse-user] Creating an application in appfuse with an existing database

2007-01-14 Thread Richard Nduka
I tried using an existing database and it worked as stated. Thanks Matt. On 1/14/07, Matt Raible <[EMAIL PROTECTED]> wrote: AppFuse doesn't require you to create a database, it can use an existing one. Just change your database.name property in properties.xml to point to your existing database

[appfuse-user] Application level question - Product versus Item

2007-01-14 Thread Jonathan Tse
Hi all, In jpetstore (spring sample app), a Product may contain several items and customer will purchase an item instead of a product. I found the term "item" and "lineitem" in a lot of textbook too. In reality, is there any case that contains product -> items relationship? I am implement

Re: [appfuse-user] warpath dependency issue with AppFuse M2 basic struts tutorial

2007-01-14 Thread Matt Raible
Can you try running the command again? On 1/14/07, MyWorkId <[EMAIL PROTECTED]> wrote: Yes . here is the snippet from the pom ... appfuse http://static.appfuse.org/repository java.net https://maven2-repository.dev.java.net/nonav/repository

RE: [appfuse-user] warpath dependency issue with AppFuse M2 basic struts tutorial

2007-01-14 Thread MyWorkId
Yes . here is the snippet from the pom ... appfuse http://static.appfuse.org/repository java.net https://maven2-repository.dev.java.net/nonav/repository appfuse http://static.appfuse.org/repository Regards Dave ---

Re: [appfuse-user] warpath dependency issue with AppFuse M2 basic struts tutorial

2007-01-14 Thread Matt Raible
Do you have http://static.appfuse.org/repository listed as a ? Matt On 1/14/07, Dave <[EMAIL PROTECTED]> wrote: I fillwed along with the tutorial using Struts 2 . Have this dependeny issue at the action step Looking through the dependency, the repo doesn't appear to have the warpath.

[appfuse-user] warpath dependency issue with AppFuse M2 basic struts tutorial

2007-01-14 Thread Dave
I fillwed along with the tutorial using Struts 2 . Have this dependeny issue at the action step Looking through the dependency, the repo doesn't appear to have the warpath. Any suggestions on how to proceed? Regards Dave 1) org.appfuse:appfuse-web-common:warpath:2.0-m2 Try download

Re: [appfuse-user] Appfuse 2.0 M2

2007-01-14 Thread Sib
Adding the version worked. Thanks Matt. Sib On 1/14/07, Matt Raible <[EMAIL PROTECTED]> wrote: The problem may be a bug in the archetypes. We need to add version numbers to most of the plugins so it tries to get a specific version rather than a snapshot. Try changing:

Re: [appfuse-user] M2 problems

2007-01-14 Thread Matt Raible
On 1/14/07, Tuncay A. <[EMAIL PROTECTED]> wrote: Thanks Matt, Should I simply crate a service and data package with each having af .pom and depend each respectively with appuse equivalent service and data or is there another simpel way ? I'm mean using the archtype "JSF Modular", where and how

Re: [appfuse-user] Appfuse 2.0 M2

2007-01-14 Thread Matt Raible
The problem may be a bug in the archetypes. We need to add version numbers to most of the plugins so it tries to get a specific version rather than a snapshot. Try changing: org.codehaus.cargo cargo-maven2-plugin

Re: [appfuse-user] M2 problems

2007-01-14 Thread Tuncay A.
Thanks Matt, Should I simply crate a service and data package with each having af .pom and depend each respectively with appuse equivalent service and data or is there another simpel way ? I'm mean using the archtype "JSF Modular", where and how should I create my own model/service/dao classes

Re: [appfuse-user] Appfuse 2.0 M2

2007-01-14 Thread Sib
Hi, I tried running this a couple of times and still getting the error. I saw that it exists in the repo at http://snapshots.repository.codehaus.org but its still failing to resolve. Strange... Thanks, Sib On 1/14/07, Michael Horwitz <[EMAIL PROTECTED]> wrote: Hi, The plugin in question do

Re: [appfuse-user] M2 problems

2007-01-14 Thread Matt Raible
On 1/14/07, Tuncay A. <[EMAIL PROTECTED]> wrote: Hi, After creating the archetype "JSF Modular" I followed the section "Run your application" in Appfuse QuickStart. I got stuck with following: 1. The package "core" doesn't include service/data packages ? Should I create them by myself and how

Re: [appfuse-user] Creating an application in appfuse with an existing database

2007-01-14 Thread Matt Raible
AppFuse doesn't require you to create a database, it can use an existing one. Just change your database.name property in properties.xml to point to your existing database. It will create the app_user, user_role and role tables in this database. Is that what you're looking for? Have you tried u

[appfuse-user] M2 problems

2007-01-14 Thread Tuncay A.
Hi, After creating the archetype "JSF Modular" I followed the section "Run your application" in Appfuse QuickStart. I got stuck with following: 1. The package "core" doesn't include service/data packages ? Should I create them by myself and how ? 2. Using "mvn war:inplace" from basedir I get

Re: [appfuse-user] Creating an application in appfuse with an existing database

2007-01-14 Thread Richard Nduka
im using appfuse 1.9.4 with postgres 8. On 1/13/07, Matt Raible <[EMAIL PROTECTED]> wrote: Which version of AppFuse are using? Matt On 1/13/07, Richard Nduka <[EMAIL PROTECTED]> wrote: > > Hi, > > How do i get appfuse not to create a database but instead use an existing > database and existin

Re: [appfuse-user] Appfuse 2.0 M2

2007-01-14 Thread Michael Horwitz
Hi, The plugin in question does exist in the http://snapshots.repository.codehaus.org repository as listed below. Sometimes maven has issues downloading artifacts - please could you try running again to check? Thanks Mike On 1/13/07, Sib <[EMAIL PROTECTED]> wrote: He All, Seems Tapestry-mod

Re: [appfuse-user] Property editor support and validator rules conflict

2007-01-14 Thread Michael Horwitz
You could use the onBindAndValidate() method of AbstractFormController to perform custom validation? The method supplies both the request and the command object, so you have access to all you should need to complete validation. Mike On 1/13/07, Jarek Gilewski <[EMAIL PROTECTED]> wrote: Hello,