standard.jar broke in Tomcat?

2004-12-15 Thread Tim Watts
Hi, I'm having problems using standard.jar. For a simple page such as this: ?xml version=1.0 encoding=ISO-8859-1 ? !DOCTYPE html PUBLIC -//W3C//DTD XHTML 1.1//EN http://www.w3.org/TR/xhtml11/DTD/xhtml11.dtd; html xmlns=http://www.w3.org/1999/xhtml; head %@ taglib

Re: standard.jar broke in Tomcat?

2004-12-15 Thread Tim Watts
Here you go: taglib taglib-urihttp://java.sun.com/jstl/core/taglib-uri taglib-location/WEB-INF/lib/standard.jar/taglib-location /taglib The jar is in that location. And your assumption is correct. I'm using v1.0 of the JSTL downloaded from Apache. sven morales wrote: Hi, Can

Re: standard.jar broke in Tomcat?

2004-12-15 Thread sven morales
Thats now how its defined on mine. The taglib-location on mine points to a tld file and not the standard.jar. The TLD files should be like definition and attributes of those tags, unless your standard.jar includes them already. My standard.jar are basically the package of classes. An excerpt of

Re: standard.jar broke in Tomcat?

2004-12-15 Thread Tim Watts
I pulled c.tld from the jar, put it in WEB-INF and pointed taglib-location there. That fixed it. Thank you very much. But what still puzzles me is why TomCat couldn't find it in the jar? Is there a special syntax for referencing .tlds in a jar? Anyway, thanks again for your help. sven morales

Re: standard.jar broke in Tomcat?

2004-12-15 Thread sven morales
Why it could not find it? Where is it in your standard.jar? I do not believe the Digester looks at META-INF/ and checked for contents like these c.tld in that directory. Off hand I do not remember what functionality META-INF/ is for other than this is where you have a MANIFEST.MF file, the

Re: standard.jar broke in Tomcat?

2004-12-15 Thread sven morales
Hi, Can you paste the relevant section of your deployment descriptor web.xml for your demo webapp? Specifically, the taglib taglib-urihttp://java.sun.com/jstl/core/taglib-uri taglib-location Am assuming this is JSP 1.2? aka_sergio --- Tim Watts [EMAIL PROTECTED] wrote Hi,