Cannot find tag library
Hi all,
I have a web application deployed on Tomcat 4.1.30 and I get the following error when I try to access it:
org.apache.jasper.JasperException: File "/sopTags" not found
It seems like it can't find the tag library, but I can't figure out why, here is a snippet from my web.xml:
<taglib>
<taglib-uri>/sopTags</taglib-uri>
<tagliblocation>/WEBINF/tlds/sop_index.tld</taglib-location>
</taglib>
and here is a snippet from my tld file:
<?xml version="1.0" encoding="ISO-8859-1" ?>
<!DOCTYPE taglib PUBLIC "-//Sun Microsystems, Inc.//DTD JSP Tag Library 1.2//EN"
"http://java.sun.com/j2ee/dtds/web-jsptaglibrary_1_2.dtd">
<taglib>
<tlib-version>1.0</tlib-version>
<jsp-version>1.2</jsp-version>
<short-name>/sopTags</short-name>
<description>SOP Index Tag Library</description>
</taglib>
any suggestions on how to fix this or why it's happening?

