Struts 2 Jasper Reports Plugin

2007-04-10 Thread ChristopherAngel
. How can I get access to the HttpServletRequest object from within the generateReport method? -- View this message in context: http://www.nabble.com/Struts-2-Jasper-Reports-Plugin-tf3552530.html#a9918148 Sent from the Struts - User mailing list archive at Nabble.com

Re: Struts 2 Jasper Reports Plugin

2008-08-09 Thread sattanari
on e) { System.out.println(e); } return SUCCESS; } public List getStatement() { System.out.println(" Returning Size Is ====

Re: Struts 2 Jasper Reports Plugin

2007-04-10 Thread ChristopherAngel
an I get access to the HttpServletRequest object from within the > generateReport method? > > > -- View this message in context: http://www.nabble.com/Struts-2-Jasper-Reports-Plugin-tf3552530.html#a9918621 Sent from the Struts - User mailing list archive at Nabble.com.

Re: Struts 2 Jasper Reports Plugin

2007-04-10 Thread Patrick J Kobly
You probably want st like: The problem is that the servlet request is set by an interceptor (servlet-config) that is in the default stack defined in struts-default. The jasperreports-default package does not define any interceptor stacks, and does not extend any other packages. PK Christ