Hello, and thanks in advance for all of your help. I'm new to struts, and to web development in general, and after tinkering with the struts tag libraries, I've decided to switch to using the JSTL tag library. This requires JSP 2.0 support, which I should have, as I am using Tomcat 5.5. My original web.xml file looked like this:
<?xml version="1.0"?> <!DOCTYPE web-app PUBLIC "-//Sun Microsystems, Inc.//DTD Web Application 2.3//EN" "http://java.sun.com/dtd/web-app_2_3.dtd"> <web-app> <servlet> [...] </servlet> <servlet-mapping> [...] </servlet-mapping> <welcome-file-list> [...] </welcome-file-list> <taglib> <taglib-uri>/WEB-INF/tlds/struts-bean.tld</taglib-uri> <taglib-location>/WEB-INF/tlds/struts-bean.tld</taglib-location> </taglib> <taglib> <taglib-uri>/WEB-INF/tlds/struts-html.tld</taglib-uri> <taglib-location>/WEB-INF/tlds/struts-html.tld</taglib-location> </taglib> <taglib> <taglib-uri>/WEB-INF/tlds/struts-logic.tld</taglib-uri> <taglib-location>/WEB-INF/tlds/struts-logic.tld</taglib-location> </taglib> </web-app> The new web.xml looks like this <?xml version="1.0"?> <web-app xmlns="http://java.sun.com/xml/ns/j2ee" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://java.sun.com/xml/ns/j2ee http://java.sun.com/xml/ns/j2ee/web-app_2_4.xsd" version="2.4"> <servlet> [...] </servlet> <servlet-mapping> [...] </servlet-mapping> <welcome-file-list> [...] </welcome-file-list> <taglib> <taglib-uri>/WEB-INF/tlds/struts-bean.tld</taglib-uri> <taglib-location>/WEB-INF/tlds/struts-bean.tld</taglib-location> </taglib> <taglib> <taglib-uri>/WEB-INF/tlds/struts-html.tld</taglib-uri> <taglib-location>/WEB-INF/tlds/struts-html.tld</taglib-location> </taglib> <taglib> <taglib-uri>/WEB-INF/tlds/struts-logic.tld</taglib-uri> <taglib-location>/WEB-INF/tlds/struts-logic.tld</taglib-location> </taglib> </web-app> Unfortunately, in eclipse (version 3.0), it seems I get an error when trying to use the <taglib> tag. When I looked at the xsd, it indeed seemed that the <taglib> tag was no longer there. While I am no longer going to use the struts tag libraries, how would I specify the JSTL tag libraries without the <taglib> tag in the web.xml file? Is there a completely different way to go about this? Regards, Anthony Frasso --------------------------------------------------------------------- To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PROTECTED]