Even the standard-examples.war application does not
work so I'm wondering if it's not necessarily my
taglib configuration.  I began to wonder if I had some
weird XML library in my path that was hosing
everything up.  So I reinstalled my JDK (1.4.1_02) and
Tomcat... but it had no effect.  Okay, here are more
specifics along with a snip from my web.xml.  I've
tried many variations of the configs you see below...
such as jars only without tld's... or only tld's
without jars.... tld's with/without web.xml entries...
etc., etc.... very frustrated :)



>From WEB-INF/lib
===================================
07/12/2003  10:03p             118,726
commons-beanutils.jar
07/12/2003  10:03p             165,119
commons-collections.jar
07/12/2003  10:03p             109,096
commons-digester.jar
07/12/2003  10:03p              22,379
commons-fileupload.jar
07/12/2003  10:03p              63,980
commons-lang.jar
07/12/2003  10:03p              31,605
commons-logging.jar
07/12/2003  10:03p              46,865
commons-validator.jar
07/13/2003  03:49a              26,710 dom.jar
07/12/2003  10:03p              65,368 jakarta-oro.jar
07/13/2003  03:49a             191,881 jaxen-full.jar
07/13/2003  03:49a              27,052 jaxp-api.jar
07/13/2003  03:49a               6,727
jdbc2_0-stdext.jar
07/13/2003  03:49a              20,997 jstl.jar
07/12/2003  03:51p             215,441
mysql-connector-java-3.0.8-stable-bin.jar
07/13/2003  03:49a              26,206 sax.jar
07/13/2003  03:49a              23,563 saxpath.jar
07/13/2003  03:49a           2,949,430 standard.jar
07/12/2003  10:03p              10,518
struts-legacy.jar
07/12/2003  10:03p             498,051 struts.jar
07/13/2003  03:44a              14,496
taglibs-application.jar
07/13/2003  03:49a           1,031,036 xalan.jar
07/13/2003  03:49a             885,250 xercesImpl.jar







>From WEB-INF
========================================
07/13/2003  03:49a              10,763 c-rt.tld
07/13/2003  03:49a              11,310 c.tld
07/14/2003  11:54p      <DIR>          classes
07/13/2003  03:49a              11,409 fmt-rt.tld
07/13/2003  03:49a              12,580 fmt.tld
07/15/2003  12:14a      <DIR>          lib
07/13/2003  03:49a               5,372 sql-rt.tld
07/13/2003  03:49a               6,127 sql.tld
07/12/2003  05:26p      <DIR>          src
07/12/2003  10:21p               8,868 struts-bean.tld
07/14/2003  09:59p               1,762
struts-config.xml
07/12/2003  10:21p              66,192 struts-html.tld
07/12/2003  10:21p              14,511
struts-logic.tld
07/12/2003  10:21p              64,659
struts-nested.tld
07/12/2003  10:21p               1,631
struts-template.tld
07/12/2003  10:21p               7,850
struts-tiles.tld
07/12/2003  10:03p               1,652
tiles-config.dtd
07/12/2003  10:03p              12,404
tiles-config_1_1.dtd
07/14/2003  09:51p                 751 tiles-defs.xml
07/12/2003  10:03p              10,071
validation_1_1.dtd
07/12/2003  10:03p              11,303
validator-rules_1_1.dtd
07/12/2003  10:03p              15,994 web-app_2_2.dtd
07/12/2003  10:03p              33,619 web-app_2_3.dtd
07/15/2003  12:00a               3,037 web.xml
07/13/2003  03:49a               7,200 x-rt.tld
07/13/2003  03:49a               7,673 x.tld


>From my web.xml
=============================================
.... servlet mapping tags .....


    <taglib>
        
<taglib-uri>http://java.sun.com/jstl/core</taglib-uri>
                <taglib-location>/WEB-INF/c.tld</taglib-location>
    </taglib>
    <taglib>
        
<taglib-uri>http://java.sun.com/jstl/core_rt</taglib-uri>
                <taglib-location>/WEB-INF/c-rt.tld</taglib-location>
    </taglib>
    <taglib>
        
<taglib-uri>http://java.sun.com/jstl/xml</taglib-uri>
                <taglib-location>/WEB-INF/x.tld</taglib-location>
    </taglib>
    <taglib>
        
<taglib-uri>http://java.sun.com/jstl/xml_rt</taglib-uri>
                <taglib-location>/WEB-INF/x-rt.tld</taglib-location>
    </taglib>
    <taglib>
        
<taglib-uri>http://java.sun.com/jstl/fmt</taglib-uri>
                <taglib-location>/WEB-INF/fmt.tld</taglib-location>
    </taglib>
    <taglib>
        
<taglib-uri>http://java.sun.com/jstl/fmt_rt</taglib-uri>
        
<taglib-location>/WEB-INF/fmt-rt.tld</taglib-location>
    </taglib>
    <taglib>
        
<taglib-uri>http://java.sun.com/jstl/sql</taglib-uri>
                <taglib-location>/WEB-INF/sql.tld</taglib-location>
    </taglib>
    <taglib>
        
<taglib-uri>http://java.sun.com/jstl/sql_rt</taglib-uri>
        
<taglib-location>/WEB-INF/sql-rt.tld</taglib-location>
    </taglib>

.... security contraint tags  ....


>From my JSP
===================================================
<%@ taglib prefix="c"
uri="http://java.sun.com/jstl/core"; %>
<%@ taglib prefix="x"
uri="http://java.sun.com/jstl/xml"; %>
<%@ taglib prefix="fmt"
uri="http://java.sun.com/jstl/fmt"; %>
<%@ taglib prefix="sql"
uri="http://java.sun.com/jstl/sql"; %>
<%@ taglib prefix="c_rt"
uri="http://java.sun.com/jstl/core_rt"; %>
<%@ taglib prefix="x_rt"
uri="http://java.sun.com/jstl/xml_rt"; %>
<%@ taglib prefix="fmt_rt"
uri="http://java.sun.com/jstl/fmt_rt"; %>
<%@ taglib prefix="sql_rt"
uri="http://java.sun.com/jstl/sql_rt"; %>



__________________________________
Do you Yahoo!?
SBC Yahoo! DSL - Now only $29.95 per month!
http://sbc.yahoo.com

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

Reply via email to