RE: [appfuse-user] Multiple Parameters in DisplayTag Column URL

2007-08-05 Thread Travers Snyman
Thanks Matt, That works !! Travers -Original Message- From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] On Behalf Of Matt Raible Sent: 03 August 2007 06:51 PM To: users@appfuse.dev.java.net Subject: Re: [appfuse-user] Multiple Parameters in DisplayTag Column URL Have you tried using: hr

Re: [appfuse-user] forms in pdf

2007-08-05 Thread Fred Forester
Matt, I think I just got it. use /pdfs/pdfPurchaseOrder as the path. put the files in WEB-INF/pdfs and exclude /pdfs/* that seems to work. Thanx Fred Fred Forester wrote: Hi Matt, Im guessing just the forward paths. I have this in the Action class * @struts.action name="purchaseOrderF

Re: [appfuse-user] forms in pdf

2007-08-05 Thread Fred Forester
Hi Matt, Im guessing just the forward paths. I have this in the Action class * @struts.action name="purchaseOrderForm" path="/pdfPurchaseOrder" scope="request" * validate="true" parameter="method" input="edit" * @struts.action-forward name="pdf" path="/WEB-INF/pages/purchaseOrderForm.pdf"

Re: [appfuse-user] forms in pdf

2007-08-05 Thread Matt Raible
When you exclude it from decorators.xml, are you excluding both the request and the forward paths? Matt On 8/5/07, Fred Forester <[EMAIL PROTECTED]> wrote: > > I was able to get this concept working by creating my own version of the > freemarker servlet and adding fop to it. then mapping *.pdf to

Re: [appfuse-user] forms in pdf

2007-08-05 Thread Fred Forester
I was able to get this concept working by creating my own version of the freemarker servlet and adding fop to it. then mapping *.pdf to this new servlet. however, it seems that sitemesh is getting in the way. if I disable sitemesh it works like a charm. I tried to exclude *.pdf from decorato

Re: [appfuse-user] Need help: exposing the PersonManager (in the tutorial) thru Spring httpInvoker

2007-08-05 Thread Matt Raible
I wish I could answer your question but unfortunately don't have time to try to reproduce this problem on my end. This thread is starred in my inbox, so I will try to reproduce someday, just not in the near future. Matt On 8/5/07, satish5 <[EMAIL PROTECTED]> wrote: > > I finally got it to work by

Re: [appfuse-user] Need help: exposing the PersonManager (in the tutorial) thru Spring httpInvoker

2007-08-05 Thread satish5
I finally got it to work by adding a urlMapping bean to my remoting-servlet.xml. /peopleservice=/peopleservice Although it now works, I can't figure out why this url mapping is needed just