Re: [appfuse-user] Problems with ZipOutputStream

2007-03-20 Thread Julian Atkinson
I'm posting the cause of this issue because we discussed it via email. This was caused by interaction with the GZIPFilter, it worked OK when the filter was removed. Cheers, Julian tonylu880042 wrote: > > The decorator.xml is already exclude the action. > But the problem still there > > tonyl

Re: [appfuse-user] getting started

2007-03-20 Thread bluemartini
Could you show you classpath, java_home? and the location of xml_commons_apis.jar in your filesystem? heccarrillo wrote: > > I've updated ant and this is what I get. > > > > [EMAIL PROTECTED] appfuse]# ant -verbose new > > /usr/bin/build-classpath: error: Could not find jaxp_parser_impl Ja

[appfuse-user] Error executing database operation: CLEAN_INSERT

2007-03-20 Thread Djohannot
Hello, When i run mvn jetty:run-war -e, I've this error: Error executing database operation: CLEAN_INSERT I've drop my database from MySQL from the command line, but the problem is always the same. Has someone an Idea? -- View this message in context: http://www.nabble.com/Error-executing-da

Re: [appfuse-user] problem with Tutorial JSF : org.appfuse.webapp.action.BasePage cannot be found

2007-03-20 Thread Djohannot
You're right, thanks. mraible wrote: > > I'm guessing you're getting this error from your IDE? If so, it's > probably because it doesn't recognize (and use) the > maven-warpath-plugin. Everything should work fine from the command > line. > > Matt > > On 3/16/07, Djohannot <[EMAIL PROTECTED]

Re: [appfuse-user] Error executing database operation: CLEAN_INSERT

2007-03-20 Thread Djohannot
I found the origin of the problem. I had an error on my sample-data.xml files.. (Always check your xml...) David Djohannot wrote: > > Hello, > > When i run mvn jetty:run-war -e, I've this error: > > Error executing database operation: CLEAN_INSERT > > I've drop my database from MyS

[appfuse-user] Integration JSF-Comp's ChartCreator to Appfuse 1.9.4 - deperately needing help...

2007-03-20 Thread Eric Taieb
Hi, I have been trying to use your ChartCreator 1.2.0RC1 jsf component in my project. I use Appfuse 1.9.4 in JSF/spring and Hibernate mode. I am fairly advanced in the project and everything works (Datamodel, Hibernate, spring JSF) tomahawk datatables work, and facelets is working great. When tr

[appfuse-user] jsf testing error

2007-03-20 Thread kace
Im trying to test the JSF part and I am running into javax.faces.el.PropertyNotFoundException: Bean: com.mycompany.webapp.action.CompanyFolderList, property: companyFolderManager Ive followed the tutorial to create a PersonListTest, added the managed bean to faces-config but I get the above pro

[appfuse-user] JSF

2007-03-20 Thread Jakobsen, Peder
Hi, Is th size attribute supposed to change the width of a rendered JSF inputText component? E.g.: If so, I'm having no luck doing this in appfuse 1.9.4. Does this have anything to do with the fact that the default table renderer has been replace with a bullet list implementation? P

Re: [appfuse-user] getting started

2007-03-20 Thread heccarrillo
JAVA_HOME is set to /usr/java/j2sdk1.4.2_13/bin CLASSPATH is not set, at least that's the impression I get when I check for it using echo $CLASSPATH but it must be set to something because tomcat works, ant works. I imagine that the classpath would be required for them to run. Cannot find xml

Re: [appfuse-user] getting started

2007-03-20 Thread Michael Horwitz
JAVA_HOME should point to the directory above bin: /usr/java/j2sdk1.4.2_13 Hope this fixes the problem! Mike. On 3/20/07, heccarrillo <[EMAIL PROTECTED]> wrote: JAVA_HOME is set to /usr/java/j2sdk1.4.2_13/bin CLASSPATH is not set, at least that's the impression I get when I check for it us

Re: [appfuse-user] Integration JSF-Comp's ChartCreator to Appfuse 1.9.4 - deperately needing help...

2007-03-20 Thread Matt Raible
Since you've already looked extensively for a solution, the only thing I can think of is to download the source for ChartCreator, attach it to your project and step through it with a debugger. Matt On 3/20/07, Eric Taieb <[EMAIL PROTECTED]> wrote: Hi, I have been trying to use your ChartCreat

Re: [appfuse-user] jsf testing error

2007-03-20 Thread Matt Raible
Do you have a setCompanyFilterManager() method in your CompanyFolderList.java class? Matt On 3/20/07, kace <[EMAIL PROTECTED]> wrote: Im trying to test the JSF part and I am running into javax.faces.el.PropertyNotFoundException: Bean: com.mycompany.webapp.action.CompanyFolderList, property: c

Re: [appfuse-user] JSF

2007-03-20 Thread Matt Raible
I would style style="width: 200px". Yes, it is possible that the CSS is overriding the size attribute. Matt On 3/20/07, Jakobsen, Peder <[EMAIL PROTECTED]> wrote: Hi, Is th size attribute supposed to change the width of a rendered JSF inputText component? E.g.: If so, I'm having n

Re: [appfuse-user] Integration JSF-Comp's ChartCreator to Appfuse 1.9.4 - deperately needing help...

2007-03-20 Thread Matt Raible
For Step #3, did you also add your file to web.xml? If you view-source and the tag hasn't been processed, then it's likely an issue with how you've registered everything. Step #4 shouldn't matter since you're using Facelets. Matt On 3/20/07, Eric Taieb <[EMAIL PROTECTED]> wrote: Thanks for yo

Re: [appfuse-user] jsf testing error

2007-03-20 Thread kace
No I dont have a setCompanyFilterMethod() in CompanyFolderList.java the class is listed below public class CompanyFolderList extends BasePage implements Serializable { private CompanyFolderManager companyFolderManager; private void setCompanyFolderManager(CompanyFolderManager manager)

Re: [appfuse-user] getting started

2007-03-20 Thread bluemartini
I resolved problems I had when I used ant by setting my classpath. xml-commons-apis.jar should be in /usr/share/java/ I had the same problem, it wasn't installed despite a successful jdk install, and I have take this from another computer. heccarrillo wrote: > > JAVA_HOME is set to /usr/java/

Re: [appfuse-user] Integration JSF-Comp's ChartCreator to Appfuse 1.9.4 - deperately needing help...

2007-03-20 Thread Eric Taieb
For Step #3 I did modify web.xml this only: facelets.LIBRARIES /WEB-INF/taglibs/acegijsf.taglib.xml; /WEB-INF/taglibs/corejsf-validator.taglib.xml; /WEB-INF/taglibs/tomahawk.taglib.xml; /WEB-INF/taglibs/chartcreator.taglib.xml As per JSF-Comp's fac

Re: [appfuse-user] Integration JSF-Comp's ChartCreator to Appfuse 1.9.4 - deperately needing help...

2007-03-20 Thread Eric Taieb
My bad in the source code I found this: chartcreatorrequest.jsf?ts=1174409300531&id=editUser:chart1 But there is no such file in my webroot... Thanks again for your help... Cheers, Eric Eric Taieb wrote: > > For Step #3 I did modify web.xml this only: > > > facelets.LIBRARIES >

Re: [appfuse-user] jsf testing error

2007-03-20 Thread kace
this is the complete error msg javax.faces.el.PropertyNotFoundException: Bean: com.mycompany.webapp.action.CompanyFolderList, property: companyFolderManager at org.apache.myfaces.el.PropertyResolverImpl.getPropertyDescriptor(PropertyResolverImpl.java:500) at org.apache.myfaces.el

Re: [appfuse-user] Integration JSF-Comp's ChartCreator to Appfuse 1.9.4 - deperately needing help...

2007-03-20 Thread Eric Taieb
Thanks for your quick reply Matt! So you do confirm I took the right step to integrate a new lib and its taglib to my appfuse project ? I didn't miss anything right ? Thanks again, --Eric mraible wrote: > > Since you've already looked extensively for a solution, the only thing > I can think o

Re: [appfuse-user] getting started

2007-03-20 Thread heccarrillo
Thanks, Michael. I made the change as you suggested, but I still get "Build Fails." I'm afraid that I don't have everything in place to run this properly. I'm setting up another environment with the latest version of ant, updated jdk, etc. Maybe that will work. Michael Horwitz wrote: > > JA

Re: [appfuse-user] jsf testing error

2007-03-20 Thread Matt Raible
Changing this: private void setCompanyFolderManager to this: public void setCompanyFolderManager Should solve the problem. Matt On 3/20/07, kace <[EMAIL PROTECTED]> wrote: this is the complete error msg javax.faces.el.PropertyNotFoundException: Bean: com.mycompany.webapp.action.CompanyFol

[appfuse-user] Integrating Thickbox 2.1.1 with Appfuse

2007-03-20 Thread masterg007
Has anyone integrated Thickbox in appfuse. I am trying to and keep getting the error below. Ther error was captured using Firebug in firefox. $(document).ready is not a function http://localhost:8080/geeoss/scripts/thickbox/thickbox.js Line 11 The is what my header looks like in my JSP file:

[appfuse-user] Maven behind a proxy

2007-03-20 Thread Nigel in NZ
Hi, I have a problem starting a new Appfuse project using Maven 2. I think the issue is that I am behind a firewall, but I have setup my settings as defined in, http://maven.apache.org/guides/mini/guide-proxies.html to be true http fred fred 134.161.16.8 8080 loc

Re: [appfuse-user] strutss basic archetype security

2007-03-20 Thread appfused
Thanks a lot. appfused wrote: > > Hi, > I'm new to appfuse and it looks like a really cool tool. I've been looking > through the appfuse generated code for the struts2 basic archetype and i > can't see how the userDao bean is defined. It's referenced in the > security.xml file as > > class

[appfuse-user] Adding new roles

2007-03-20 Thread appfused
I added a new role to the role table and referenced it like the other roles in the menu-config.xml and then rebuilt the bundle however the menu does not show the new menu item even though i specify that both admin and new role should be able to see the new menu item. My menu-config entry is as fol

Re: [appfuse-user] Integrating Thickbox 2.1.1 with Appfuse

2007-03-20 Thread jarmstrong
Well jQuery is like prototype where the document.ready should be trying to look for the document ready/load state. Is the jquiry_latest.pack.js loading correctly? This makes me think that jQuery is not having a chance to load/initialize properly before the thickbox code tries to bind itself into t

Re: [appfuse-user] appfuse 2 - webtest - verifypdftext step does not work

2007-03-20 Thread Matt Raible
You need to adjust the webtest task to load the pdf tasks. Unfortunately, you'll probably need to add the PDF-related dependencies to the plugin in order for everything to work. Matt On 3/2/07, ros <[EMAIL PROTECTED]> wrote: Hi! How to add support of verifypdftext to appfuse 2 webtests? Tha

Re: [appfuse-user] maven goals issue and intelliJ IDEA 6

2007-03-20 Thread Matt Raible
It sounds to me that there's lots of bugs in the idea-maven-plugin. ;) Matt On 3/1/07, kace <[EMAIL PROTECTED]> wrote: Hi I am using jsf-basic M3 and although the maven goals work using the command line when I try them in IntelliJ IDEA it seems to hang at a certain point. I am using Idea-ma

[appfuse-user] How to i18n images

2007-03-20 Thread Jonathan Tse
Hi all, I have been using tag to i18n my view. When I try to i18n the image, I found that the following method doesn't work. key="image.login" />" />" name="login" value="login" width="73" height="23"/> So , how do you i18n your image? Any input is welcome Best regards, Jonathan

Re: [appfuse-user] Maven behind a proxy

2007-03-20 Thread Christopher Love
What does the above command with the -e switch show? mvn -e archetype:create -DarchetypeGroupId=org.appfuse -DarchetypeArtifactId=appfuse -modular-struts -DremoteRepositories=http://static.appfuse.org/repository -DarchetypeVersion=2.0-m4-SNAPSHOT -DgroupId=com.mycompany -DartifactId=myproject