[appfuse-user] Tutorial JSF integration-test EditPerson error

2008-08-22 Thread Steve Wall
Hello, Running "mvn integration" errors on EditPage. Details below. Any help much appreciated! Steve AppFuse: appfuse-basic-jsf Maven version: 2.0.9 Java version: 1.6.0_10-rc OS name: "windows xp" version: "5.1" arch: "x86" Family: "windows" http://www.nabble.com/file/p19115679/mvn.out mvn.ou

Re: [appfuse-user] Adding a new CSS to appfuse 2.X

2008-08-22 Thread Matt Raible
You should be able to get them from SVN. https://appfuse-css.dev.java.net/ Matt On Fri, Aug 22, 2008 at 12:48 PM, Richard Nduka <[EMAIL PROTECTED]> wrote: > Hi Matt, > > Thanks a lot. I am trying to do the integration but have not been able to > download the CSS design i want (fuseapp). > Please

Re: [appfuse-user] Adding a new CSS to appfuse 2.X

2008-08-22 Thread Richard Nduka
Hi Matt, Thanks a lot. I am trying to do the integration but have not been able to download the CSS design i want (fuseapp). Please where can i download the CSS design. Thanks for your assistance. On Thu, Aug 21, 2008 at 11:01 PM, Matt Raible <[EMAIL PROTECTED]>wrote: > It's been a couple years

Re: [appfuse-user] AppFuse to production

2008-08-22 Thread Matt Raible
On Fri, Aug 22, 2008 at 3:27 AM, Martin Homik <[EMAIL PROTECTED]> wrote: > > Just to complete. Add the following plugin overrides to the prod profile. > Can it be simplified? Possibly in a future version of Maven that supports attributes: http://raibledesigns.com/rd/entry/maven_now_supports_attri

Re: [appfuse-user] How to pass Array of Objects from Struts 2 Form to Action?

2008-08-22 Thread Kropp, Henning
Hi, I success you use a List and iterate over it. Like this: In your Action: private List myObjects; // with getter and setter ! use the prepare methode to create the objects public void prepare() throws Exception { myObjects = new ArrayList(); myObjects.add(new MyObject());

Re: [appfuse-user] AppFuse to production

2008-08-22 Thread Martin Homik
Just to complete. Add the following plugin overrides to the prod profile. Can it be simplified? maven-surefire-plugin true org.codehaus.mojo dbunit-maven-plugin 1.0-beta-1 true org.codehaus.mojo hibernate3-maven-plugi

[appfuse-user] How to pass Array of Objects from Struts 2 Form to Action?

2008-08-22 Thread Allan DV. DaƱos
Hi all, Is there a way I can implement this one? I know that array of fields is allowed: And in the action I have: int[] num; //and its setter This one is also allowed: And in the action I have: MyObj myobj; //and its setter How about if I want multiple objects in