Grtting an Error while using forEach tag

2003-07-05 Thread shanmugampl
Dear All, I am using forEach tag for iterating over an ArrayList present in the session scope. The code I have used is core:forEach var=image items=${TREE-IMAGES} -- -- /core:forEach When i execute this page I get the following error An error occurred while evaluating

[Fwd: Having an expression in an set tag]

2003-07-05 Thread shanmugampl
---BeginMessage--- Hi All, I used to construct a link as follows % String link = request.getRequestURL() + "?nodeclicked=" + NODEID + "firstChild=true"; % I want to replace this with the set tag. I tried it as follows c:set var="link" value="${request.requestURL + '?nodeClicked=' +

Re: Whitespace Galore!

2003-07-05 Thread Neil Zanella
-- Forwarded message -- Date: Fri, 4 Jul 2003 19:15:06 -0230 (NDT) From: Neil Zanella [EMAIL PROTECTED] To: Tag Libraries Users List [EMAIL PROTECTED] Subject: Re: Whitespace Galore! On Mon, 30 Jun 2003, Rick Ross wrote: 2. There is a ton of whitespace all over my output.

SQL tag library installation question

2003-07-05 Thread Neil Zanella
Hello, I wonder whether anyone has been using the SQL tag library. I am wondering about the following: As it seems to me that Tomcat does not make use of the CLASSPATH variable at all (i.e. it does not read it when it is started) (is this correct?), then how can Tomcat possibly find on the

Re: SQL tag library installation question

2003-07-05 Thread Peter Smith
Hi Neil, We put the JDBC jar file in $CATALINA_HOME/shared/lib. There our webapps can share it. Peter -- Peter Smith Software Engineer InfoNow Corporation From: Neil Zanella [EMAIL PROTECTED] Reply-To: Tag Libraries Users List [EMAIL PROTECTED] Date: Sat, 5 Jul 2003 18:15:07 -0230 (NDT)

Re: Problems with c:out tag

2003-07-05 Thread Billy Bacon
I've run into the same issue but with a different tag other than c:out. I'm assuming they are related but I'm really looking for some advice here... I'm in the process of converting my application to JSTL from Struts tags. Once Struts 1.1 Release Candidate 2 came out supporting EL I decided to

Re: Jakarta Taglibs Installation

2003-07-05 Thread N. Chen
do you have taglib define in the web.xml file? might be the ordering of your other directives, try looking at the DTD. nick On Fri, 4 Jul 2003, Neil Zanella wrote: Well, now I am not entirely sure that it is mandatory, because I have a JSP page such that when I change the WEB-INF/web.xml

JSTL Tag in a directive.

2003-07-05 Thread Rick Ross
I can't seem to get this to work: %@ includes file=c:out value='${includePage}' / % I didn't see anything in the Spec that suggests that it would violate spec, but it wasn't mentioned either (as far as I saw.) Since I need the contents of includePage to be processed as JSP, I think I am SOL

Re: Problems with c:out tag

2003-07-05 Thread Billy Bacon
Thanks for your response Hans, that was very helpful. This might be more of a Struts issue then because I don't have a JavaBean for my 'Form' object. I use the Struts DynaActionForm object which does all the 'getting' and 'setting' for you. I have this element defined in my struts-config.xml

Re: JSTL Tag in a directive.

2003-07-05 Thread N. Chen
you can use c:import instead of %@ include, i think that would solve your problem. nick On Sat, 5 Jul 2003, Rick Ross wrote: I can't seem to get this to work: %@ includes file=c:out value='${includePage}' / % I didn't see anything in the Spec that suggests that it would violate spec, but

Re: JSTL Tag in a directive.

2003-07-05 Thread Hans Bergsten
Rick Ross wrote: I can't seem to get this to work: %@ includes file=c:out value='${includePage}' / % I didn't see anything in the Spec that suggests that it would violate spec, but it wasn't mentioned either (as far as I saw.) Rick, time to read a good book about JSP ;-) There are two ways to

Re: JSTL Tag in a directive.

2003-07-05 Thread Hans Bergsten
I think I missed an important point, see intermixed below. Hans Bergsten wrote: Rick Ross wrote: I can't seem to get this to work: %@ includes file=c:out value='${includePage}' / % I didn't see anything in the Spec that suggests that it would violate spec, but it wasn't mentioned either (as