Hi,
If i have a tag file, header.tag that is in a JAR library I need this structure in my JAR library:
mylibrary.jar
|
META-INF
| ------------ tags/header.tag
|
|------------- mytld.tld
this is my mytld.tld
For use the header tag in another Web app, i need to put mylibrary.jar under /META-INF/lib directory and in my JSPs of my web app I can use the header.tag with this directive:
If my tag not is in a .jar library file. I need to put my header.tag file inside a directory/subdirectory WEB-INF/tags and I use the tag inside a
JSP with this directive:
It is correct??
Thanks.