Hi there,Error:The absolute uri: http://java.sun.com/jsp/jstl/sql cannot be resolved in either web.xml or the jar files deployed

Hi there, I try to use the "SQL JSP Standard Library" but the taglib doesn't work. I always receive the error: "JSP Parsing Error:The absolute uri: http://java.sun.com/jsp/jstl/sql cannot be resolved in either web.xml or the jar files deployed with this application" what am I doing wrong? This is my taglib line:
Code:
<%@ taglib uri="http://java.sun.com/jsp/jstl/sql" prefix="sql" %>
standard.jar is located within "WEB-INF/lib" Thank you for your help! Sascha[/code] Anonymous - May 22, 2005 - 02:29 PM Post subject: Re: jsp: taglib won't be included (JSTL)
Sascha wrote:
Hi there, I try to use the "SQL JSP Standard Library" but the taglib doesn't work. I always receive the error: "<B style="color:black;background-color:#ffff66">JSP Parsing Error:The absolute uri</B>: http://java.sun.com/jsp/jstl/sql cannot be resolved in either web.xml or the jar files deployed with this application" what am I doing wrong? This is my taglib line:
Code:
<%@ taglib uri="http://java.sun.com/jsp/jstl/sql" prefix="sql" %>
standard.jar is located within "WEB-INF/lib" Thank you for your help! Sascha[/code]
Anonymous - Jun 09, 2005 - 06:37 AM Post subject: RE: Re: jsp: taglib won you need to parse it in the web.xml to run correctly try something like this <taglib> <taglib-uri> http://java.sun.com/jsp/jstl/sql</taglib-uri> <taglib-location>/WEB-INF/sql.tld</taglib-location> </taglib> where /WEB-INF/sql.tld will be the tls wich you are referencing

你可能感兴趣的:(sql,jsp,jar,application,library,Parsing)