RE: passing JSTL to custom tag attribute

2004-05-21 Thread Derek Mahar
Users List Subject: Re: passing JSTL to custom tag attribute No, actually you don't have to in Tomcat 5. It does ship with JSTL built in. You just have to use the appropriate declarations in the web.xml and so on. Derek (H) On May 20, 2004, at 5:04 PM, Derek Mahar wrote: What do you mean

RE: passing JSTL to custom tag attribute

2004-05-21 Thread Karl Coleman
It implements EL natively since it is a JSP 2.0 container. But including JSTL is news to me as well. Karl -Original Message- From: Derek Mahar [mailto:[EMAIL PROTECTED] Sent: Friday, May 21, 2004 9:45 AM To: Tag Libraries Users List Subject: RE: passing JSTL to custom tag attribute

RE: passing JSTL to custom tag attribute

2004-05-21 Thread Keith
Coleman [EMAIL PROTECTED] To: Tag Libraries Users List [EMAIL PROTECTED] Sent: Fri, 21 May 2004 09:47:43 -0400 Subject: RE: passing JSTL to custom tag attribute It implements EL natively since it is a JSP 2.0 container. But including JSTL is news to me as well. Karl -Original Message

RE: passing JSTL to custom tag attribute

2004-05-20 Thread Derek Mahar
Users List Subject: RE: passing JSTL to custom tag attribute I would say there are several basic ideas here: 1. Use a JSP 2.0 container, like Tomcat 5. The JSTL is implemented natively there. 2. Use solution 1. 3. Build a second tag library that's implemented exactly like Struts-EL. Each tag

RE: passing JSTL to custom tag attribute

2004-05-20 Thread Felipe Leme
Derek, I think he meant Tomcat 5 implements EL (and not JSTL) natively. Felipe On Thu, 2004-05-20 at 19:04, Derek Mahar wrote: What do you mean when you say that Tomcat 5 implements JSTL natively? From my experience, Tomcat 5 does not ship with JSTL. You must download and install JSTL

Re: passing JSTL to custom tag attribute

2004-05-20 Thread Derek
experience, Tomcat 5 does not ship with JSTL. You must download and install JSTL separately. Derek -Original Message- From: Karr, David [mailto:[EMAIL PROTECTED] Sent: May 13, 2004 9:14 AM To: Tag Libraries Users List Subject: RE: passing JSTL to custom tag attribute I would say

Re: passing JSTL to custom tag attribute

2004-05-20 Thread Derek
That's what I was replying to as well. Sorry for the confusion. Derek (H) On May 20, 2004, at 5:42 PM, Felipe Leme wrote: Derek, I think he meant Tomcat 5 implements EL (and not JSTL) natively. Felipe On Thu, 2004-05-20 at 19:04, Derek Mahar wrote: What do you mean when you say that Tomcat 5

Re: passing JSTL to custom tag attribute

2004-05-15 Thread Martin van Dijken
Hey Paul, There are essentially two ways: 1: Use the jakarta framework that the Jakarta JSTL implementation uses itself. There are several classes there that allow you to evaluate EL. 2: Upgrade to a JSP 2.0 container. Tomcat 5 is such a container. This container will automatically parse EL

RE: passing JSTL to custom tag attribute

2004-05-13 Thread Karr, David
I would say there are several basic ideas here: 1. Use a JSP 2.0 container, like Tomcat 5. The JSTL is implemented natively there. 2. Use solution 1. 3. Build a second tag library that's implemented exactly like Struts-EL. Each tag class in Struts-EL is a subclass of the corresponding tag in

RE: passing JSTL to custom tag attribute

2004-05-13 Thread Paul Wallace
Hi thanks for that, I am using Tomcat 4.1..? On first inspection I see that the Struts implements JSTL libraries such as javax.servlet.jsp.tagext.TagSupport. I am extending the likes of TagSupport / BodyTagSupport etc. Short of extending the Struts EL taglib's, I don't see what