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