[appfuse-user] Automatic timestamping of all persisted data

2007-12-12 Thread Rob Hills
Hi All, I'm using AppFuse 2.0 + Struts2 + Hibernate. I need to timestamp all of my persisted data. I have a base model class that includes a "lastUpdated" attribute and I was hoping to be able to annotate it with something that would tell Hibernate to timestamp it whenever it was saved to the

Re: [appfuse-user] [2.0.1] "mvn appfuse:full-source" error

2007-12-12 Thread WangJavaFans
maveaconf setting.xml Default: ~/.m2/repository /path/to/local/repo --> modifd or add D:/repository localReponsitory path name not have space char for example : C:\Documents and Settings\Administrator\... afterwardreStart Your System; try to try -- View this mes

Re: [appfuse-user] No result defined for action au.com.myapp.webapp.action.DeliveryTonnageAction and result success

2007-12-12 Thread Rob Hills
Hi Nathan, Nathan Anderson wrote: Hi Rob, Shouldn't that Struts XML snippet look like this? class="au.com.myapp.webapp.action.DeliveryTonnageAction" method="list"> /WEB-INF/pages/shiftList.jsp Also I think all of my actions have at least 2 tags, the other one being "input". This

Re: [appfuse-user] No result defined for action au.com.myapp.webapp.action.DeliveryTonnageAction and result success

2007-12-12 Thread Nathan Anderson
Hi Rob, Shouldn't that Struts XML snippet look like this? /WEB-INF/pages/shiftList.jsp Also I think all of my actions have at least 2 tags, the other one being "input". Hope that helps, Nathan - "Rob Hills" <[EMAIL PROTECTED]> wrote: > Hi All, > > Using AppFuse 2.0 + Struts2 >

[appfuse-user] No result defined for action au.com.myapp.webapp.action.DeliveryTonnageAction and result success

2007-12-12 Thread Rob Hills
Hi All, Using AppFuse 2.0 + Struts2 I've been building this app for a while and have successfully added a number of Actions to it. Many hours ago, I went through the steps of adding my latest Action "DeliveryTonnageAction". When I went to test it via the browser, I got the error: "No res

Re: [appfuse-user] Appfuse or displaytag acting up?

2007-12-12 Thread Matt Raible
Are you using external pagination or are you letting the displaytag chunk everything? If you're letting displaytag do the chunking, you might change to use external paging. http://displaytag.sourceforge.net/11/tut_externalSortAndPage.html Matt On Dec 12, 2007, at 1:42 PM, John Kwon wrote:

[appfuse-user] Appfuse or displaytag acting up?

2007-12-12 Thread John Kwon
I have a simple JSP (this is appfuse 2.0, spring mvc) that has a displaytag showing 12 rows and four columns. The users usually get 6 to 8 pages (the list in displaytag makes those) of data. The list is an arraylist of beans that each have four attributes. No sorting is going on. But, the list

Re: [appfuse-user] CXF and AppFuse 2.0.1

2007-12-12 Thread Matt Raible
If you'd like to try upgrading AppFuse from XFire to CXF, I'd be happy to provide assistance. Matt On 12/12/07, jchartrand <[EMAIL PROTECTED]> wrote: > > Sorry, I should have provided more information: > > I'd like to integrate CXF so that I can provide RESTful services, as > described here: > >

Re: [appfuse-user] CXF and AppFuse 2.0.1

2007-12-12 Thread jchartrand
Sorry, I should have provided more information: I'd like to integrate CXF so that I can provide RESTful services, as described here: http://cwiki.apache.org/CXF20DOC/restful-services.html If AppFuse 2.0.1 already provides RESTful support as-is, all the better, but I don't think it does? I re

Re: [appfuse-user] Appfuse IChain Integration

2007-12-12 Thread Nathan Anderson
Looks like there have been a couple of threads on this list regarding AppFuse -> siteminder integration: http://appfuse.markmail.org/search/?q=siteminder But nothing on IChain... I would suggest asking on the Ageci forum: http://forum.springframework.org/forumdisplay.php?f=33 Hope that hel

[appfuse-user] Appfuse IChain Integration

2007-12-12 Thread kingbee888
Hi All, I'm using AppFuse 1.9.4 and I have a need to integrate our Appfuse application with Novell IChain. Looking at the ACEGI, I did find a filter for siteminder I was wondering if that same filter can be used for IChain passing in different parameters? Thanks, Bee -- View this message in c

Re: [appfuse-user] AppFuse 2.0.1 - Problem when changing from MyFaces to Sun's JSF RI

2007-12-12 Thread Matt Raible
Make sure you keep Tomahawk as a dependency. Matt On Dec 12, 2007, at 6:43 AM, base7691 wrote: I think I have narrowd the problem a little closer. It looks like it has something to do with the excluded MyFaces dependencies. If I don't exclude the MyFaces libs and use them in addition to

Re: [appfuse-user] AppFuse 2.0.1 - Problem when changing from MyFaces to Sun's JSF RI

2007-12-12 Thread base7691
I think I have narrowd the problem a little closer. It looks like it has something to do with the excluded MyFaces dependencies. If I don't exclude the MyFaces libs and use them in addition to Suns RI libs the error disappears but I get a page without any profile input components. Only the menu an

[appfuse-user] hibernate master detail problem

2007-12-12 Thread yuke
hi all, i'm using maven 2.0.1 , struts2 modular, and trying to make simple master detail case 1. create Master and detail pojo and make them related Master Pojo : @OneToMany(mappedBy="master") public Set getDetails() { return details; } Child Pojo : @ManyToOne @