• Post Reply Bookmark Topic Watch Topic
  • New Topic
programming forums Java Mobile Certification Databases Caching Books Engineering Micro Controllers OS Languages Paradigms IDEs Build Tools Frameworks Application Servers Open Source This Site Careers Other Pie Elite all forums
this forum made possible by our volunteer staff, including ...
Marshals:
  • Campbell Ritchie
  • Tim Cooke
  • paul wheaton
  • Ron McLeod
  • Jeanne Boyarsky
Sheriffs:
  • Paul Clapham
Saloon Keepers:
  • Tim Holloway
  • Roland Mueller
Bartenders:

Problem with tag libraries

 
Greenhorn
Posts: 10
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Quote
  • Report post to moderator
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

Can anyone help me here.

Thanks.
 
Ranch Hand
Posts: 4864
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Quote
  • Report post to moderator
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".
 
Been there. Done that. Went back for more. But this time, I took this tiny ad with me:
Clean our rivers and oceans from home
https://www.kickstarter.com/projects/paulwheaton/willow-feeders
reply
    Bookmark Topic Watch Topic
  • New Topic