RE: JSTL and EL question - SOLVED

2003-06-09 Thread Schwartz, David (CHR)
Hi David. This method works great. Thanks Is there any downside to using it? Is it still considered standard? -Original Message- From: Karr, David [mailto:[EMAIL PROTECTED] Sent: Thursday, June 05, 2003 11:21 AM To: Tomcat Users List Subject: RE: JSTL and EL question - SOLVED The setup

RE: JSTL and EL question - SOLVED

2003-06-09 Thread Karr, David
This behavior is described in the JSP 1.2 specification, in section JSP.7.3 (not in one single place in the section). -Original Message- From: Schwartz, David (CHR) [mailto:[EMAIL PROTECTED] Hi David. This method works great. Thanks Is there any downside to using it? Is it still

RE: JSTL and EL question - SOLVED

2003-06-06 Thread Karr, David
skip steps 2 and 3 of this process. -Original Message- From: Nikola Milutinovic [mailto:[EMAIL PROTECTED] Sent: Wednesday, June 04, 2003 10:21 PM To: Tomcat Users List Subject: Re: JSTL and EL question - SOLVED I thought I liked the idea of having the taglib in the web.xml file

RE: JSTL and EL question - SOLVED

2003-06-06 Thread Schwartz, David (CHR)
Users List Subject: RE: JSTL and EL question - SOLVED The setup can be a little simpler than this. The taglib jar can contain the TLD for the taglib in the META-INF directory of the jar. If it is present there, you do not have to deploy the TLD separately. In addition, if the TLD is present

Re: JSTL and EL question - SOLVED

2003-06-06 Thread Jeff Knox
Ah, my bad. I thought you were declaring the tab library in the WEB.INF file kind of like you can declare your database connection: context-param param-name javax.servlet.jsp.jstl.sql.dataSource /param-name

RE: JSTL and EL question - SOLVED

2003-06-06 Thread Karr, David
PROTECTED] Sent: Thursday, June 05, 2003 8:37 AM To: 'Tomcat Users List' Subject: RE: JSTL and EL question - SOLVED Thats a great idea much easier to implement. How can I determine if the jar file has the tld? More specifically, I'm using the jakarta dbtags. do they package it that way

Re: JSTL and EL question - SOLVED

2003-06-05 Thread Nikola Milutinovic
- Original Message - From: Schwartz, David (CHR) [EMAIL PROTECTED] To: 'Tomcat Users List' [EMAIL PROTECTED] Sent: Wednesday, June 04, 2003 1:55 PM Subject: RE: JSTL and EL question - SOLVED I'm still having problems. Can you please post a complete sample along with web.xml sample

RE: JSTL and EL question - SOLVED

2003-06-05 Thread Schwartz, David (CHR)
can you also send the taglib line from the top of jsp? -Original Message- From: Nikola Milutinovic [mailto:[EMAIL PROTECTED] Sent: Wednesday, June 04, 2003 9:32 AM To: Tomcat Users List Subject: Re: JSTL and EL question - SOLVED - Original Message - From: Schwartz, David (CHR

Re: JSTL and EL question - SOLVED

2003-06-05 Thread Jeff Knox
and EL question - SOLVED - Original Message - From: Schwartz, David (CHR) [EMAIL PROTECTED] To: 'Tomcat Users List' [EMAIL PROTECTED] Sent: Wednesday, June 04, 2003 1:55 PM Subject: RE: JSTL and EL question - SOLVED I'm still having problems. Can you please post a complete sample along

Re: JSTL and EL question - SOLVED

2003-06-05 Thread Jeff Knox
:[EMAIL PROTECTED] Sent: Wednesday, June 04, 2003 9:32 AM To: Tomcat Users List Subject: Re: JSTL and EL question - SOLVED - Original Message - From: Schwartz, David (CHR) [EMAIL PROTECTED] To: 'Tomcat Users List' [EMAIL PROTECTED] Sent: Wednesday, June 04, 2003 1:55 PM Subject: RE: JSTL and EL

RE: JSTL and EL question - SOLVED

2003-06-05 Thread Schwartz, David (CHR)
I get the same error! -Original Message- From: Jeff Knox [mailto:[EMAIL PROTECTED] Sent: Wednesday, June 04, 2003 11:35 AM To: Tomcat Users List Subject: Re: JSTL and EL question - SOLVED I thought I liked the idea of having the taglib in the web.xml file. When I try it I'm getting

Re: JSTL and EL question - SOLVED

2003-06-05 Thread Nikola Milutinovic
- Original Message - From: Schwartz, David (CHR) [EMAIL PROTECTED] To: 'Tomcat Users List' [EMAIL PROTECTED] Sent: Wednesday, June 04, 2003 3:35 PM Subject: RE: JSTL and EL question - SOLVED can you also send the taglib line from the top of jsp? Sure, look below. In web.xml you

Re: JSTL and EL question - SOLVED

2003-06-05 Thread Nikola Milutinovic
I thought I liked the idea of having the taglib in the web.xml file. When I try it I'm getting This absolute uri (http://java.sun.com/jstl/core) cannot be resolved in either web.xml or the jar files deployed with this application. Do I have to download it somewhere in order to use it in

Re: JSTL and EL question - SOLVED

2003-06-04 Thread Nikola Milutinovic
Oh boy, I get to contribute after asking a lot of questions! ; ) Here's a query I am using in a current project: sql:query var='picks' maxRows='1' select * from contestant_picks where contestant='q' and week = ? order by entered desc sql:param value='${thisWeek}'/ /sql:query

RE: JSTL and EL question - SOLVED

2003-06-04 Thread Schwartz, David (CHR)
I'm still having problems. Can you please post a complete sample along with web.xml sample? -Original Message- From: Nikola Milutinovic [mailto:[EMAIL PROTECTED] Sent: Wednesday, June 04, 2003 1:26 AM To: Tomcat Users List Subject: Re: JSTL and EL question - SOLVED Oh boy, I get