i have setted the jar files in classpath, tld files in WEB-INF folder and added the <taglib> in web.xml
Application servers ignore the system classpath when it comes to web applications.
To install JSTL correctly all you need to to is copy jstl.jar and standard.jar into the WEB-INF/lib directory of your application.
THATS IT!
- no tld files required
- no entries in web.xml
- NO PROBLEM!
My suggestions to you: undo everything you have done
- delete the tlds
- remove those entries from WEB-INF
- take those jars out of the classpath
- copy standard.jar and jstl.jar into your WEB-INF/lib directory.
- restart your app server.
[ January 25, 2006: Message edited by: Bear Bibeault ]