Hi, When I try to run my application it throws the following error. 07/04/06 21:33:09 testapp: JspServlet: unable to dispatch to requested page: Exception racle.jsp.parse.JspParseException: Line # 2, <%@ taglib uri="testappstags.tld" prefix="ReIM" %> Error: Unable to load taghandler class: testapps.tld
The message is telling you it can't find the specified tld file. Since you normally don't want a tld to be accessible to the outside world, it is customary to put it in the WEB-INF directory. If you do this, the URI in the taglib definition should be "/WEB-INF/testappstags.tld".