[appfuse-user] Java 5 Enums Tutorial Question

2008-03-26 Thread paulie
This seems to be the enumeration solution that I have been looking for and have set up my enum to follow this model. I am new to the enum concept and have a couple of questions that the tutorial didn't discuss. First, where do I put the property tag reference for the enumClassName parameter? I

[appfuse-user] Build Error: The plugin 'org.apache.maven.plugins:maven-http-plugin' does not exist or no valid version could be found

2008-03-26 Thread Cens
I am following the instructions from Appfuse-documentation-2.0.1. When running Maven to create the project mvn archetype:create -DarchetypeGroupId=org.appfuse.archetypes -DarchetypeArtifactId=appfuse-basic-jsf http://static.appfuse.org/releases -DarchetypeVersion=2.0.1 -DgroupId=it.censnet.app -D

[appfuse-user] ATB/RE: [appfuse-user] Re: ATB/RE: [appfuse-user] UnsatisfiedDependencyException -Solved-

2008-03-26 Thread Aled Rhys Jones
Hi Martin I can confirm that this worked for me, nice one! Thanks Aled -Neges Wreiddiol/Original Message- From: Martin Homik [mailto:[EMAIL PROTECTED] Sent: 26 March 2008 11:48 To: users@appfuse.dev.java.net Subject: [appfuse-user] Re: ATB/RE: [appfuse-user] UnsatisfiedDependencyExcepti

Re: [appfuse-user] Out of Memory sending a file

2008-03-26 Thread Kai Moritz
On Wednesday 26 March 2008 17:41:40 Jonathan Ritchie wrote: > Hello > > I am trying to do some pretty simple stuff sending some large files > from a servlet. > > The response is just a standard HttpServletResponse. The code looks > something like this: > > > java.lang.OutOfMemoryError:

Re: [appfuse-user] Out of Memory sending a file

2008-03-26 Thread Matt Raible
You can turn off GZipping of your pages by commenting out the gzipFilter's filter-mapping in your web.xml. Matt On Wed, Mar 26, 2008 at 9:41 AM, Jonathan Ritchie <[EMAIL PROTECTED]> wrote: > Hello > > I am trying to do some pretty simple stuff sending some large files > from a servlet. > > The

Re: [appfuse-user] Strange problem with german umlauts in testcases

2008-03-26 Thread Kai Moritz
On Wednesday 26 March 2008 09:31:39 Peter Schneider-Manzell wrote: > Hi Kay! > > Maybe you should check the encoding of your sources. > Make sure all text files (e.g. xml / java) are encoded with utf8. > I've double-checked this now. All files (xml and java) are encoded in utf8, so this cannot be

Re: [appfuse-user] appfuse wiki

2008-03-26 Thread Matt Raible
Seems to be up now. This site is hosted at Contegix, so if the server or JVM goes down, they get alerted right away. Matt On Wed, Mar 26, 2008 at 8:49 AM, <[EMAIL PROTECTED]> wrote: > > > > > Appfuse wiki seems to be down. > > > > Vanessa Pacheco > Programmer > Bowman Systems L.L.C > 318.213.

Re: [appfuse-user] Integrating Apache Camel

2008-03-26 Thread Matt Raible
Can you run "mvn dependency:tree"? It's possible that commons-el is being included or possibly juel and they're causing a conflict. Matt On Wed, Mar 26, 2008 at 8:26 AM, watcher <[EMAIL PROTECTED]> wrote: > > I'm getting a strange error that I'm unable to solve and I was hoping someone > could

[appfuse-user] Web Services with GenericManager

2008-03-26 Thread Chris Lilley
Hi, I've managed to expose my manager as a web service at last. (I previously had a problem with doing so in a Spring MVC modular project, but it worked perfectly in a Spring MVC basic project.) My manager interface looks like this: @WebService public interface OrderManager extends GenericM

Re: [appfuse-user] Strange problem with german umlauts in testcases

2008-03-26 Thread Kai Moritz
Am Mittwoch, 26. März 2008 11:26:27 schrieb Kropp, Henning: > Hi, > > you probably have umlaute in your data-sample.xml. To use umlaute in > this file please make sure it is encoded in utf-8. It is! The source-code should be in UTF-8 as well. But I will doublecheck this this evening... Perhaps I

Re: [appfuse-user] Strange problem with german umlauts in testcases

2008-03-26 Thread Kai Moritz
Am Mittwoch, 26. März 2008 09:31:39 schrieb Peter Schneider-Manzell: > Hi Kay! > > Maybe you should check the encoding of your sources. > Make sure all text files (e.g. xml / java) are encoded with utf8. > I think, I've checked that already. I am editing all my sources with Eclipse, which is tuned

[appfuse-user] Out of Memory sending a file

2008-03-26 Thread Jonathan Ritchie
Hello I am trying to do some pretty simple stuff sending some large files from a servlet. The response is just a standard HttpServletResponse. The code looks something like this: --- response.setHeader(HTTP_CONTENT_DISPOSITION, "attachment; filename=" + fileName); response.setContent

[appfuse-user] appfuse wiki

2008-03-26 Thread vpacheco
Appfuse wiki seems to be down. Vanessa Pacheco Programmer Bowman Systems L.L.C 318.213.8780x307 == IMPORTANT WARNING: This message is intended for the use of the person or entity to which it is addressed and may contain information that is privileged an

[appfuse-user] Integrating Apache Camel

2008-03-26 Thread watcher
I'm getting a strange error that I'm unable to solve and I was hoping someone could give me some pointers. I'm using Appfuse version 2.01 SpringMVC , full-source I'm attempting to integrate Apache Camel into Appfuse. Everything works fine until add the camel-juel dependancy to my POM or

Re: [appfuse-user] Appfuse site

2008-03-26 Thread Michael Horwitz
If you mean the right menu that appears on the admin screens: it is done in the default decorator used by SiteMesh (see default.jsp). The menu is sourced from Struts menu. CSS is used to display the menu on the right. Mike On 26/03/2008, oscar perez <[EMAIL PROTECTED]> wrote: > > Hi all, > I've

[appfuse-user] Re: ATB/RE: [appfuse-user] UnsatisfiedDependencyException -Solved-

2008-03-26 Thread Martin Homik
I've been working with AppFuse 2.0.1 successfully since its release. I ran into that problem suddenly on March 18. My suspicion is that Maven downloaded some latest jar which causes this problem I just looked into my local m2 repository and found out that Maven has downloaded a new surefire pl

Re: [appfuse-user] Appfuse site

2008-03-26 Thread Cayetano
Do you mean the wiki @ http://appfuse.org/ ?? It's powered by Atlassian Confluence not appfuse based. On 26/03/2008, oscar perez <[EMAIL PROTECTED]> wrote: > Hi all, > I've been using appfuse for the past 4 months and so far I was able to find > all the information that I needed either from the s

Re: [appfuse-user] Strange problem with german umlauts in testcases

2008-03-26 Thread Kropp, Henning
Hi, you probably have umlaute in your data-sample.xml. To use umlaute in this file please make sure it is encoded in utf-8. regards Henning Peter Schneider-Manzell schrieb: Hi Kay! Maybe you should check the encoding of your sources. Make sure all text files (e.g. xml / java) are encoded wi

[appfuse-user] Appfuse site

2008-03-26 Thread oscar perez
Hi all, I've been using appfuse for the past 4 months and so far I was able to find all the information that I needed either from the source code or the documentation but this one beats me.. In the appfuse 2 site, how is created the menu bar in the right? Is a div and uses struts menu to generate t

Re: [appfuse-user] Strange problem with german umlauts in testcases

2008-03-26 Thread Peter Schneider-Manzell
Hi Kay! Maybe you should check the encoding of your sources. Make sure all text files (e.g. xml / java) are encoded with utf8. Bye, Peter 2008/3/26, Kai Moritz <[EMAIL PROTECTED]>: > > Hi Folks, > > I have this really strange problem with german umlauts in my testcases. > > On my development sy

[appfuse-user] Strange problem with german umlauts in testcases

2008-03-26 Thread Kai Moritz
Hi Folks, I have this really strange problem with german umlauts in my testcases. On my development system (Ubuntu feisty with Sun JDK 6.0 and "[EMAIL PROTECTED]") all my testcases work fine. But when I check out the sources on my production system (Debian etch with Sun JDK 5.0 and "LANG=en_US

Re: [appfuse-user] Re: Log4J-Output during testing...

2008-03-26 Thread Kai Moritz
On Wednesday 26 March 2008 05:45:40 Matt Raible wrote: > That's strange. You shouldn't need to use -e AFAIK. Can you verify > that you only have one log4j.xml in your project? If so, it's > possible there's another one in a JAR that's overriding yours. > You are right! I am running with "war:inpla