[appfuse-user] Bean population in BaseDaoTestCase (Hibernate)

2008-03-14 Thread Frank-Michael Jaeschke
Hi, in BaseDaoTestCase Spring BeanUtils is used to populate values from a HashMap values into a bean, but it doesn't work for me (it doesn't set values). Is it possible to use BeanUtils.html#populate(Object, Map) from commons beanutils instead ? The PersonDaoTestCase is working afterwards for m

[appfuse-user] Debugging with netbeans 6

2008-03-14 Thread Kropp, Henning
Hi, I can't get debugging in netbeans to work. I tried the "non-trivial" setup for netbeans mentioned early on this list http://www.nabble.com/Debugging-in-Netbeans-6.0---Appfuse-2.0.1--td14407698s2369.html And I have setup the maven2ide plugin to use the maven-2.0.7 source folder. I can buil

[appfuse-user] Migrating AppFuse 1.9.4 JSF 1.1 application to JSF 1.2 on Tomcat 6

2008-03-14 Thread Irshad Buchh
Hi, Can anyone share experience of migration an AppFuse 1.9.4 JSF 1.1 application to AppFuse 1.2 (myfaces+facelets) to Tomcat 6. --Irshad. -- View this message in context: http://www.nabble.com/Migrating-AppFuse-1.9.4-JSF-1.1-application-to-JSF-1.2-on-Tomcat-6-tp16048033s2369p16048033.html Sen

Re: [appfuse-user] Struts OGNL Expression

2008-03-14 Thread Joachim Ansorg
Hi, you're right - ognl is confusing :) I always found it helpful to look at the OGNL specification. According to http://www.ognl.org/2.6.9/Documentation/html/LanguageGuide/varref.html #name means it's a variable. I usually use this form for local constructs like this: nam

[appfuse-user] full-source for appfusa-light

2008-03-14 Thread Paolo Scopa
hi just trying to get the full-source for appfuse-light (1.8.1) but it looks like it is not defined Maybe i dont need them in the light version? Also im a bit confused with the 60 download I plan to write a web application with hibernate, spring, jsf (query ajax) I downloaded appfuse-light-jsf-hi

[appfuse-user] Debugging missing pages

2008-03-14 Thread Derek Broughton
Appfuse 2.0.1, Struts basic Can anybody suggest what I need to do to figure out why a page simply refuses to display? If I'm on my accountList.jsp (where the URL is /accounts.html) page, and click on a link to edit an account (url /editAccounts.html, page is accountForm.jsp), nothing happens - no

Re: [appfuse-user] full-source for appfusa-light

2008-03-14 Thread Matt Raible
You don't need full-source with AppFuse Light as it already comes with the source. The Ajax "extra" is for Spring MVC (the default). Ajax4JSF is already integrated in the JSF version. Matt On Mar 14, 2008, at 8:26 AM, Paolo Scopa wrote: hi just trying to get the full-source for appfuse-li

[appfuse-user] Transactions and Errors

2008-03-14 Thread Jonathan Ritchie
Hello I have built a large chunk of a webapp using appfuse2. Its been great, thanks for the work on the skeleton. I have a couple of questions however. I am using a Spring MVC Basic archetype and am not sure how transcationality is supported in hibernate and/or appfuse. Basically at the most si

Re: [appfuse-user] Debugging missing pages

2008-03-14 Thread Matt Raible
If you comment out (or delete) everything in , does it work? Matt On Mar 14, 2008, at 9:21 AM, Derek Broughton wrote: Appfuse 2.0.1, Struts basic Can anybody suggest what I need to do to figure out why a page simply refuses to display? If I'm on my accountList.jsp (where the URL is /accounts

Re: [appfuse-user] Transactions and Errors

2008-03-14 Thread Flavio Froes
transactions are usually works on the service level (Managers). spring should manage your transactions. configure it on your applicationContext.xml if it is not already configures... HTH, Flávio Oliva On Fri, Mar 14, 2008 at 5:00 PM, Jonathan Ritchie <[EMAIL PROTECTED]> wrote: > Hello > > I hav