Requesting bug on struts-tiles-plugin

2010-10-07 Thread Martin Gainty
Good Evening Stephen a few weeks ago you mentioned a bug for struts-tiles-plugin? could you kindly repost the bug and which version of struts that caused the bug thanks, Martin Gainty __ Verzicht und Vertraulichkeitanmerkung/Note de déni et de confi

Re: JFreeChart / Struts2

2010-10-07 Thread Frans Thamura
We have a lot of jfreechart sample at our blueoxygen relief project U can see the code at sf.net/projects/relief /m/ -Original Message- From: "CRANFORD, CHRIS" Date: Thu, 7 Oct 2010 12:44:23 To: Struts Users Mailing List Reply-To: "Struts Users Mailing List" Subject: JFreeChart / Stru

how to map REST resource

2010-10-07 Thread Greg Stasica
hi, i'm trying to map a REST resource like below /catalog/1/product/2/item following s2-rest-showcase i've no problem to map the first part of the resource i.e. up to /catalog/1 but i'm not sure how the cope with the remaining part

JFreeChart / Struts2

2010-10-07 Thread CRANFORD, CHRIS
I am having trouble determining how to best integrate JFreeChart to display the output image and allow the imagemap to be able to permit the user to drill down into another chart or data grid. In my struts configuration file I have: 400 300 We will want to display multiple char

RE: OGNL and init params

2010-10-07 Thread Altenhof, David Aron
The value is accessed through the application object, so yes, this will be consistent: http://struts.apache.org/2.0.11.1/docs/ognl.html -David -Original Message- From: Ashlon Hill [mailto:ash...@gmail.com] Sent: Thursday, October 07, 2010 12:09 PM To: Struts Users Mailing List Subject:

Re: OGNL and init params

2010-10-07 Thread Ashlon Hill
will it always be listed as *application*? or does that value change? On Thu, Oct 7, 2010 at 10:23 AM, Altenhof, David Aron wrote: > That did it ... thanks! > > -David > > -Original Message- > From: Maurizio Cucchiara [mailto:maurizio.cucchi...@gmail.com] > Sent: Wednesday, October 0

RE: OGNL and init params

2010-10-07 Thread Altenhof, David Aron
That did it ... thanks! -David -Original Message- From: Maurizio Cucchiara [mailto:maurizio.cucchi...@gmail.com] Sent: Wednesday, October 06, 2010 9:49 PM To: Struts Users Mailing List Subject: Re: OGNL and init params You would be able to access through ognl or more simply inside your

Re: How to set the value of request scope in a interceptor and get it in jsp?

2010-10-07 Thread Li Ying
Hi lunch716: For more detail information about this issue, you can read these documents: http://struts.apache.org/2.2.1/docs/ognl.html http://struts.apache.org/2.2.1/docs/ognl-basics.html And in [ognl-basics.html], it says: "#request['foo'] or #request.foo" means "request attribute ['foo'

Re: How to set the value of request scope in a interceptor and get it in jsp?

2010-10-07 Thread lunch716
Hi, Thanks Li and Maurizio! Here is the solution. I really appreciate you guys because I spent a whole day for this problem. Thanks a lot! --- Maurizio Cucchiara wrote: > This would work: > > > Maurizio Cucchiara > -- Learn more about breast cancer

Re: How to set the value of request scope in a interceptor and get it in jsp?

2010-10-07 Thread Maurizio Cucchiara
This would work: Maurizio Cucchiara - To unsubscribe, e-mail: user-unsubscr...@struts.apache.org For additional commands, e-mail: user-h...@struts.apache.org

Re: How to set the value of request scope in a interceptor and get it in jsp?

2010-10-07 Thread Li Ying
try 2010/10/7 > Hi, > > When I set a value in my interceptor,I could not get it in a jsp. > How to do that? > > > ### my interceptor > public class HogeIntercepter extends AbstractInterceptor { > > @Override > public String intercept(ActionInvocation invocation) throws Exception { >

How to set the value of request scope in a interceptor and get it in jsp?

2010-10-07 Thread lunch716
Hi, When I set a value in my interceptor,I could not get it in a jsp. How to do that? ### my interceptor public class HogeIntercepter extends AbstractInterceptor { @Override public String intercept(ActionInvocation invocation) throws Exception { HttpServletRequest request = ServletA