Re: [S2]Accessing value stack with jstl

2009-07-01 Thread Dave Newton
Volker Krebs wrote: we recently update from struts 2.0.14 to struts 2.1.6 In struts 2.0.14 org.apache.struts2.dispatcher.StrutsRequestWrapper was delegating to the Value Stack. This meant that in my JSP Page: was the same as ${foo} With struts 2.1.6 this doesn't seem to work. How can I enable i

Re: [S2]Accessing value stack with jstl

2009-07-01 Thread Volker Krebs
i, problem solved! Just for the records: If the struts2 filter config in web.xml looks as follows: struts2 org.apache.struts2.dispatcher.FilterDispatcher And the filter-mapping has dispatcher defined struts2 /* REQUEST ERROR FORWARD Accessing value stack with JSTL won't work

Re: [S2]Accessing value stack with jstl

2009-07-01 Thread Volker Krebs
Volker Krebs schrieb: Hello, we recently update from struts 2.0.14 to struts 2.1.6 In struts 2.0.14 org.apache.struts2.dispatcher.StrutsRequestWrapper was delegating to the Value Stack. This meant that in my JSP Page: was the same as ${foo} With struts 2.1.6 this doesn't seem to work. How can I

Accessing value stack with jstl

2009-06-30 Thread Volker Krebs
Hello, we recently update from struts 2.0.14 to struts 2.1.6 In struts 2.0.14 org.apache.struts2.dispatcher.StrutsRequestWrapper was delegating to the Value Stack. This meant that in my JSP Page: was the same as ${foo} With struts 2.1.6 this doesn't seem to work. How can I enable it ? Any help