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: [ANN]: MicroNova YUZU Tag Library

2004-06-22 Thread derekmahar . 1941745
YUZU looks like a very useful tag library! My hope is that the next version of JSTL will incorporate some of YUZU's features, in particular the advanced tag that can operate on lists and maps. Derek --- Tag Libraries Users List" <[EMAIL PROTECTED] wrote: MicroNova has just released an EL-b

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

[ANN]: MicroNova YUZU Tag Library

2004-06-22 Thread Makoto Nagata
MicroNova has just released an EL-based open-source (BSD) tag library for JSTL (currently JSP 1.2): http://sourceforge.net/projects/micronova-yuzu/ We hope some of you will find it useful. Your comments are deeply appreciated. Thanks. Best Regards, Makoto Nagata --

Re: jsp 2.0 el string functions error

2004-06-22 Thread Þorgils Völundarson
Thank you for your reply. I found out that fn:length function can't be used to get the length of an integer object from sql query. So instead I changed my query to get the length of the variable and passed that to my fn:substring function. It appears that fn:length can only be done on strings b

Using JSTL import with a URL in a bean

2004-06-22 Thread Stuart Schmukler
I have been trying to get to work rendering pages. The coding is: or The idea is to reuse the coding around the import tag on a number of pages. I have stepped into the import tag code and find that the 'url' attribute of the tag is not being evaluated. Is this a bug? O