Someone told me they thought some of my tag-libs were depricated and that I shouldn't be using them anymore. From the examples at Bluestone, I added these to my web.xml file. The web site only shows four that look to be needed.
 
template, logic, form, bean.
 
Are these correct?
 
If anyone knows of which ones I should or shouldn't have, much apprecitated.
 
------------ Taglibs I've included in my web.xml file --------------------------------------
 <taglib>
      <taglib-uri>/WEB-INF/struts-bean.tld</taglib-uri>
      <taglib-location>/WEB-INF/struts-bean.tld</taglib-location>
   </taglib>
 
   <taglib>
      <taglib-uri>/WEB-INF/struts-html.tld</taglib-uri>
      <taglib-location>/WEB-INF/struts-html.tld</taglib-location>
   </taglib>
 
   <taglib>
      <taglib-uri>/WEB-INF/struts-form.tld</taglib-uri>
      <taglib-location>/WEB-INF/struts-form.tld</taglib-location>
   </taglib>
 
   <taglib>
      <taglib-uri>/WEB-INF/struts-logic.tld</taglib-uri>
      <taglib-location>/WEB-INF/struts-logic.tld</taglib-location>
   </taglib>
 
   <taglib>
      <taglib-uri>/WEB-INF/struts-template.tld</taglib-uri>
      <taglib-location>/WEB-INF/struts-template.tld</taglib-location>
   </taglib>
 

Reply via email to