Re: jrun4 and jstl 1.1 problem

2004-02-23 Thread Ryan Lubke
Actually JRun 4.0 is J2EE 1.3 certified which implies JSP 1.2, not 2.0. You'll want to use JSTL 1.0 instead of 1.1. On Mon, 2004-02-23 at 14:59, Lorenzo Sicilia wrote: I have jrun 4.0 (61650). I have download jakarta-taglibs-standard-20040223.zip. When the server start I get this error:

Re: JSTL and Tomcat 5.0 alpha

2003-01-02 Thread Ryan Lubke
] For additional commands, e-mail: mailto:[EMAIL PROTECTED] -- Ryan Lubke [EMAIL PROTECTED] Sun Microsystems, Inc. -- To unsubscribe, e-mail: mailto:[EMAIL PROTECTED] For additional commands, e-mail: mailto:[EMAIL PROTECTED]

Re: help with fmt:message storing message in variable

2002-12-12 Thread Ryan Lubke
-Packard Company 6000 Irwin Road Mount Laurel, NJ 08054 (856) 638-6096 -- To unsubscribe, e-mail: mailto:[EMAIL PROTECTED] For additional commands, e-mail: mailto:[EMAIL PROTECTED] -- Ryan Lubke [EMAIL PROTECTED] Sun Microsystems, Inc. -- To unsubscribe, e-mail: mailto:[EMAIL PROTECTED

Re: String Taglib : third time's a charm?

2002-08-26 Thread Ryan Lubke
I hate mondays. now == know On Mon, 2002-08-26 at 10:26, Ryan Lubke wrote: Someone might now what the problem is off the top of their head, but I'm curious about the NoSuchMethodError. Can you provide the top 5 lines of the stacktrace (if one is generated)? -rl On Mon, 2002-08-26

RE: String Taglib : third time's a charm?

2002-08-26 Thread Ryan Lubke
Message- From: Ryan Lubke [mailto:[EMAIL PROTECTED]] Sent: August 26, 2002 10:26 AM To: Tag Libraries Users List Subject: Re: String Taglib : third time's a charm? Someone might now what the problem is off the top of their head, but I'm curious about the NoSuchMethodError. Can you

RE: String Taglib : third time's a charm?

2002-08-26 Thread Ryan Lubke
- From: Ryan Lubke [mailto:[EMAIL PROTECTED]] Sent: August 26, 2002 11:33 AM To: Tag Libraries Users List Subject: RE: String Taglib : third time's a charm? Hi Jason, Well, that didn't help much so I've installed Tomcat 3.2.4 from the binary bundle available and the most recent

RE: String Taglib : third time's a charm?

2002-08-26 Thread Ryan Lubke
. -Original Message- From: Ryan Lubke [mailto:[EMAIL PROTECTED]] Sent: August 26, 2002 11:57 AM To: Tag Libraries Users List Subject: RE: String Taglib : third time's a charm? So I'm assuming that the string-examples web application runs fine on your TC 3.2 server? On Mon, 2002

RE: String Taglib : third time's a charm?

2002-08-26 Thread Ryan Lubke
- From: Ryan Lubke [mailto:[EMAIL PROTECTED]] Sent: August 26, 2002 12:06 PM To: Tag Libraries Users List Subject: RE: String Taglib : third time's a charm? OK, for grins, start removing the JAR files that weren't originally present in the string-examples web application one by one

Re: JSP:INCLUDE problem

2002-08-12 Thread Ryan Lubke
On Mon, 2002-08-12 at 10:02, Ben Ramsey wrote: In addition, I've placed th variable into the page attribute using the scripting tags: %= headlines %, but I get a variable undefined error for headlines. In addition to what Shawn said, if you want to use an RT value with jsp:include, you will

Re: A JSTL problem...

2002-07-10 Thread Ryan Lubke
Hi, JSTL requires a JSP 1.2 compliant container, which as far as I know, Tomcat 3.x is not. Try again with the latest Tomcat 4.x. Additionally, if standard.jar is in /WEB-INF/lib, you will not need to drop x.tld into into /WEB-INF. On Wed, 2002-07-10 at 12:00, Carlos Barroso wrote: Hi

RE: A JSTL problem...

2002-07-10 Thread Ryan Lubke
remove the x.tld and web.xml files it gives me the following error: Unable to open taglibrary http://java.sun.com/jstl/xml : /home/mike/myapp/WEB-INF/web.xml (No such file or directory) -Original Message- From: Ryan Lubke [mailto:[EMAIL PROTECTED]] Sent: quarta-feira, 10 de Julho

Re: Using JSTL with Resin 2.0.5 and Tomcat 4.0.3

2002-04-22 Thread Ryan Lubke
Yes this is a bug in 4.0.3 (6400 I think). The workaround is to create a directory called 'temp' in CATALINA_HOME mkdir $CATALINA_HOME/temp. -rl On Sun, 2002-04-21 at 23:45, Shawn Bayern wrote: Martin, I believe you're hitting two entirely different bugs, one in Resin and one in

Re: c:if

2002-03-18 Thread Ryan Lubke
Hi, I believe the following would be possible: c:if test=${request.moo != null} body content /c:if The EL uses 'implicit' objects to access attributes and parameters from various source objects. pageContext -- access to the PageContext object page-- access to page scoped attributes

Re: multiple conditions for an IF statement

2002-03-09 Thread Ryan Lubke
Hi, I believe the nightly builds of JSTL should be able to support what you're trying to accomplish: c:if test=${b1 and b2} TRUE /c:if Please take note of the syntax change when specifying an EL value for an attribute (${...}). The EL has changed in the recent builds of JSTL. -rl On