I have a
JSP which is using two of the standard tag libraries.
I have the JSTL files standard.jar and jstl.jar in my web application's /WEB-INF/lib directory. Still it seems that the TLD being sought by
Tomcat (META-INF/c.tld) isn't being read correctly, even though it is contained in the /WEB-INF/lib/standard.jar file. Here is the exception message I am getting when I try accessing the page:
Here is my JSP:
I have the following taglib entries in my web.xml:
Can anyone see what I have done wrong, or what else I need to do in order to have the TLD read correctly for the JSTL tags ?
I am using Tomcat 5.5.4.
Thanks in advance for any suggestions.
--James