users@glassfish.java.net

RE: web.xml error-Invalid content was found starting with element 'taglib'

From: <w.rittmeyer_at_jsptutorial.org>
Date: Wed, 11 Mar 2009 10:55:09 +0100

The <taglib> element is a sub element of <jsp-config>, thus it should be:

<jsp-config>
   <taglib>
      <taglib-uri>http://displaytag.sf.net</taglib-uri>
      <taglib-location>/WEB-INF/displaytag-el.tld</taglib-location>
   </taglib>
</jsp-config>


--
Wolfram Rittmeyer