[appfuse-user] Integration Test fails due to 'proxy' authentication problem

2007-09-23 Thread tnsilver
I have almost got appfuse2-m5 (struts) working and all tutorials finished and tested. Most of my problems originate from the fact that my Appfuse evaluation is done at work behind a proxy. I have managed to configured a central repository for my team mates and me, configured proxy settings for MyE

Re: [appfuse-user] Integration Test fails due to 'proxy' authentication problem

2007-09-23 Thread Matt Raible
I've heard of similar things caused by Canoo WebTest. Unfortunately, I don't have any way to reproduce/fix this so the best advice I can give is to contact the WebTest mailing list: http://webtest.canoo.com http://lists.canoo.com/mailman/listinfo/webtest/ Matt On 9/23/07, tnsilver <[EMAIL PROTE

Re: [appfuse-user] Integration Test fails due to 'proxy' authentication problem

2007-09-23 Thread tnsilver
I have done some research and tests of my own. It seems this is a real show stopper. First of all I have tried to integrate Ant's task into the pom, right before the call to web-tests.xml. It did not work. I got the usual 'Could not create task or type of type: setproxy' so I begun upgrading to 1

Re: [appfuse-user] Integration Test fails due to 'proxy' authentication problem

2007-09-23 Thread Matt Raible
Are you bypassing the proxy for localhost? If you are, it seems like a bug in WebTest. It should work w/o an internet connection or behind a proxy. I doubt it'll work for you, but all the clients I've worked with (that used Maven) were able to get an exemption from IT and bypass the proxy server.

Re: [appfuse-user] Can not edit record via browser (JSF basic archetype)

2007-09-23 Thread phamvubinh
If I use 2.0-rc1 version, I can edit my record via browser. But I can not do that with 2.0 final version. If I have just only one ID link in the row in my table, how can I fix it? mraible wrote: > > Do you have more than one link in the row in your table? If so, you > might comment out the high

Re: [appfuse-user] Can not edit record via browser (JSF basic archetype)

2007-09-23 Thread phamvubinh
I found out the solution. Because of ID name of my pojo is different from the ID name which generated by appfuse. phamvubinh wrote: > > If I use 2.0-rc1 version, I can edit my record via browser. But I can not > do that with 2.0 final version. > If I have just only one ID link in the row in my

Re: [appfuse-user] How to deal with potential stale connections in pool?

2007-09-23 Thread Richard Paul
I'm having a similar problem with Appfuse 2.0-final. After a night of inactivity the following exception is thrown the first time a user attempts to use the application. Subsequent requests work as normal. The DBCP setup is the default provided by Appfuse and the MySql (5.0.26) install hasn't b

[appfuse-user] Action Tests suddnly failing with InitializationError0

2007-09-23 Thread Rob Hills
Hi All, I've been happily building, testing and running my app within Eclipse over the past few weeks. I've been working on Stylesheet stuff today, doing a number of jetty restarts from within Eclipse. Suddenly, about an hour or so ago, everything stopped. I'm now seeing the following: - w

Re: [appfuse-user] Can not edit record via browser (JSF basic archetype)

2007-09-23 Thread Matt Raible
Is this a bug in AMP? It should use the property name of your @Id. Matt On 9/23/07, phamvubinh <[EMAIL PROTECTED]> wrote: > > I found out the solution. Because of ID name of my pojo is different from the > ID name which generated by appfuse. > > > phamvubinh wrote: > > > > If I use 2.0-rc1 versio

Re: [appfuse-user] How to deal with potential stale connections in pool?

2007-09-23 Thread Matt Raible
It sounds like you need to add autoReconnect=true to your jdbc.url. I believe this was added by default to recent versions of the MySQL Driver - maybe you're using an older driver? Matt On 9/23/07, Richard Paul <[EMAIL PROTECTED]> wrote: > > I'm having a similar problem with Appfuse 2.0-final. A

Re: [appfuse-user] Action Tests suddnly failing with InitializationError0

2007-09-23 Thread Matt Raible
The WAR files are turned into JARs in the target/warpath directory. Maybe you ran "mvn clean"? Matt On 9/23/07, Rob Hills <[EMAIL PROTECTED]> wrote: > Hi All, > > I've been happily building, testing and running my app within Eclipse over > the past few weeks. I've been working on Stylesheet stu

Re: [appfuse-user] Action Tests suddnly failing with InitializationError0

2007-09-23 Thread Rob Hills
Hi Matt, On 23 Sep 2007 at 20:58, Matt Raible wrote: > The WAR files are turned into JARs in the target/warpath directory. > Maybe you ran "mvn clean"? Er, yest, I've run mvn clean on numerous occasions for this project, but this is the first time I've come across this problem. How do I get th

Re: [appfuse-user] Can not edit record via browser (JSF basic archetype)

2007-09-23 Thread phamvubinh
I don't know. The property name of my pojo is "id_phuong", but the property id name which generated to .xhtml file is "id", so that's why my xxxForm.xhtml can not get id value. mraible wrote: > > Is this a bug in AMP? It should use the property name of your @Id. > > Matt > > On 9/23/07, phamv

Re: [appfuse-user] Can not edit record via browser (JSF basic archetype)

2007-09-23 Thread Matt Raible
What's the "getter" method named in your POJO? I'm guessing getIdPhuong()? If so, the xhtml should have idPhuong. If it doesn't, that's a bug. You'll need to enter it in JIRA if you want to see it fixed in the next release. Thanks, Matt On 9/23/07, phamvubinh <[EMAIL PROTECTED]> wrote: > > I don

Re: [appfuse-user] Action Tests suddnly failing with InitializationError0

2007-09-23 Thread Rob Hills
Hi Matt, On 23 Sep 2007 at 21:21, Matt Raible wrote: > On 9/23/07, Rob Hills <[EMAIL PROTECTED]> wrote: > > On 23 Sep 2007 at 20:58, Matt Raible wrote: > > > > > The WAR files are turned into JARs in the target/warpath directory. > > > Maybe you ran "mvn clean"? > > > > Er, yest, I've run mvn cle

Re: [appfuse-user] Can not edit record via browser (JSF basic archetype)

2007-09-23 Thread phamvubinh
The identified property is "id_phuong", so the getter method is getId_phuong(). but the xhtml has "id"... Maybe that's a bug. mraible wrote: > > What's the "getter" method named in your POJO? I'm guessing > getIdPhuong()? If so, the xhtml should have idPhuong. If it doesn't, > that's a bug. You