From: "Nirmala Dhara" <[EMAIL PROTECTED]>

<%@ taglib uri="struts/bean-el" prefix="bean" %>
<%@ taglib uri="struts/html-el" prefix="html" %>

org.apache.jasper.JasperException: File "/struts/bean-el" not found

I suggest removing the <taglib> tags from web.xml, and using the URIs found in the tld files themselves (which are stored in struts.jar and struts-el.jar). The tlds can be found within the .jar files, there's no longer any need to store them "loose" under WEB-INF and configure them in web.xml.

Try:
  <%@ taglib uri="http://struts.apache.org/tags-html-el"; prefix="html" %>
  <%@ taglib uri="http://struts.apache.org/tags-bean-el"; prefix="bean" %>

(As for the original question, I wonder if either the TLD files are not under WEB-INF, or if in one JSP you have uri="/struts/bean-el" with a leading slash.)

--
Wendy Smoak

---------------------------------------------------------------------
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]

Reply via email to