Re: [appfuse-user] Appfuse2 - Firefox - Form data disappears

2007-09-04 Thread Rob van Oostrum
Easiest workaround would be to popup the Terms of Service in its own window by setting the target attribute on the link to it. On 9/4/07, mortalexplorer <[EMAIL PROTECTED]> wrote: > > This is the first time I'm using appfuse. > > Currently using version 2 along with struts2, spring and hibernate.

Re: [appfuse-user] hibernate3 and cobertura plugins not getting along

2007-04-06 Thread Rob van Oostrum
what I ended up doing, not exactly sure why since I haven't touched this particular project in a little while. R. On 4/6/07, sarat.pediredla <[EMAIL PROTECTED]> wrote: Rob, I am not too clued into maven but how do I do this? Rob van Oostrum-2 wrote: > > I worked around this by

Re: [appfuse-user] hibernate3 and cobertura plugins not getting along

2007-04-05 Thread Rob van Oostrum
ry(Configuration.java:1479) at org.hibernate.cfg.Configuration.doConfigure(Configuration.java:1458) mraible wrote: > > Sorry, I'm out of answers - you know as much as I do at this point. > > On 3/6/07, Rob van Oostrum <[EMAIL PROTECTED]> wrote: >> Just tried it. No

Re: [appfuse-user] database table names and cobertura

2007-03-19 Thread Rob van Oostrum
The exception is not thrown by cobertura, but by the hibernate3 plugin. The cobertura plugin does some dirty on-the-fly things with the runtime classpath that breaks the hibernate3 plugin when it wants to scan your classes for annotations. The workaround I use is to move it into a profile that's t

Re: [appfuse-user] mod_jk and j_security_check

2007-03-16 Thread Rob van Oostrum
Looks like the application is looking for http://quantum.dbt.com/login.jsp which is different from wherever you're hitting the app on /quantum/j_security_check You should configure the front side of the proxy in tomcat (see proxyName and proxyPort) R. On 3/16/07, rfisk <[EMAIL PROTECTED]> wrote

Re: [appfuse-user] mod_jk and j_security_check

2007-03-16 Thread Rob van Oostrum
I hate mod_jk. I use mod_rewrite in combination with either mod_proxy_ajp (requires Apache 2.2.x) or mod_proxy_http (if I'm stuck with 2.0.x or below). Apache 2.2 has a load balancer module as well if that's what you currently need mod_jk for (as well). Here's the proxy config template I use for

Re: [appfuse-user] mvn jetty:run => OutOfMemoryError: PermGen space

2007-03-14 Thread Rob van Oostrum
This is the reference I've been using a lot lately: http://java.sun.com/docs/hotspot/gc5.0/gc_tuning_5.html -XX:+UseConcMarkSweepGC works well on hosts with fewer than 2 CPUs. If you're lucky enough to have a 4-way (or - *gasp* - more) box to play with, -XX:+UseParallelGC is probably the better o

Re: [appfuse-user] hibernate3 and cobertura plugins not getting along

2007-03-06 Thread Rob van Oostrum
Just tried it. No luck. Same error. On 3/6/07, Matt Raible <[EMAIL PROTECTED]> wrote: I believe I received an e-mail off-list where someone said reverting to version 2.0 of the cobertura plugin fixed there problem. Matt On 3/6/07, Rob van Oostrum <[EMAIL PROTECTED]> wrote: > I

[appfuse-user] hibernate3 and cobertura plugins not getting along

2007-03-06 Thread Rob van Oostrum
I get this error running 'mvn site' on my projects: [INFO] Instrumentation was successful. [INFO] [resources:testResources] [INFO] Using default encoding to copy filtered resources. [INFO] [compiler:testCompile] [INFO] Nothing to compile - all classes are up to date [INFO] Preparing hibernate3:hb

Re: [appfuse-user] hibernate3:hbm2ddl

2007-03-02 Thread Rob van Oostrum
add true to the of the hibernate3-maven-plugin R. On 3/2/07, Stine, Matt <[EMAIL PROTECTED]> wrote: I remember in the past (1.9.x) that when I made changes to my model classes, ant script would update my DB schema. It seems that the equivalent 2.0 operation, "mvn compile hibernate3:hbm2ddl

Re: [appfuse-user] Tomcat 6.0.10

2007-03-01 Thread Rob van Oostrum
Have you tried this: - have 2 profiles: one for tomcat 5.5 and one for 6 - the profile for 6 sets a property - the profile for 5 activates whenever that property isn't set The dependency you need for 5.5 goes in its profile and isn't picked up whenever the profile for 6 is active. Haven't tried

Re: [appfuse-user] hibernate.cfg.xml incorrectly included by war overlay for Appfuse2 modular archetypes

2007-02-25 Thread Rob van Oostrum
es.appfuse.org/browse/APF Matt On 2/25/07, Rob van Oostrum <[EMAIL PROTECTED]> wrote: I also tried reverting my change, and changing the warpath plugin configuration so it now says: applicationContext- resources.xml,ApplicationResources*.properties,ehcache.xml,hibernate. cf

Re: [appfuse-user] hibernate.cfg.xml incorrectly included by war overlay for Appfuse2 modular archetypes

2007-02-25 Thread Rob van Oostrum
d in the war file. Any ideas? Cheers Rob On 25-Feb-07, at 9:05 PM, Rob van Oostrum wrote: That's what I was looking at originally. I was already working against 2.0-M4-SNAPSHOT and didn't have any luck. I tried running 'mvn -U' and running 'mvn install'

Re: [appfuse-user] hibernate.cfg.xml incorrectly included by war overlay for Appfuse2 modular archetypes

2007-02-25 Thread Rob van Oostrum
t the way you have done, or exclude files from the warpath plugin. The warpath plugin is better because that will exclude it from your classpath as well. http://issues.appfuse.org/browse/APF-571 Matt On 2/25/07, Rob van Oostrum <[EMAIL PROTECTED]> wrote: Didn't see this mentioned before go

[appfuse-user] hibernate.cfg.xml incorrectly included by war overlay for Appfuse2 modular archetypes

2007-02-25 Thread Rob van Oostrum
Didn't see this mentioned before going through my archives, so forgive me if this is old news, but I thought it might save some people some troubleshooting. Of course, it would be nice to have this incorporated in the modular archetypes. When I create a new project using the modular Spring

Re: [appfuse-user] Turn on Ehcache in Appfuse

2007-01-30 Thread Rob van Oostrum
http://ehcache.sourceforge.net/documentation/hibernate.html Are you setting this one?: hibernate.cache.provider_configuration_file_resource_path=/name_of_configuration_resource The error might be caused by a missing configuration item. R. On 1/30/07, Ding, Qin <[EMAIL PROTECTED]> wrote: Fr