Re: [appfuse-user] Creating a project based on an existing project (based on Appfuse)

2008-07-17 Thread oscar perez
Thansk Matt! I knew you will answer me (eventually). You always do :) At the end I solved it by using your plugin maven-warpath-plugin and maven-war-plugin. This way I only have to copy over the new files and it does separation of the classes from the view as well. I will try create-from-project no

Re: [appfuse-user] Problem with JPA Persistence

2008-07-17 Thread Michael Duergner
I finally figured out what's been the problem concerning my tests not working. I seperated my project in even more modules (model,dao,service,web) than just web and core. The applicationContext.xml in the dao module was renamed to applicationContext-dao.xml On Thu, Jul 17, 2008 at 1:18 AM, Michael

Re: [appfuse-user] Creating a project based on an existing project (based on Appfuse)

2008-07-17 Thread Matt Raible
The latest archetype plugin should allow you to do "mvn archetype:create-from-project". I haven't tried it myself, but I believe it works. Matt On Wed, Jul 9, 2008 at 2:17 AM, oscar perez <[EMAIL PROTECTED]> wrote: > Hi there, > I was wondering if could be possible to reuse the pattern used for a

Re: [appfuse-user] to use *.html extension or not..

2008-07-17 Thread Matt Raible
In a future release, I'm hoping to move to extensionless URLs and allow the underlying web framework to use a unique extension. http://raibledesigns.com/rd/entry/extensionless_urls_in_java_web Matt On Thu, Jul 17, 2008 at 3:33 AM, reddeagle9 <[EMAIL PROTECTED]> wrote: > > I came across the follo

Re: [appfuse-user] Richfaces

2008-07-17 Thread Matt Raible
The only thing I can think of is RichFaces Filter doesn't support . You might try using instead. Matt On Thu, Jul 17, 2008 at 8:10 AM, Puck <[EMAIL PROTECTED]> wrote: > > Hallo! > i'm trying to integrate appfuse with richfaces, but i have an error: > "Filter mapping for chameleon filter richface

Re: [appfuse-user] Help in Model Layer

2008-07-17 Thread Michael Duergner
I think you'd either have to implement the User class yourself or if possible create a View based upon your two tables and map the columns needed. We used the first solution for a application by simply excluding the appfuse-data-common package, extraced this into our project and created (for a modu

[appfuse-user] Help in Model Layer

2008-07-17 Thread nani2ratna
Hi, In our application , database design is different from the appfuse default database tables for user and roles. For user only we have 2 tables. Tables design is like this> first tables is user table which consists of following tables a)ApplicationID (Foriegn key for application table).

Re: [appfuse-user] Struts 2 datepicker not working

2008-07-17 Thread J. David Mendoza
What does it say (the error), we can find what's wrong... David M. P.S.: Sorry for the delay, I was on vacation... 2008/7/2 Tuncay A. <[EMAIL PROTECTED]>: > > I did exactly what you did but without any result. I think I will create an > Jira Issue on this. > > Anyway, thank you very much for th

[appfuse-user] Richfaces

2008-07-17 Thread Puck
Hallo! i'm trying to integrate appfuse with richfaces, but i have an error: "Filter mapping for chameleon filter richfaces do not contain wilcard prefix or suffix" i put in my web.xml org.richfaces.SKIN blueSky RichFaces Filter richfaces org.ajax4jsf.Filter richfaces Faces Servlet REQUEST

[appfuse-user] to use *.html extension or not..

2008-07-17 Thread reddeagle9
I came across the following while trying to integrate FCKEditor into one of my appfuse projects. I pretty much hit an immediate road block due the following: [code] http://dev.fckeditor.net/browser/FCKeditor.Java/tags/2.4/java-core/src/main/java/net/fckeditor/FCKeditor.java String sLink = bas

[appfuse-user] Job openings

2008-07-17 Thread tim robertson
All, Sorry for the misuse of the list, but I wanted to reach this audience. The Global Biodiversity Information Facility is an international organisation committed to helping make the world biodiversity information freely and openly available. We are currently seeking 2 java developers (Spring, H

[appfuse-user] 2 job openings

2008-07-17 Thread tim robertson
All, Sorry for the misuse of the list, but I wanted to reach this audience. The Global Biodiversity Information Facility is

Re: [appfuse-user] Doubt in jsp variables

2008-07-17 Thread alibehzadian
... user.id maps to getUser().setId() ;-) But about JavaBean Naming conventions: Each bean has a setter and a getter method that begins with "set" and "get" followed by bean name with uppercased first character. So if you have a bean named "user", you should have setUser(...) and getUser() meth