I get the following error when running the JSP in tomcat 4.1.12 on W2k
org.apache.jasper.JasperException: null(-1,-1) File "/struts-layout" not
found...... (and the rest of the stack trace)
In web.xml I have
<taglib>
<taglib-uri>/struts-bean</taglib-uri>
<taglib-location>/WEB-INF/tld/struts-bean.tld</taglib-location>
</taglib>
On top of JSP I have
<%@ taglib uri="/struts-bean" prefix="bean" %>
However it worksfine if i give a full path in the JSP as
<%@ taglib uri="/WEB-INF/tld/struts-bean.tld" prefix="bean" %>
But according to TagLib Specs the first one is also valid. Or is it not?
--
To unsubscribe, e-mail: <mailto:tomcat-user-unsubscribe@;jakarta.apache.org>
For additional commands, e-mail: <mailto:tomcat-user-help@;jakarta.apache.org>