i have a project in a CVS that i run with jboss. i installed eclipse and imported it ok and was able to use the build file that to compile and everything. i purchased myeclipse so i could edit the jsp files and i am having trouble with the jsp pages finding my struts libraries that i have installed.
this is in my web.xml file
<taglib>
<taglib-uri>/tags/struts-html</taglib-uri>
<taglib-location>/WEB-INF/tlds/struts-html.tld</taglib-location>
</taglib>
but in the jsp page it says that it cannot find the tag html:html
<%@ page language=”java” %>
<%@ taglib uri=”/tags/struts-bean” prefix=”bean” %>
<%@ taglib uri=”/tags/struts-html” prefix=”html” %>
<%@ taglib uri=”/tags/struts-logic” prefix=”logic” %>
<?xml version=”1.0″ encoding=”ISO-8859-1″?>
<!DOCTYPE html PUBLIC “-//W3C//DTD XHTML 1.0 Strict//EN” “http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd”>
<html:html xhtml=”true”>
if i run my build file everything is still fine.
do i need to import it a different way?
thanks