fea jabi wrote:
using struts 1.2.7

Used c tags in my jsp and also gave this

<%@ taglib uri="http://java.sun.com/jstl/core"; prefix="c" %>

in web.xml
 <taglib>
     <taglib-uri>http://java.sun.com/jstl/core</taglib-uri>
     <taglib-location>/WEB-INF/lib/c.tld</taglib-location>
 </taglib>

 <taglib>
         <taglib-uri>http://java.sun.com/jstl/fmt</taglib-uri>
         <taglib-location>/WEB-INF/lib/fmt.tld</taglib-location>
 </taglib>

 <taglib>
         <taglib-uri>http://java.sun.com/jstl/xml</taglib-uri>
         <taglib-location>/WEB-INF/lib/x.tld</taglib-location>
 </taglib>

 <taglib>
         <taglib-uri>http://java.sun.com/jstl/sql</taglib-uri>
         <taglib-location>/WEB-INF/lib/sql.tld</taglib-location>
  </taglib>

thinking one of the jars in it will have the JSTL stuff. Which ar has the JSTL stuff in it?

Where can I get the tld's for these.

I don't see the above tld's in my proj. I might have to get them. Where can I get these from?


The TLDs are bundled with the JSTL implementation. Struts doesn't bundle a JSTL implementation, you'll need to download and install it seperately [1]. Whether you want the Standard 1.0 or Standard 1.1 taglib depends on your servlet container. Also, depending on your servlet container, you probably don't need those entries in web.xml.

L.

[1] http://jakarta.apache.org/taglibs/


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

Reply via email to