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

[appfuse-user] forms in pdf

2007-08-03 Thread Fred Forester
hi all, I worked on a different j2ee framework for the past year that had the ability to run a Freemarker template that could generate fo xsl. a viewhandler could then invoke fop to render the pdf. is something like that possible with struts? Im using appfuse 1.9. Thanx Fred -