error in tag library descriptor in iplanet 6.1 service park 4
Hi Guys,
Im getting this exception from my jsp deployed to SunOne Web Server 6.1 (or Iplanet 6.1 as others know) service pack 4
org.apache.jasper.JasperException: WEB4083: No such tag bundle in the tag library imported with prefix i18n
I already toggle between actions below:
1. By referring to specific tld from WEB-INF/ in the JSP
<%@taglib prefix="i18n" uri="/WEB-INF/tlds/taglibs-i18n.tld"%>
note: the needed library file is already in WEB-INF/lib/
2. Invoking this line (this is only available for Servlet 2.3 and 2.4 specifications)
<%@taglib prefix="i18n" uri="http://jakarta.apache.org/taglibs/i18n-1.0"%>
note: the needed library file is already in WEB-INF/lib/
3. Invoking this line (if not Servlet 2.3 and 2.4 specifications)
<%@taglib prefix="i18n" uri="http://jakarta.apache.org/taglibs/i18n-1.0"%>
added lines below in web.xml:
--BEGIN--
<taglib>
<taglib-uri>http://jakarta.apache.org/taglibs/i18n-1.0</taglib-uri>
<taglib-location>/WEB-INF/taglibs-i18n.tld</taglib-location>
</taglib>
--END--
note: the needed library file is already in WEB-INF/lib/
4. By referring directly to the specific jar file from WEB-INF/lib/ in the JSP
<%@ taglib prefix="i18n" uri="/WEB-INF/lib/taglibs-i18n.jar"%>
Please help.
Thanks,
Eson.

