RE: Deployer problem

2004-02-11 Thread Chanan Braunstein
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

Re: Deployer problem

2004-02-10 Thread Mufaddal Khumri
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