Re: Tomcat and JSTL

2007-09-22 Thread David Smith
Just as a thought, did you declare version 2.4 in your web.xml? I think that's required to get stuff like the expression language to be recognized. --David John Langan wrote: I am having difficulty in getting Tomcat to understand JSTL tags and the JSP Expression Language. As a result ${expre

RE: Tomcat and JSTL -- Generalized Question

2007-09-21 Thread Caldarale, Charles R
> From: Ken Bowen [mailto:[EMAIL PROTECTED] > Subject: Re: Tomcat and JSTL -- Generalized Question > > Does there exist an organized run-down on which jars should > be placed in common/lib (e.g., database connectors) and > which jars should be placed in WEB-INF/lib (e.g. js

Re: Tomcat and JSTL -- Generalized Question

2007-09-21 Thread Ken Bowen
Does there exist an organized run-down on which jars should be placed in common/lib (e.g., database connectors) and which jars should be placed in WEB-INF/lib (e.g. jstl.jar)? Thanks, Ken Bowen Caldarale, Charles R wrote: From: John Langan [mailto:[EMAIL PROTECTED] Subject: Tomcat and JSTL I

RE: Tomcat and JSTL

2007-09-21 Thread Caldarale, Charles R
> From: John Langan [mailto:[EMAIL PROTECTED] > Subject: Tomcat and JSTL > > I am having difficulty in getting Tomcat to understand JSTL > tags and the JSP Expression Language. Do the JSTL examples that come with Tomcat work? > I have standard.jar and jstl.jar files in > C:\apache-tomcat-5.5.

Re: Tomcat and JSTL 1.2

2007-01-09 Thread chaitya shah
1st u need to copy all *.tld files to WEB-INF folder and all JAR files to WEB-INF/lib/ folders including JSTL-1.2.JAR file also On 1/9/07, ben short <[EMAIL PROTECTED]> wrote: Hi all, Im trying to use jstl 1.2 with tomcat 5.5.20 and java 1.5.0_05-b05. My webapp deploys ok but when I browse

Re: Tomcat and JSTL 1.2

2007-01-09 Thread ben short
-Original Message- From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] On Behalf Of ben short Sent: Tuesday, January 09, 2007 12:45 PM To: Tomcat Users List Subject: Re: Tomcat and JSTL 1.2 Tim, Thats what I thought, but I check and double checked and the jstl-1.2.jar file is in the corr

RE: Tomcat and JSTL 1.2

2007-01-09 Thread Derrick Koes
1 core library JSTL core 1.1 c http://java.sun.com/jsp/jstl/core <%@ taglib uri="http://java.sun.com/jsp/jstl/core"; prefix="c" %> -Original Message- From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] On Behalf Of ben short Sent: Tuesday, January 09, 2007

Re: Tomcat and JSTL 1.2

2007-01-09 Thread ben short
Tim, Thats what I thought, but I check and double checked and the jstl-1.2.jar file is in the correct location. It also has the c.tld inside it. On 1/9/07, Tim Funk <[EMAIL PROTECTED]> wrote: Looks like you are missing the JSTL jar files whihc need to be in WEB-INF/lib -Tim ben short wrote: >

Re: Tomcat and JSTL 1.2

2007-01-09 Thread Tim Funk
Looks like you are missing the JSTL jar files whihc need to be in WEB-INF/lib -Tim ben short wrote: Hi all, Im trying to use jstl 1.2 with tomcat 5.5.20 and java 1.5.0_05-b05. My webapp deploys ok but when I browse to it I get the following exception. xception org.apache.jasper.JasperExcep

Re: Tomcat and JSTL 1.2

2007-01-09 Thread ben short
Derrick, Thanks for spoting that, but thats a typo when i typed it into the email On 1/9/07, Derrick Koes <[EMAIL PROTECTED]> wrote: <%@ taglib prefix="c" uri="http://java.sun.com/jsp/jstl/core"; %> Perhaps a missing quote in the url attribute? -Original Message- From: [EMAIL PROTEC

RE: Tomcat and JSTL 1.2

2007-01-09 Thread Derrick Koes
<%@ taglib prefix="c" uri="http://java.sun.com/jsp/jstl/core"; %> Perhaps a missing quote in the url attribute? -Original Message- From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] On Behalf Of ben short Sent: Tuesday, January 09, 2007 12:08 PM To: Tomcat Users List Subject: Tomcat and