Salve
sto cercando di imparare ad usare i Custom Tag ma ho il seguente problema con tomcat 5.5:
ho un file example.tld nella cartella /WEB-INF
ho un file SimpleTag.class nella corretta posizione all'interno delle sottocartella /WEB-INF/classes
l'entry del file .tld:
<tag>
<name>hello</name>
<tag-class>SimpleTag</tag-class>
<body-content>empty</body-content>
</tag>
non capisco perchč il seguente codice JSP non funzioni:
<%@ taglib prefix="ex" uri="WEB-INF/example.tld"%>
<html>
<head>
<title>A test of My tag</title>
</head>
<body>
<ex:hello/>
</body>
</html>
grazie