Re: [appfuse-user] maven

2009-09-05 Thread Ger-Jan te Dorsthorst
I have seen this error too when running maven from eclipse (m2eclipse). Not sure what the exact cause is, but it seems to be related to http://jira.codehaus.org/browse/MOJO-682 You may be able to fix it by copying $JAVA_HOME/lib/tools.jar to $JAVA_HOME/jre/lib/ext Hope this helps. GJ A.S wr

Re: [appfuse-user] Error building new project

2009-08-28 Thread Ger-Jan te Dorsthorst
Perhaps it was just a transient error? When I ran mvn yesterday I couldn't get tomcat 6.0.14 from http://archive.apache.org at first. Turned out to be due to site maintenance downtime. Ger-Jan Mark Rosenthal wrote: I added the following to my pom.xml, and all appears to be working: howardl

Re: [appfuse-user] Generating CRUD with POJO in sub-package

2009-07-14 Thread Ger-Jan te Dorsthorst
Would it be possible to first put the pojo in the model package, then use appfuse:gen and then refactor the pojo back to the subpackage? I think an ide like eclipse would do this quite well. Perhaps you will have to adjust a couple of references manually. Probably not the solution you're looki

Re: [appfuse-user] GenericManager's getAll returns empty list in controller test?

2009-06-25 Thread Ger-Jan te Dorsthorst
.cfg.xml, the element was there all the time. Shouldn't appfuse:gen have added it in both files? Ger-Jan Ger-Jan te Dorsthorst wrote: Oops; just noticed that I deleted too many lines from the code I sent earlier. It's missing the debug lines I referred to. Here is what I m

Re: [appfuse-user] GenericManager's getAll returns empty list in controller test?

2009-06-24 Thread Ger-Jan te Dorsthorst
); List downloads = (List) m.get("downloadList"); log.debug("string repres of download list (+ size) in model map = "+downloads.toString()+" ("+downloads.size()+")"); assertNotNull(m.get("downloadList")); assertTrue

Re: [appfuse-user] GenericManager's getAll returns empty list in controller test?

2009-06-24 Thread Ger-Jan te Dorsthorst
Hello Matt, list, Matt Raible wrote: Can you post the code for your DownloadControllerTest? Here's the code. It is what is generated by the AF maven plugin plus a couple of added debug lines, to verify that the controller is wired correctly and that the downloadList retrieved from the model

Re: [appfuse-user] Suggestions for adding content management functionality?

2009-06-13 Thread Ger-Jan te Dorsthorst
mport some additional/unused functionality. Post back to the group with what you learn. I will. Ger-Jan te Dorsthorst wrote: What would be a good way to add some content management functionality to a (Spring MVC) Appfuse applic

[appfuse-user] Suggestions for adding content management functionality?

2009-06-11 Thread Ger-Jan te Dorsthorst
Hi, What would be a good way to add some content management functionality to a (Spring MVC) Appfuse application? I'm not looking for integration with a full-fledged CMS - no need for things like workflow or multi-channel output. It's just that in some cases, clients ask for a reasonably easy

Re: [appfuse-user] Error executing appfuse:full-source

2009-03-07 Thread Ger-Jan te Dorsthorst
I think I've seen this before. Could it be that the proxy you're behind doesn't support (or is not configured to support) HTTP PROPFIND methods? See for example: http://vsingleton.blogspot.com/2008/04/svn-propfind-request-failed-on.html Ger-Jan jgoodman999 wrote: Did anyone ever answer this?

Re: [appfuse-user] Some questions on architecture

2009-03-03 Thread Ger-Jan te Dorsthorst
icks and the service layer being composed with these small bricks. Also, in the service layer there are annotations to use web services so these methods are exposed to external web service clients. HTH, Oscar On Tue, Mar 3, 2009 at 12:35 AM, Ger-Jan te Dorsthorst wrote: Hi, Here's a co

[appfuse-user] Some questions on architecture

2009-03-02 Thread Ger-Jan te Dorsthorst
Hi, Here's a couple of questions for you architecture boffins: It is clear that the source tree of Appfuse is neatly organised. I can see the purpose of having a dao package with interfaces and one or several dao/impl packages with specific implementations for those dao classes: it makes it e

Re: [appfuse-user] Linux / Tomcat issue

2009-02-12 Thread Ger-Jan te Dorsthorst
tion environment. If you have any other ideas, I would love to hear them. Regards, Waldo On Wed, Feb 11, 2009 at 3:18 PM, Ger-Jan te Dorsthorst <mailto:ger...@dds.nl>> wrote: Nathan Anderson wrote: As I recall, you really only have 2 choices: disable the Java securi

Re: [appfuse-user] Linux / Tomcat issue

2009-02-11 Thread Ger-Jan te Dorsthorst
Nathan Anderson wrote: As I recall, you really only have 2 choices: disable the Java security, or build a java security policy for your app. I have never done the work of building a security policy, but my understanding is that you basically need to run the app, see what fails and add a poli

Re: [appfuse-user] Rebuild from scratch? (org.hibernate.MappingException: Unable to load class)

2008-05-18 Thread Ger-Jan te Dorsthorst
You should make sure there aren't two versions of hibernate.cfg.xml floating around in your project. This is usually the source of this problem. Matt On Sat, May 17, 2008 at 10:25 AM, Ger-Jan te Dorsthorst <[EMAIL PROTECTED]> wrote: Sorry, I mistyped the path. It's in

Re: [appfuse-user] Rebuild from scratch? (org.hibernate.MappingException: Unable to load class)

2008-05-17 Thread Ger-Jan te Dorsthorst
, Ger-Jan te Dorsthorst <[EMAIL PROTECTED] <mailto:[EMAIL PROTECTED]>> wrote: Hi, Is there a way to force mvn to rebuild everything from scratch? The reason I'm asking is mvn jetty:run-war being unable to locate some class, even though its source is verifiably av

[appfuse-user] Rebuild from scratch? (org.hibernate.MappingException: Unable to load class)

2008-05-17 Thread Ger-Jan te Dorsthorst
Hi, Is there a way to force mvn to rebuild everything from scratch? The reason I'm asking is mvn jetty:run-war being unable to locate some class, even though its source is verifiably available. If I try to do mvn clean; mvn jetty:run-war in a basic AppFuse Spring MVC project, and when workin