Re: Re: Using JSTL import with a URL in a bean

2004-06-22 Thread Kris Schneider
No. Get Standard 1.0.5, it implements JSTL 1.0. Use the following taglib directives: <%@ taglib prefix="c" uri="http://java.sun.com/jstl/core"; %> <%@ taglib prefix="fmt" uri="http://java.sun.com/jstl/fmt"; %> <%@ taglib prefix="sql" uri="http://java.sun.com/jstl/sql"; %> <%@ taglib prefix="x"

Re: Re: Using JSTL import with a URL in a bean

2004-06-22 Thread Stuart Schmukler
I am using Tomcat 4.1.29, so now I am questioning what standard.jar I am using. Will Standard 1.1.0 work in Tomcat 4.1.29? Stuart On Tue, 22 Jun 2004, Kris Schneider ([EMAIL PROTECTED]) wrote: > The "url" attribute is dynamic, so you can definitely use an expression to set > its value. S

Re: Using JSTL import with a URL in a bean

2004-06-22 Thread Kris Schneider
The "url" attribute is dynamic, so you can definitely use an expression to set its value. Standard 1.1.0 implements JSTL 1.1 which requires a JSP 2.0 container (like Tomcat 5). Whicht appserver are you using? If it supports JSP 2.0, is your app using a Servlet 2.4 web.xml? Quoting Stuart Schmukler