• 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
  • Jeanne Boyarsky
  • Ron McLeod
  • Paul Clapham
  • Liutauras Vilda
Sheriffs:
  • paul wheaton
  • Rob Spoor
  • Devaka Cooray
Saloon Keepers:
  • Stephan van Hulst
  • Tim Holloway
  • Carey Brown
  • Frits Walraven
  • Tim Moores
Bartenders:
  • Mikalai Zaikin

where to put TAG HANDLER and TLD files

 
Ranch Hand
Posts: 126
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Quote
  • Report post to moderator
Hello Sir

I am new to CUSTOM TAGS , please tell me that like i am making an application then where to put the TAG HANDLER file and where to put TAG LIBRARY DESCRIPTOR ( TLD ) file , and please if possible then do please tell me some basic simple step by step tutorial for custom tags.

Sincere Regards
Gaurav
 
Ranch Hand
Posts: 96
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Quote
  • Report post to moderator
TAG LIBRARY DESCRIPTOR -- WEB-INF prefered WEB-INF/tld
TAG HANDLER -- WEB-INF/classes prefered package EB-INF/classes/tagext
 
Ranch Hand
Posts: 2874
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Quote
  • Report post to moderator
Your tag handler classes should be under WEB-INF/classes/..
Like your other class files.

Your tld goes into WEB-INF/tld or preferably META-INF/..

Developing JSP Custom Tags
[ September 26, 2005: Message edited by: Adeel Ansari ]
 
Consider Paul's rocket mass heater.
reply
    Bookmark Topic Watch Topic
  • New Topic