Re: OGNL context lookup

2011-08-11 Thread Steven Yang
so what you want is dynamically finding values on top of the OGNL stack? I am pretty sure its not possible directly through existing tags. But if write your own method which is like public Object getValueFromStack(String key) { return stack.findValue(key) } (havent gone to check how exactly to

OGNL context lookup

2011-08-08 Thread CRANFORD, CHRIS
I have a JSP page where I need to iterate over a list of strings and for each string, I need to query the OGNL stack and get the value that string name represents followed by adding the name/value pair to a URL. I thought something like the following would work but it doesn't. Can anyone help?