Ensure:
1) Your jsp points "sample" tagspace to an URI

<%@ taglib uri="http://myhost.com/mytags/samples"; prefix="sample" %>

2) The WEB-INF/web.xml includes an entry for the URI, pointing to the TLD

  <taglib>
    <taglib-uri>http://myhost.com/mytags/samples</taglib-uri>
    <taglib-location>/WEB-INF/samples.tld</taglib-location>
  </taglib>


I'd put the tld in the WEB-INF folder, and the reference to the TLD would be "/WEB-INF/x.tld


(oh, and if you use Linux verify read permissions ;-))

At 15:47 19/08/2004 -0700, you wrote:
Hi,
Deploying my first Custom Tag Example;

**ERROR**:
org.apache.jasper.JasperException: /hello.jsp(9,16)
Unable to load tag handler class "Hello" for tag
"sample:hello"

org.apache.jasper.compiler.DefaultErrorHandler.jspError(DefaultErrorHandler.java:39)

org.apache.jasper.compiler.ErrorDispatcher.dispatch(ErrorDispatcher.java:357)....

.jsp is in the app. root folder.
.tld is in same folder.
.class is also in same folder/tried in classes folder.
ref:
http://www.onjava.com/pub/a/onjava/2000/12/15/jsp_custom_tags.html
any other configuration reqd?

Thanks.



_______________________________
Do you Yahoo!?
Win 1 of 4,000 free domain names from Yahoo! Enter now.
http://promotions.yahoo.com/goldrush

---------------------------------------------------------------------
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]



--------------------------------------------------------------------- To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PROTECTED]



Reply via email to