Subject: Re: Deployer problem
JSP 2.0 has no .tld files any more. Neither do you need to edit your web.xml
file. You need to copy your tags to WEB-INF/tags directory.
x1.tag file, must reside in WEB-INF/tags
The jsp pages will have the following change:
<%@ taglib prefix="someTag" tag
JSP 2.0 has no .tld files any more. Neither do you need to edit your
web.xml file. You need to copy your tags to WEB-INF/tags directory.
x1.tag file, must reside in WEB-INF/tags
The jsp pages will have the following change:
<%@ taglib prefix="someTag" tagdir="/WEB-INF/tags" %>
Hope this he