Re: [appfuse-user] AppFuse 2.x with JBoss

2007-07-25 Thread Gary Darnton
Thanks Mike, I put details below into pom.xml and it ran. net.sf.ehcache ehcache 1.3.0-beta2 Michael Horwitz wrote: > > This is normally due to the incorrect version of Ehcache being picked up > in > your classpath.

[appfuse-user] WARNING! FreeMarker error if you wanna Upgrade Struts to 2.0.9

2007-07-25 Thread Gary Darnton
After upgrade struts to 2.0.9, I've got the error below any form. And you can not insert, update, or delete any thing! After convert to 2.0.6 ... everything OK :D FreeMarker template error! Method public java.util.List org.apache.struts2.components.Form.getValidators(java.lang.String) threw an e

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

2007-07-25 Thread tweibel
mraible wrote: > > Unfortunately, I'm unable to reproduce this issue on my MacBook Pro. I found the following bug report in the AFS bugzilla: http://issues.apache.org/bugzilla/show_bug.cgi?id=34633 mraible wrote: > > I can upload "myproject" so you can download it if you like. That would be

Re: [appfuse-user] ie dropdown menu and select box

2007-07-25 Thread tibi
somehting like this will solve this ie 5.5 and 6 bug http://matthom.com/archive/2006/01/23/dhtml-select-list-trouble-continued i also think there is an iframe solution to it... will look into that one now tibi tibi wrote: thanks that is a great idea.. i will do that tibi Matt Raible wrote

Re: [appfuse-user] Issue with candy/appfuse - sun tools.jar r1.4.2

2007-07-25 Thread gardet
Hi, I get the exact same problem, using a JDK1.6. I could try to go back to 1.5, but it seems that the problem is somewhere else... [ERROR] reactor-execute : D:\Work\Projects\GForms\AppfuseTest Diagnosis: Failed to construct build plan for: AppfuseTest:war:1.0-SNAPSHOT ( task-segment: [jetty:r

Re: [appfuse-user] Issue with candy/appfuse - sun tools.jar r1.4.2

2007-07-25 Thread gardet
My issue was that Eclipse was stupidly pointing to a JRE, instead of a JDK. Marcelo Alcantara wrote: > > Hi, > > I am trying to use candy with appfuse 2M5 but when trying to build it > gives > me an error complaining about the tools.jar from 1.4.2 JDK. > > What is the best solution for that?

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

2007-07-25 Thread Matt Raible
It might take me a while to get this uploaded - I'm traveling to Portland this morning and speaking at OSCON this afternoon. I should be able to do it later tonight. In the meantime, you might try a different machine or ask a friend to create the project for you. Matt On 7/25/07, tweibel <[EMAI

Re: [appfuse-user] WARNING! FreeMarker error if you wanna Upgrade Struts to 2.0.9

2007-07-25 Thread Matt Raible
I didn't see any of these issues when I upgraded. If you create a new project using a 2.0-rc1-SNAPSHOT archetype - does the issue still happen? Matt On 7/25/07, Gary Darnton <[EMAIL PROTECTED]> wrote: After upgrade struts to 2.0.9, I've got the error below any form. And you can not insert, up

[appfuse-user] Dropdown list of user

2007-07-25 Thread Julien C.
Hi, I want to add a drop down list of user in a page (Spring MVC) : so I implement the referenceData of my FormController : @Override @SuppressWarnings("unchecked") protected Map referenceData(HttpServletRequest request) throws Exception { log.debug("entering 'refenceData' function ..." ); //

Re: [appfuse-user] Dropdown list of user

2007-07-25 Thread Michael Horwitz
Hi, You will need to implement and register a custom property editor for you Directeur class which Spring will use to convert the class to and from String form. To do this: 1) Create a class (I often do this as a nested class on the controller) that extends PropertyEditorSupport. You will need t

[appfuse-user] integrating AspriseJavaPDF

2007-07-25 Thread jithesh
hi I am using appfuse 1.9.4 for my webapp. Is it possible to integrate 'AspriseJavaPDF' library in appfuse. what u people suggest.. thanks, Jthesh pm -- View this message in context: http://www.nabble.com/integrating--AspriseJavaPDF-tf4142812s2369.html#a11784706 Sent from the AppFuse - U

Re: [appfuse-user] Dropdown list of user

2007-07-25 Thread Julien C.
Thank you Michael. I will try this. Julien C. Michael Horwitz a écrit : Hi, You will need to implement and register a custom property editor for you Directeur class which Spring will use to convert the class to and from String form. To do this: 1) Create a class (I often do this as a nest

[appfuse-user] RE: Hibernate mapping

2007-07-25 Thread Fan
Hey Srini: I got the solution. In my facility pojo: @ManyToMany(fetch = FetchType.EAGER) @JoinTable( name = "FACILITY_CLUB", joinColumns = [EMAIL PROTECTED](name = "FACILITYID")}, inverseJoinColumns = [EMAIL PROTECTED](name = "CLUBID")

Re: [appfuse-user] I am having problems because a library that I am depending on overwrites the log4j classes with their own.

2007-07-25 Thread Developer Abe
Hi Matt, I got around the problem. Background: I am using Maven 2 with vendor provided JCE jars installed in jre/lib/ext. The IsolatedClassloader of the Surefire plugin was not finding the JCE classes and reporting NoClassDefFoundErrors when running Junit tests. I tried to configure the maven

Re: [appfuse-user] integrating AspriseJavaPDF

2007-07-25 Thread Matt Raible
If you can integrated into a normal Java web application project, there's no reason you can't integrate it into AppFuse. Have you tried? Are you seeing any errors? To add new libraries, you need to add JARs to the lib directory, add entries to lib.properties and then modify build.xml's "package-we

[appfuse-user] Hibernate need to access properties on join table

2007-07-25 Thread Francisco Goldmeier Tochetto
A nice article about accessing data on join tables. I hope it could help you as helped me ;D Regards, Francisco

[appfuse-user] Re: Hibernate need to access properties on join table

2007-07-25 Thread Francisco Goldmeier Tochetto
Sorry, the link is... http://www.thearcmind.com/confluence/display/RandomThoughts/Hibernate+need+to+access+properties+on+join+table On 7/25/07, Francisco Goldmeier Tochetto <[EMAIL PROTECTED]> wrote: A nice article about accessing data on join tables. I hope it could help you as helped me ;D

Re: [appfuse-user] Hibernate need to access properties on join table

2007-07-25 Thread Matt Raible
I think you forgot to include the link. ;-) On 7/25/07, Francisco Goldmeier Tochetto <[EMAIL PROTECTED]> wrote: A nice article about accessing data on join tables. I hope it could help you as helped me ;D Regards, Francisco -- http://raibledesigns.com -

Re: [appfuse-user] Debug While Developing

2007-07-25 Thread Matt Raible
It should be as simple as starting Tomcat with jdpa. http://raibledesigns.com/rd/entry/remotely_debug_your_app_in Matt On 6/2/07, Doug Pham <[EMAIL PROTECTED]> wrote: Hi All, I am currently use Tomcat and the Sysdeo plugin to debug my code. I noticed that AF 2.0 M5 is using Jetty, is ther

[appfuse-user] struts display tag list pdf

2007-07-25 Thread Fred Forester
Hi All, was wondering of someone knows of a way to better control the pdf output from the struts display tag. I need to change the font size of the pdf text. Thanx Fred - To unsubscribe, e-mail: [EMAIL PROTECTED] For additio

Re: [appfuse-user] MyFaces Sandbox Picklist error

2007-07-25 Thread Matt Raible
Looks like a typo is causing the problem: [Admin] WARN [http-8080-Processor25] ReducedHTMLParser.parse(558) | Invalid tag found: unexpected input while looking for attr name or '/>' at line 85 Matt On 7/25/07, snehalsao <[EMAIL PROTECTED]> wrote: I am using AppFuse 1.9.3. I referred to the

Re: [appfuse-user] struts display tag list pdf

2007-07-25 Thread Fred Forester
yup, you're right. the font size is hard coded in the pdf exportview filter. yuck. it is possible to specify a new filter class via the displaytag.properties file. and I should be able to copy the PdfView class from the displaytag sources and add export.pdf.fontsize to the properties. gonna t

[appfuse-user] Re: I want to contribute Facelets stuff to appfuse

2007-07-25 Thread Matt Raible
We'd be happy to accept your contribution. There's a patch in SiteMesh's JIRA for JSF, but I don't believe it supports Facelets. I've cc'd the user mailing list to get feedback from current JSF users. Matt On 7/23/07, Saeed Iqbal <[EMAIL PROTECTED]> wrote: Hi Matt, First of all thanks for a g

Re: [appfuse-user] pager solution ?

2007-07-25 Thread Matt Raible
Which web framework are you using? Can you describe your use case in more detail? Matt On 7/25/07, chinofish <[EMAIL PROTECTED]> wrote: hi, Is there any pager solution in appfuse 2.x platform ? or some suggestion ? displaytag do some pager staff, but get all data in dao, and do pagination ju

[appfuse-user] RE: RE: Freemarker error when including struts plugin dependencies

2007-07-25 Thread Gary Darnton
The same issue to me, I am using struts core 2.0.9 and m5. Everything goes well with 2.0.6. Travers Snyman wrote: > > Hi Arvinder, > I am using struts 2.0.6 core but my plugins Jfreechart and Jasperreports > I included 2.0.8 as plugin versions in my pom dependencies. That is > probably why se

Re: [appfuse-user] Dropdown list of user

2007-07-25 Thread Julien C.
ok It's working. I spend some time on this because save doesn't work. It was due to a bad configuration of my hibernate annotation :-! : -- @Entity public class Entreprise implements java.io.Serializable { ... @ManyToOne @JoinColumn(name="USER_ID", insert

Re: [appfuse-user] JSF - Display content on page if user is logged in (acegi tags not working)

2007-07-25 Thread RL
Thanks for your reply Matt, As nobody replied in a week i had to came out with another solution, i ended out doing this: Some content to show to users that doesn't logged in, to stop seeing this please login... It seems to work, any comments on that ? I will take a look to the acegi jsf

[appfuse-user] MyFaces Sandbox Picklist error

2007-07-25 Thread snehalsao
I am using AppFuse 1.9.3. I referred to the MyFaces Sandbox picklist example: http://www.irian.at/myfaces-sandbox/picklist.jsf;jsessionid=C584FC09C56C38F74151050DF8966BF6 And tried to create the same picklist component in my application as a sample test. I have attached the “defineRole.xhtml” (

Re: [appfuse-user] WARNING! FreeMarker error if you wanna Upgrade Struts to 2.0.9

2007-07-25 Thread Gary Darnton
Thanks Matt but I can't start jetty after ignore that error [INFO] [dbunit:operation {execution: test}] [INFO] [war:war] [INFO] Exploding webapp... [INFO] Assembling webapp helloworld in D:\Workspace\helloworld\target\helloworld-1.0-SNAPSHOT [INFO] Copy webapp webResources to D:\Workspace\hellowo

Re: [appfuse-user] DWR engine.js diplayed in browser after user login.

2007-07-25 Thread Matt Raible
This is probably because you have Acegi protecting this resource. Matt On 7/25/07, fadhli <[EMAIL PROTECTED]> wrote: Hi everyone, Recently, I implemented DWR in my appfuse webapp. I had put the src javascript reference at default.jsp. It's the same place where the prototype and scriptaculous.

[appfuse-user] pager solution ?

2007-07-25 Thread chinofish
hi, Is there any pager solution in appfuse 2.x platform ? or some suggestion ? displaytag do some pager staff, but get all data in dao, and do pagination just in ui. thanks for the suggestion ;-)

Re: [appfuse-user] Interesting Menu display problem

2007-07-25 Thread Dale Newfield
mraible wrote: Can you please create a bug in AppFuse's JIRA as well so we remember to include the fix in 2.0 final? http://issues.appfuse.org/browse/APF-840 I didn't even notice that he created that against StrutsMenu instead of AppFuse. -Dale -

[appfuse-user] how to stop wiping out the data in database then restarting webapp

2007-07-25 Thread kagan
Hi: I'd like to know how to stop wiping out the data in database then restarting appfuse web application? For example if I'll register new user and restart appfuse application I won't be able to see that person in person table. I'd greatly appreciate for quick response. Sincerely, Roman -- Vi

Re: [appfuse-user] Deploying to a Sharted Hosting (Apache2+Tomcar5.5.20)

2007-07-25 Thread Matt Raible
I don't believe there's a Maven Plugin that does this, but that's not saying you couldn't write one. ;-) Matt On 7/6/07, Daniel.Rodriguez <[EMAIL PROTECTED]> wrote: Hello everyone, I have a shared hosting server in Lunarpages, where I have Tomcat 5.5.20 and Apache2 (using jk_mod to connect th

Re: [appfuse-user] Active user's full name not getting dispalyed

2007-07-25 Thread Matt Raible
Can you please enter this as an issue in JIRA? http://issues.appfuse.org/browse/APF This doesn't seem like a high priority issue, so it'll likely get fixed in 2.0.1. Matt On 7/16/07, arvinder <[EMAIL PROTECTED]> wrote: I am seeing the same behavior with struts basic 2m5 Msarda wrote: > > I

Re: [appfuse-user] Security Against Action Instead of Manager

2007-07-25 Thread Matt Raible
You should be able to add new URLs in security.xml to indicate certain levels of security. Matt On 7/16/07, Doug Pham <[EMAIL PROTECTED]> wrote: Hi All, From what I have seen so far with AppFuse 2 is that there is a security check on the usage of the *Manager*. Because of the way I set up

Re: [appfuse-user] error Filtering my List

2007-07-25 Thread Matt Raible
I don't know the solution to this - you might try the MyFaces user mailing list. Matt On 7/15/07, Michael Quito <[EMAIL PROTECTED]> wrote: Hi, I'm using Appuse 1.9.4 jsf. On my List page, I added an inputtext where I put my Item to be searched together with the t:datatable. The return resu

Re: [appfuse-user] How to turn of validation

2007-07-25 Thread Matt Raible
Because the method you're calling is being validated according to the methods to validate for the ValidationInterceptor (in struts.xml). You can add struts-annotations to your project's pom.xml and use @SkipValidation to skip validation for a given method. Matt On 7/15/07, Fan <[EMAIL PROTECTED]

Re: [appfuse-user] appfuse:gen|install creates faulty test classes for POJOs with fields of type Long?

2007-07-25 Thread Matt Raible
Sounds like a bug. I wonder why the number has a decimal place in it? Matt On 7/12/07, Martin Homik <[EMAIL PROTECTED]> wrote: I have a POJO whose fields are of type Long. The generated action test class instantiates the POJO class and sets its fields to some initial random values (in onSetUpB

Re: [appfuse-user] todo: change this to read the identifier field from the other pojo

2007-07-25 Thread Matt Raible
This is basically an unimplemented feature until we have an idea/example of what this might look like. Matt On 7/13/07, tibi <[EMAIL PROTECTED]> wrote: (appfuse 2.0m5 struts2) the generated code (by appfuse:gen/install) is this: i'm not clear on what i have to change to what.. an

Re: [appfuse-user] myfaces tree2 with jsf

2007-07-25 Thread Matt Raible
Your problem appears to be a typo: [dcbooks] WARN [http-8080-Processor25] ReducedHTMLParser.parse(558) | Invalid tag found: unexpected input while looking for attr name or '/>' at line 15 Matt On 7/25/07, sudheerp <[EMAIL PROTECTED]> wrote: Hi, Tree2 (appfuse_jsf 1.9.4) gives me the foll

Re: [appfuse-user] DWR engine.js diplayed in browser after user login.

2007-07-25 Thread fadhli
Thanks Matt for pointing out where to look. I was able to solve it by specifying CONVERT_URL_TO_LOWERCASE_BEFORE_COMPARISON PATTERN_TYPE_APACHE_ANT /images/**=#NONE# /scripts/**=#NONE# /styles/**=#NONE# /se

Re: [appfuse-user] WARNING! FreeMarker error if you wanna Upgrade Struts to 2.0.9

2007-07-25 Thread Matt Raible
The error you're seeing in RC1 is a known issue that can be ignored. http://issues.appfuse.org/browse/APF-804 Matt On 7/25/07, Gary Darnton <[EMAIL PROTECTED]> wrote: I was using m5 and struts 2.0.6 -> Everything ok! After upgrade to 2.0.9 -> I've got the issue as last post! I upgrade to rc1

Re: [appfuse-user] WARNING! FreeMarker error if you wanna Upgrade Struts to 2.0.9

2007-07-25 Thread Matt Raible
If you did a clean, it's strange that Struts 2.0.6 is in your target directory. As of yesterday, 2.0-rc1-SNAPSHOT depends on 2.0.9. You might want to run "mvn -X | tee mvn.log", then look at mvn.log to see if something else is pulling in Struts 2.0.6. Matt On 7/25/07, Gary Darnton <[EMAIL PROTE

Re: [appfuse-user] WARNING! FreeMarker error if you wanna Upgrade Struts to 2.0.9

2007-07-25 Thread Gary Darnton
Yes, absolutely I did clean before jetty run. Do I need to update anything when change version of appfuse? I just change version name in pom.xml as below: 2.0-rc1-SNAPSHOT 2.0.5 Thanks. mraible wrote: > > You need to run "mvn clean" before jetty:run-war. > > Matt >

Re: Re: [appfuse-user] pager solution ?

2007-07-25 Thread chinofish
I use struts2 basic. when execute a query, such as query all user. it's impossible to fetch all users once coz maybe there are millions of users in the system. so I must only fetch just 10-100 user records once according to pagesize. chinofish 2007-07-26 发件人: Matt Raible 发送时间: 2007-07-26

Re: [appfuse-user] how to stop wiping out the data in database then restarting webapp

2007-07-25 Thread kagan
Thanks a lot. Man - you rock! RK mraible wrote: > > You should add your new user in sample-data.xml or modify the dbunit > plugin so it doesn't use CLEAN_INSERT (REFRESH instead). > > See "type" in the dbunit-maven-plugin's documentation: > > http://mojo.codehaus.org/dbunit-maven-plugin/opera

Re: [appfuse-user] Modify core class User

2007-07-25 Thread Matt Raible
On 7/24/07, tibi <[EMAIL PROTECTED]> wrote: i took me a full day and i have a feeling i did not fully upgrade... i still have some m4 things in my upgraded m4 to m5. and my project was then without sources. how much would it cost to let an appfuse developer do an full upgrade?? It depends on t

Re: [appfuse-user] Reverse Engineering Existing Schema

2007-07-25 Thread Matt Raible
The hibernate3-maven-plugin creates the tables - you need to manually add your class to hibernate.cfg.xml. Matt On 7/20/07, Doug Pham <[EMAIL PROTECTED]> wrote: Matt, I am using the 2.0.5m, once you created the annotation java file, I am assuming in the pom somewhere it creates the tables a

Re: [appfuse-user] Interesting Menu display problem

2007-07-25 Thread mraible
Can you please create a bug in AppFuse's JIRA as well so we remember to include the fix in 2.0 final? http://issues.appfuse.org/browse/APF Thanks, Matt arvinder wrote: > > This is a bug in SVN version, I have created an issue in Jira, SM-84 > > > mraible wrote: >> >> Is this a bug in the

Re: [appfuse-user] Locale Filter problem

2007-07-25 Thread Matt Raible
On 7/16/07, VJ22 <[EMAIL PROTECTED]> wrote: Correct... I was thinking of the same thing.I will be moving static content to the web server soonAny idea on the mapping issue (*.action) ? No, unfortunately I can't think of a solution. Matt Thanks...Vijay mraible wrote: > > On 7/16

Re: [appfuse-user] Date field problem with struts2 basic M5

2007-07-25 Thread Matt Raible
Sounds like there's some bugs in our code generation. Does it work if you only have a single calendar? Matt On 6/29/07, arvinder <[EMAIL PROTECTED]> wrote: I used appfuse:gen which has multiple date fields, I have M5 but the AMP plugin I used was RC1 as I had embedded object in my entity. The

Re: [appfuse-user] Unicode rendering in javascript's with appfuse-1.4.9

2007-07-25 Thread Matt Raible
What web framework are you using? I've seen this issue with JSF and Commons Validator. Matt On 6/30/07, javadiahad <[EMAIL PROTECTED]> wrote: hi I am beginner in jsf and appfuse . I use arabic languages in my project .but when I deploy it , client side (js) validation alerts not show messages

Re: [appfuse-user] compilation error

2007-07-25 Thread Matt Raible
I'm assuming you solved this problem? Matt On 6/28/07, Julien C. <[EMAIL PROTECTED]> wrote: Hi list, Since today, I have a problem with my project (Spring MVC Basic 2.0 m5). [INFO] [talledLocalContainer] Caused by: [INFO] [talledLocalContainer] java.lang.NoClassDefFoundError: javax/trans

[appfuse-user] Tutorials as PDF

2007-07-25 Thread Matt Raible
All, I did some work on Confluence today and managed to get a version of the tutorials exported as PDF. You can download the 128-page PDF at the following URL: http://tinyurl.com/2f622v Matt - To unsubscribe, e-mail: [EMAIL PR

Re: [appfuse-user] struts display tag list pdf

2007-07-25 Thread Matt Raible
I don't believe this is possible, but you might want to read its documentation: http://displaytag.sf.net Matt On 7/25/07, Fred Forester <[EMAIL PROTECTED]> wrote: Hi All, was wondering of someone knows of a way to better control the pdf output from the struts display tag. I need to change th

Re: [appfuse-user] DWR engine.js diplayed in browser after user login.

2007-07-25 Thread fadhli
Hi Matt, What does the FilterChainProxy do? On 7/26/07, Matt Raible <[EMAIL PROTECTED]> wrote: This is probably because you have Acegi protecting this resource. Matt On 7/25/07, fadhli <[EMAIL PROTECTED]> wrote: > Hi everyone, > > Recently, I implemented DWR in my appfuse webapp. I had pu

Re: [appfuse-user] disabling some tests & accented chars

2007-07-25 Thread Matt Raible
On 7/21/07, springbok <[EMAIL PROTECTED]> wrote: Hi, I'm from Italy and I'm a total newbie to Spring, Hibernate, Struts 2 and of course AppFuse, so please forgive me if I make trivial or already-asked questions. I just completed the tutorial for AppFuse 2.0M5, and I was wondering how could I pre

[appfuse-user] Dependency conflict with Lucene - mvn dependency:tree does not work

2007-07-25 Thread Marcelo de Barros Alcantara
Hi all, I am trying to debug an issue that looks like a conflict between lucene that comes with appfuse and the lucene that comes with jackrabbit (1.4.3 x 2.0). But I cannot find where the 1.4.3 is configured. Trying to figure out I found the "mvn dependency:tree" that would show me the dependen

Re: [appfuse-user] myfaces tree2 with jsf

2007-07-25 Thread sudheerp
Hi, Tree2 (appfuse_jsf 1.9.4) gives me the follow errors. Any idea how to handle this ? Jul 26, 2007 8:53:01 AM com.sun.facelets.FaceletViewHandler handleRenderException SEVERE: Error Rendering View[/Tree2NiceWrap.xhtml] java.lang.NullPointerException at org.apache.myfaces.custom.tree2

Re: [appfuse-user] Re: Hibernate need to access properties on join table

2007-07-25 Thread Dale Newfield
Francisco Goldmeier Tochetto wrote: http://www.thearcmind.com/confluence/display/RandomThoughts/Hibernate+need+to+access+properties+on+join+table If the extra information to be stored in the join table is indeed just a binary flag, then you could just use a many-to-many relationship, but with

Re: [appfuse-user] how to stop wiping out the data in database then restarting webapp

2007-07-25 Thread Matt Raible
You should add your new user in sample-data.xml or modify the dbunit plugin so it doesn't use CLEAN_INSERT (REFRESH instead). See "type" in the dbunit-maven-plugin's documentation: http://mojo.codehaus.org/dbunit-maven-plugin/operation-mojo.html Matt On 7/25/07, kagan <[EMAIL PROTECTED]> wrote

Re: [appfuse-user] WARNING! FreeMarker error if you wanna Upgrade Struts to 2.0.9

2007-07-25 Thread Gary Darnton
I was using m5 and struts 2.0.6 -> Everything ok! After upgrade to 2.0.9 -> I've got the issue as last post! I upgrade to rc1 -> Got new issue! (m5 better or rc1?) --- T E S T S --- Running co

Re: [appfuse-user] DWR engine.js diplayed in browser after user login.

2007-07-25 Thread Matt Raible
It allows specifying the order of filters w/o having to do it in web.xml. You might also read its JavaDocs: http://www.acegisecurity.org/multiproject/acegi-security/apidocs/org/acegisecurity/util/FilterChainProxy.html Matt On 7/25/07, fadhli <[EMAIL PROTECTED]> wrote: Hi Matt, What does the F

Re: [appfuse-user] WARNING! FreeMarker error if you wanna Upgrade Struts to 2.0.9

2007-07-25 Thread Matt Raible
You need to run "mvn clean" before jetty:run-war. Matt On 7/25/07, Gary Darnton <[EMAIL PROTECTED]> wrote: Thanks Matt but I can't start jetty after ignore that error [INFO] [dbunit:operation {execution: test}] [INFO] [war:war] [INFO] Exploding webapp... [INFO] Assembling webapp helloworld in

Re: [appfuse-user] JSF - Display content on page if user is logged in (acegi tags not working)

2007-07-25 Thread Matt Raible
The acegijsf components might help: http://cagataycivici.wordpress.com/2006/01/19/acegi_jsf_components_hit_the/ We've integrated this in the latest release - please search the archives for more information. Matt On 6/13/07, RL <[EMAIL PROTECTED]> wrote: Hi, First i would like to say I am ne

Re: [appfuse-user] Dependency conflict with Lucene - mvn dependency:tree does not work

2007-07-25 Thread Matt Raible
Lucene doesn't ship with AppFuse so there shouldn't be a dependency problem caused by AppFuse. Matt On 7/25/07, Marcelo de Barros Alcantara <[EMAIL PROTECTED]> wrote: Hi all, I am trying to debug an issue that looks like a conflict between lucene that comes with appfuse and the lucene that com

Re: [appfuse-user] myfaces tree2 with jsf

2007-07-25 Thread Matt Raible
You should be able to - have you tried? The best thing to do is try and report back if you have any errors. Matt On 7/25/07, sudheerp <[EMAIL PROTECTED]> wrote: Hi, Can I use myfaces tree2 with appfuse-jsf, Is there any tutorial available. Thank you. Sudheer -- View this message in co

[appfuse-user] myfaces tree2 with jsf

2007-07-25 Thread sudheerp
Hi, Can I use myfaces tree2 with appfuse-jsf, Is there any tutorial available. Thank you. Sudheer -- View this message in context: http://www.nabble.com/myfaces-tree2-with-jsf-tf4145254s2369.html#a11790807 Sent from the AppFuse - User mailing list archive at Nabble.com. ---

[appfuse-user] DWR engine.js diplayed in browser after user login.

2007-07-25 Thread fadhli
Hi everyone, Recently, I implemented DWR in my appfuse webapp. I had put the src javascript reference at default.jsp. It's the same place where the prototype and scriptaculous.js is place. The problem I'm facing right now is that when the user login and presses enter, the page will display http

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

2007-07-25 Thread Matt Raible
http://static.appfuse.org/downloads/myproject-springmvc-basic-fullsource.zip On 7/25/07, Matt Raible <[EMAIL PROTECTED]> wrote: It might take me a while to get this uploaded - I'm traveling to Portland this morning and speaking at OSCON this afternoon. I should be able to do it later tonight. In

Re: Re: [appfuse-user] pager solution ?

2007-07-25 Thread Matt Raible
Here's a couple solutions: http://displaytag.sourceforge.net/11/tut_externalSortAndPage.html http://cwiki.apache.org/S2PLUGINS/pager-tag.html Matt On 7/25/07, chinofish <[EMAIL PROTECTED]> wrote: I use struts2 basic. when execute a query, such as query all user. it's impossible to fetch al

Re: [appfuse-user] Edit rows on Display Tag

2007-07-25 Thread Matt Raible
I'm in the process of trying to put this demo back in place - might take me a few more days though. Matt On 7/16/07, sandeepsuku <[EMAIL PROTECTED]> wrote: As iam using display tag for listing purpose , i would like to edit the rows . I found that , this is being implemented but the demo which