users@glassfish.java.net

Re: Glassfish v3 Deployment problem

From: <glassfish_at_javadesktop.org>
Date: Tue, 12 Jan 2010 06:18:51 PST

The "taglib" is not a direct subelement of web-app. You need to have a "jsp-config" element around the "taglib" elements, something like:

<jsp-config>
<taglib>
<taglib-uri>http://www.servletsuite.com/servlets/ajaxdivtag</taglib-uri>
<taglib-location>/WEB-INF/ajaxdivtags.tld</taglib-location>
</taglib>
<taglib>
<taglib-uri>http://java.sun.com/jsp/jstl/core</taglib-uri>
<taglib-location>/WEB-INF/c.tld</taglib-location>
</taglib>
<taglib>
<taglib-uri>/flash</taglib-uri>
<taglib-location>/WEB-INF/flash.tld</taglib-location>
</taglib>
</jsp-config>
[Message sent by forum member 'hzhang_jn' (hong.zhang_at_sun.com)]

http://forums.java.net/jive/thread.jspa?messageID=380298