Re: Struts + Tomcat 5.0/ JSP 2.0+ JSTL

2004-08-20 Thread Kris Schneider
;-) So, just to clarify, Struts-EL is really only useful with JSP 1.2. It doesn't allow request-time expressions for tag attributes since the EL evaluation is done by the taglib, not the container. In JSP 2.0, however, EL evaluation has been incorporated into the container so that any taglib whose

Re: Struts + Tomcat 5.0/ JSP 2.0+ JSTL

2004-08-20 Thread Rick Reumann
Rick Reumann wrote: This is why in my example I was pointing out to Erez that, even though he's in a 1.2 container, I meant JSP 2.0 ... gets confusing when talking about Struts1.1, 1.2 and then JSP2.0:) -- Rick - To unsubscrib

Re: Struts + Tomcat 5.0/ JSP 2.0+ JSTL

2004-08-20 Thread Rick Reumann
Vic Cekvenich wrote: Good point. 2.0 mens everyting is el. Actually yes, but not necessary the struts html tags. From what I remember you can't just use expressions in the regular html tags in Struts 1.1 because of the way they are declared. In Struts 1.2 they fix this. Look a the ... declaratio

Re: Struts + Tomcat 5.0/ JSP 2.0+ JSTL

2004-08-20 Thread Kris Schneider
What do you mean by, "over the net"? Even though the uri attribute of a taglib directive usually looks like a net location, it's really just a unique identifier for the taglib. If you try hitting http://jakarta.apache.org/struts/tags-html, all you'll get is a 404 error. To me, the simplest thing to

Re: Struts + Tomcat 5.0/ JSP 2.0+ JSTL

2004-08-20 Thread Vic Cekvenich
Good point. 2.0 mens everyting is el. Also, I declare tld to pont to /WEB-INF and not over the net. .V Jason Lea wrote: I also changed to tomcat 5.0 + JSP 2.0. You can stop using the struts-el tags and just use the normal struts tags. Erez Efrati wrote: Hi, I am working with Struts 1.1 + JST 1.0

Re: Struts + Tomcat 5.0/ JSP 2.0+ JSTL

2004-08-19 Thread Jason Lea
I also changed to tomcat 5.0 + JSP 2.0. You can stop using the struts-el tags and just use the normal struts tags. Erez Efrati wrote: Hi, I am working with Struts 1.1 + JST 1.0 tags. I wish to use some of the fine features of JSP 2.0 like EL expression everywhere I like instead of always putting

Re: Struts + Tomcat 5.0/ JSP 2.0+ JSTL

2004-08-19 Thread Rick Reumann
Erez Efrati wrote: for using the Just to note that the html:hidden refers actually the html-el:hidden. What am I missing? Do I need another version of JSTL, Struts or what? Make sure you are pointing to the correct html-el tag tld: Can't remember if this is Struts 1.1 or 1.2, but it should loo

Re: Struts + Tomcat 5.0/ JSP 2.0+ JSTL

2004-08-19 Thread Vic Cekvenich
For diags: Can you just do a simple non tag el in a jsp w/o declaring? .V Erez Efrati wrote: Hi, I am working with Struts 1.1 + JST 1.0 tags. I wish to use some of the fine features of JSP 2.0 like EL expression everywhere I like instead of always putting JSTL 1.0 tag. I would also like to con