[appfuse-user] Appfuse After Action Report

2007-11-10 Thread John Kwon
I had to build a Documentum application (accessing Documentum 5.3) on short order. I used Appfuse, and picked the Spring MVC/Hibernate combination (there was some additional SQL Server access). The application had to embed PDFs pulled from Documentum in one of the views, and a considerable amount

Re: [appfuse-user] external web services question - need help and advice

2007-11-10 Thread Dale Newfield
p7k wrote: What if the service I want to use doesn't have any WSDL description access, only a simple http request? There's always jakarta's httpclient... -Dale - To unsubscribe, e-mail: [EMAIL PROTECTED] For additional command

[appfuse-user] external web services question - need help and advice

2007-11-10 Thread p7k
Dear AppFusers, I apologize in advance, if you find this to be off-topic for this mailing list, and thus perhaps in poor taste. I'm currently developing an vehicle routing optimization web-app using AppFuse (Spring, Hibernate, JSF, Facelets). So far I was able to get away using gMaps for my geo

Re: [appfuse-user] Problems with JstlView.render

2007-11-10 Thread John Kwon
That's the weird thing - not seeing anything in the logs. Ah well, thank god for SVN. I just rolled back, and re-implemented the changes I wanted, and it's all working again. Just a bit of weirdness. On 11/10/07, Matt Raible <[EMAIL PROTECTED]> wrote: > > What's the error you're seeing? From a

Re: [appfuse-user] Problems with JstlView.render

2007-11-10 Thread Matt Raible
What's the error you're seeing? From a logging perspective, it all looks fine. Matt On Nov 10, 2007, at 11:28 AM, John Kwon wrote: [quality] DEBUG [http-8080-1] JstlView.render(227) | Rendering view with name 'afiles' with model {aFileSamplingList= [20070223_D10-4122P|245 A-FILES|12 A-FILE

[appfuse-user] Problems with JstlView.render

2007-11-10 Thread John Kwon
[quality] DEBUG [http-8080-1] JstlView.render(227) | Rendering view with name 'afiles' with model {aFileSamplingList=[20070223_D10-4122P|245 A-FILES|12 A-FILES|||02/23/2007|0, 20070223_D10-DIG-01|6 A-FILES|1 A-FILES|||02/23/2007|0, BOXB|2 A-FILES|1 A-FILES|||02/23/2007|0]} and static attributes {}

Re: [appfuse-user] AppFuse 2 + Hibernate + Struts - Save -> "Read-Only" error

2007-11-10 Thread Rob Hills
Hi Michael, Michael Horwitz wrote: The usual culprit here is in the naming of the manager class your are using to do the save/edit. AppFuse ships with the following definitions for the AOP transaction proxy: advice-ref="userManagerTxAdvice" pointcut="execution(* *..service.UserManag

Re: [appfuse-user] AppFuse 2 + Hibernate + Struts - Save -> "Read-Only" error

2007-11-10 Thread Michael Horwitz
The usual culprit here is in the naming of the manager class your are using to do the save/edit. AppFuse ships with the following definitions for the AOP transaction proxy: In short this says proxy all classes with names ending in 'Manager' that are in package 'se

[appfuse-user] AppFuse 2 + Hibernate + Struts - Save -> "Read-Only" error

2007-11-10 Thread Rob Hills
Hi All, I've been developing a complicated "overview" form for my application and created a separate Action class for it. However, once the user has selected an object on that form, they use a "normal" CRUD form to edit it and save that to the "normal" CRUD action for that object. However,