Re: Taglibs ; error in a JSP using expression langluage

2006-08-08 Thread Le Nguyen-Thinh
not be available. --David Pid wrote: which version of tomcat are you using? is Expression Language enabled? as it looks like it's passing the ${0} variable as a string rather than evaluating it. Try setting the following attribute in your JSP 'page' directive. <%@ page ... isELIgn

Taglibs ; error in a JSP using expression langluage

2006-08-08 Thread Le Nguyen-Thinh
Dear friends, I have a JSP which uses following taglibs: <%@ taglib prefix="c" uri="http://java.sun.com/jsp/jstl/core"; %> <%@ taglib prefix="fn" uri="http://java.sun.com/jsp/jstl/functions"; %> My JSP contains a piece of code which calls a tag from the taglib above:

Re: class loader for native library

2006-08-08 Thread Le Nguyen-Thinh
ould you help me please, how to configure/ specify the taglibs we want to use? Did I export the JAVA_OPTS in order to access to the native library correctly? JAVA_OPTS="-Djava.library.path=/opt/pkg/pl/lib/pl-5.6.6/lib/i686-linux" Thanks a lot for your advice. Thinh Mark Tho

class loader for native library

2006-08-07 Thread Le Nguyen-Thinh
Dear friends, My web-based application needs to communicate with a native library. Therefore, I specify the JAVA_OPTS variable with the path to a native library before running startup.sh: export JAVA_OPTS="-Djava.library.path=/opt/pkg/pl/lib/pl-5.6.6/lib/i686-linux" Unfortunately, I got th