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 err

Re: JSTL and Tomcat 5.0 alpha

2003-01-02 Thread Ryan Lubke
gt; > -- > 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]> For additional commands, e-mail: <mailto:[EMAIL PROTECTED]>

Re: help with storing message in variable

2002-12-12 Thread Ryan Lubke
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: Using rtexprvalue.

2002-10-21 Thread Ryan Lubke
gt; > In the above examples the JSTL tags are being used inside a while loop that is >iterating over a rowset provided by a bean method that has made the database query. > > Thanks, > > Stef > > -- Ryan Lubke <[EMAIL PROTECTED]> Sun Microsystems, Inc. -- To unsubscribe, e-mail: <mailto:taglibs-user-unsubscribe@;jakarta.apache.org> For additional commands, e-mail: <mailto:taglibs-user-help@;jakarta.apache.org>

Re: incorporating EL support

2002-09-12 Thread Ryan Lubke
On Thu, 2002-09-12 at 12:45, Craig Longman wrote: > On Thu, 2002-09-12 at 12:14, peter lin wrote: > > > > > > You should know that JSP2.0 includes EL built in. the early access > > implementation of JSP2.0 uses JSTL's el. > > oh, ok. well, that's good news. i guess that splits my question in

Re: Location of JSP page the Taglib is executing in

2002-08-26 Thread Ryan Lubke
Let me try that again I think you could use the requestURI() method of the HttpServletRequest object and pass that to ServletContext.getRealPath(). Example: <% out.println(application.getRealPath(request.getRequestURI())); %> Output for the following request to the above code: Request:

Re: Location of JSP page the Taglib is executing in

2002-08-26 Thread Ryan Lubke
I think you could use the requestURI and pass that to ServletContext.getRealPath(). Example the folowing: <% out.println(application.getRealPath(request.getRequestURI())); %> Yields: /files/projects/jakarta-tomcat-4.0/build/webapps/tomcat-docs/tomcat-docs/test.jsp Have to be careful as if the

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

2002-08-26 Thread Ryan Lubke
thanks for your help, > j > > > > -Original Message- > 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 remo

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

2002-08-26 Thread Ryan Lubke
lank jsp and it will fail. > > > > -----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 t

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

2002-08-26 Thread Ryan Lubke
ning my attention to my jdk directory perhaps? > > > > -Original Message- > 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

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

2002-08-26 Thread Ryan Lubke
processConnection(HttpConnectionHandler.java:214) > at org.apache.tomcat.service.TcpWorkerThread.runIt(PoolTcpEndpoint.java:407) > at org.apache.tomcat.util.ThreadPool$ControlRunnable.run(ThreadPool.java:498) > at java.lang.Thread.run(Thread.java:484) > > > > ---

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)? > > -

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

2002-08-26 Thread Ryan Lubke
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 at 10:26, Stanley, Jason wrote: > hello. > > i've recently set up the string taglib succ

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, yo

RE: A JSTL problem...

2002-07-10 Thread Ryan Lubke
don't need to have an entry "" in my "web.xml" > file for each taglib that i use.... correct? > > > > > > -Original Message- > From: Ryan Lubke [mailto:[EMAIL PROTECTED]] > Sent: quarta-feira, 10 de Julho de 2002 19:32 > To: Tag Li

RE: A JSTL problem...

2002-07-10 Thread Ryan Lubke
omcat 3.2.2 > > > > -Original Message- > From: Ryan Lubke [mailto:[EMAIL PROTECTED]] > Sent: quarta-feira, 10 de Julho de 2002 19:46 > To: Tag Libraries Users List > Subject: RE: A JSTL problem... > > > Are you using Tomcat 4.x? > > On Wed, 2002-07-10 at 12:48

RE: A JSTL problem...

2002-07-10 Thread Ryan Lubke
Are you using Tomcat 4.x? On Wed, 2002-07-10 at 12:48, Carlos Barroso wrote: > Sorry Ryan. > But if i don't put a reference in "web.xml" it keeps giving me: > > Unable to open taglibrary http://java.sun.com/jstl/xml : Could not locate > TLD http://java.sun.com/jstl/xml > > > > > -- > To unsu

RE: A JSTL problem...

2002-07-10 Thread Ryan Lubke
; Ok Ryan, > But if I 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 M

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 ag

Re: DataSource Error...

2002-04-29 Thread Ryan Lubke
Can you provide more details regarding the error? Perhaps a Stacktrace? -rl On Mon, 2002-04-29 at 08:45, Wolfgang Röckelein wrote: > Hi, > > I have the following problem: I put the JNDI Name in a scripting > variable (c:set) and used that variable in the datasource property of a > query as an

Re: JSTL: c:set and scope value

2002-04-26 Thread Ryan Lubke
Actually, the acceptable values for any of the actions that use the scope attribute are 'page', 'request', 'session', and 'application'. pageScope, requestScope, sessionScope, and applicationScope are used with the EL and XPath implicit objects. So:

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 Tom

Re: Getting taglib to work

2002-03-27 Thread Ryan Lubke
Hi, Would it be possible to provide more of the stacktrace? Specifically the root cause which will be further down on the error page returned. On Wed, 2002-03-27 at 05:02, Tom Kochanowicz wrote: > I uncompressed the standard-examples into a webapps directory of my Tomcat 4 > server call jsptl

Re:

2002-03-18 Thread Ryan Lubke
Hi, I believe the following would be possible: body content 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 request --> access to request s

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: TRUE 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 Sat, 2002-03-09 at 13:35, Agraw