Re: Url tag usage in struts2 problem and solution

2012-01-05 Thread Mahesh
Hi, I figured out what was going wrong. My "web.xml" looked like this: -- http://java.sun.com/dtd/web-app_2_3.dtd"; > -- I had to enable EL(Expression Language) by cha

Re: Url tag usage in struts2 problem and solution

2012-01-05 Thread Gabriel Belingueres
I would search for tags in your webapp's web.xml and tomcat's web.xml, and get rid of them. 2012/1/5 Łukasz Lenart : > 2012/1/5 Dave Newton : >> I might be wrong anyway, misread the post on my phone; not sure a var can >> be read through plain JSP EL like that-don't recall. > > As I remember it s

Re: Url tag usage in struts2 problem and solution

2012-01-05 Thread Łukasz Lenart
2012/1/5 Dave Newton : > I might be wrong anyway, misread the post on my phone; not sure a var can > be read through plain JSP EL like that-don't recall. As I remember it should work. Both notations should be supported ${} and %{} Regards -- Łukasz + 48 606 323 122 http://www.lenart.org.pl/ War

Re: Url tag usage in struts2 problem and solution

2012-01-05 Thread Dave Newton
Not really related to what I said, but like I said, I misread anyway. Dave On Jan 5, 2012 9:10 AM, "Mahesh" wrote: > Hi, > > The version of software being used for running the tutorial is below. > > Tomcat 6.0.33 > Java "1.6.0_26" > Struts 2.3.1.1 > on Linux > > -- > Mahesh > > On 5 January 201

Re: Url tag usage in struts2 problem and solution

2012-01-05 Thread Mahesh
Hi, The version of software being used for running the tutorial is below. Tomcat 6.0.33 Java "1.6.0_26" Struts 2.3.1.1 on Linux -- Mahesh On 5 January 2012 16:33, Mahesh wrote: > Hi, > > This is about the topic URL tags in struts2 tutorial available in the > below link. > > http://struts.apach

Re: Url tag usage in struts2 problem and solution

2012-01-05 Thread Dave Newton
I might be wrong anyway, misread the post on my phone; not sure a var can be read through plain JSP EL like that-don't recall. Sorry for the confusion. Dave On Jan 5, 2012 8:28 AM, "Dave Newton" wrote: > Looks like your container isn't evaluating JSP EL. Make sure your web.xml > is your servle

Re: Url tag usage in struts2 problem and solution

2012-01-05 Thread Dave Newton
This issue is only because of JSP EL eval, so isn't really serious... If we don't actually require 2.5 in the code, raising the version seems a little arbitrary. On Jan 5, 2012 8:33 AM, "Łukasz Lenart" wrote: > 2012/1/5 Dave Newton : > > Looks like your container isn't evaluating JSP EL. Make su

Re: Url tag usage in struts2 problem and solution

2012-01-05 Thread Łukasz Lenart
2012/1/5 Dave Newton : > Looks like your container isn't evaluating JSP EL. Make sure your web.xml > is your servlet spec 2.5+. All the time we're specifying as a minimal requirement Servlet API 2.4, shouldn't we change that to 2.5 though ? Regards -- Łukasz + 48 606 323 122 http://www.lenart.o

Re: Url tag usage in struts2 problem and solution

2012-01-05 Thread Johannes Geppert
The Url is stored in the Struts2 ValueStack. To access this, you should use the Struts2 Property Tag. Johannes - web: http://www.jgeppert.com twitter: http://twitter.com/jogep -- View this message in context: http://struts.1045723.n5.nabble.com/Url-tag-usage-in-struts2-problem-and

Re: Url tag usage in struts2 problem and solution

2012-01-05 Thread Dave Newton
Looks like your container isn't evaluating JSP EL. Make sure your web.xml is your servlet spec 2.5+. Dave On Jan 5, 2012 6:04 AM, "Mahesh" wrote: > Hi, > > This is about the topic URL tags in struts2 tutorial available in the > below link. > > http://struts.apache.org/2.x/docs/using-struts-2-ta

Url tag usage in struts2 problem and solution

2012-01-05 Thread Mahesh
Hi, This is about the topic URL tags in struts2 tutorial available in the below link. http://struts.apache.org/2.x/docs/using-struts-2-tags.html Problem is this: Bruce Phillips Hello Bruce Phillips --