Problem using scripting variable from ...

2002-09-05 Thread Carlos Barroso
Hy guys. I'm having a problem trying to use the scripting variable created by the tag. The code below is a simple "if" that tests the parameter "menu" passed to the JSP is "null". If it is, I try to get the first OBJECT element under the APPLICATION element with the attribute value of "managment

Problem using scripting variable from ...

2002-08-26 Thread Carlos Barroso
Hy guys. I'm having a problem trying to use the scripting variable created by the tag. The code below is a simple "if" that tests the parameter "menu" passed to the JSP is "null". If it is, I try to get the first OBJECT element under the APPLICATION element with the attribute value of "managment

Problem using scripting variable from ...

2002-08-26 Thread Carlos Barroso
Hy guys. I'm having a problem trying to use the scripting variable created by the tag. The code below is a simple "if" that tests the parameter "menu" passed to the JSP is "null". If it is, I try to get the first OBJECT element under the APPLICATION element with the attribute value of "managment

RE: How to get a value

2002-08-21 Thread Carlos Barroso
y exposes a scripting variable. (So that's your answer!) -- Shawn Bayern "JSTL in Action" http://www.jstlbook.com On Wed, 21 Aug 2002, Carlos Barroso wrote: > I tried another approach: > > > > > and it didn't work again... > > At the begining

RE: How to get a value

2002-08-21 Thread Carlos Barroso
if really exposes the menu as a scripting variable then why does it give the following error: Undefined variable: menu in the following example: <% System.out.println(menu); %> Can someone help please. This is givig me a headache. :-( -- To unsubscribe, e-mail:

RE: How to get a value

2002-08-21 Thread Carlos Barroso
Bayern "JSTL in Action" http://www.jstlbook.com On Wed, 21 Aug 2002, Carlos Barroso wrote: > I tried another approach: > > > > > and it didn't work again... > > At the begining of the file i have: > > String menu = null; > > and using t

How to get a value

2002-08-21 Thread Carlos Barroso
The variable "menu" will be a sripting variable. Does this mean that I can use it in a scriplet? -- To unsubscribe, e-mail: For additional commands, e-mail:

How to get a value

2002-08-21 Thread Carlos Barroso
Original Message- From: Shawn Bayern [mailto:[EMAIL PROTECTED]] Sent: quarta-feira, 21 de Agosto de 2002 14:06 To: Tag Libraries Users List Subject: RE: How to get a value On Wed, 21 Aug 2002, Carlos Barroso wrote: > Thanks very much for the help. Where can i get JSTL to work with xtags? Yo

RE: How to get a value

2002-08-21 Thread Carlos Barroso
only xtags? -Original Message- From: Shawn Bayern [mailto:[EMAIL PROTECTED]] Sent: quarta-feira, 21 de Agosto de 2002 14:06 To: Tag Libraries Users List Subject: RE: How to get a value On Wed, 21 Aug 2002, Carlos Barroso wrote: > Thanks very much for the help. Where can i get JSTL to wo

RE: How to get a value

2002-08-21 Thread Carlos Barroso
Thanks very much for the help. Where can i get JSTL to work with xtags? -Original Message- From: Shawn Bayern [mailto:[EMAIL PROTECTED]] Sent: quarta-feira, 21 de Agosto de 2002 14:00 To: Tag Libraries Users List Subject: RE: How to get a value On Wed, 21 Aug 2002, Carlos Barroso

RE: How to get a value

2002-08-21 Thread Carlos Barroso
pression. Please help. -Original Message- From: Shawn Bayern [mailto:[EMAIL PROTECTED]] Sent: quarta-feira, 21 de Agosto de 2002 13:08 To: Tag Libraries Users List Subject: Re: How to get a value On Wed, 21 Aug 2002, Carlos Barroso wrote: > Hy guys. I'm trying to do somet

How to get a value

2002-08-21 Thread Carlos Barroso
Hy guys. I'm trying to do something like this in my JSP file: <% String aux = %> But I know this doesn't work. How can I put the result of the xtags expression in a string variable? Can someone help? -- To unsubscribe, e-mail: For additional commands, e-ma

A weird problem with xtags...

2002-07-24 Thread Carlos Barroso
I guys. I'm having a weird problem. Here's my XML file: And here's my JSP file: <%@ page language="java" session="true"%> <%@ taglib uri="http://jakarta.apache.org/taglibs/xtags-1.0"; prefix="xtags" %> <% String menu = null;

RE: A JSTL problem...

2002-07-11 Thread Carlos Barroso
Hi Ben. The XML i want to parse doesn't have a dtd associate with it. It's a simple xml string. thanks anyway. -Original Message- From: Ben Ramsey [mailto:[EMAIL PROTECTED]] Sent: quarta-feira, 10 de Julho de 2002 20:09 To: Tag Libraries Users List Subject: RE: A JSTL problem... Carlo

RE: A JSTL problem...

2002-07-10 Thread Carlos Barroso
Subject: RE: A JSTL problem... That's correct. Just reference it as you normally would in the JSP <%@ taglib uri="http://java.sun.com/jstl/xml"; prefix="x" %> and you should be all set. -rl On Wed, 2002-07-10 at 12:41, Carlos Barroso wrote: > I understood

RE: A JSTL problem...

2002-07-10 Thread Carlos Barroso
Ryan and I have said already, you'll need to use Tomcat 4.x if you want to use JSTL, because JSTL needs JSP 1.2, and Tomcat 3.x doesn't support that. -- Martin Cooper > -----Original Message- > From: Carlos Barroso [mailto:[EMAIL PROTECTED]] > Sent: Wednesday, July 10, 2002 1

RE: A JSTL problem...

2002-07-10 Thread Carlos Barroso
no. i'm using tomcat 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, Carlos Barroso wrote: &g

RE: A JSTL problem...

2002-07-10 Thread Carlos Barroso
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 unsubscribe, e-mail: For additional commands, e-mail:

RE: A JSTL problem...

2002-07-10 Thread Carlos Barroso
ava.sun.com/jstl/xml', etc. If you drop this jar file into /WEB-INF/lib on a JSP 1.2 compliant container, the the values of the element are automatically picked up by the container. This means you don't have to directly reference the tld in the JSP, or in the web.xml. On Wed, 2002-07-1

RE: A JSTL problem...

2002-07-10 Thread Carlos Barroso
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 again. > I've installed the jakarta-taglibs-standard.tar.gz. I've put the c

RE: A JSTL problem...

2002-07-10 Thread Carlos Barroso
you will not need to drop x.tld into into /WEB-INF. On Wed, 2002-07-10 at 12:00, Carlos Barroso wrote: > Hi again. > I've installed the jakarta-taglibs-standard.tar.gz. I've put the contents of > the "lib" directory in my > /WEB-INF/lib, and put the "x.

A JSTL desciptor problem...

2002-07-10 Thread Carlos Barroso
Hi again. I've installed the jakarta-taglibs-standard.tar.gz. I've put the contents of the "lib" directory in my /WEB-INF/lib, and put the "x.tld" in my /WEB-INF. In my JSP I put the following line: <%@ taglib uri="http://java.sun.com/jstl/xml"; prefix="x" %> I've created a "web.xml" with the fo

A JSTL problem...

2002-07-10 Thread Carlos Barroso
Hi again. I've installed the jakarta-taglibs-standard.tar.gz. I've put the contents of the "lib" directory in my /WEB-INF/lib, and put the "x.tld" in my /WEB-INF. In my JSP I put the following line: <%@ taglib uri="http://java.sun.com/jstl/xml"; prefix="x" %> I've created a "web.xml" with the fo

RE: EL and RT...

2002-07-10 Thread Carlos Barroso
ooper > -Original Message- > From: Carlos Barroso [mailto:[EMAIL PROTECTED]] > Sent: Wednesday, July 10, 2002 9:36 AM > To: '[EMAIL PROTECTED]' > Subject: EL and RT... > > > I've seen in some docs of taglib's, references to EL and RT? > What are

EL and RT...

2002-07-10 Thread Carlos Barroso
I've seen in some docs of taglib's, references to EL and RT? What are they and what are the diferences between them? Can someone please help me? -- To unsubscribe, e-mail: For additional commands, e-mail:

RE: Xtags problem...

2002-07-10 Thread Carlos Barroso
Thanks Shawn for the help. It really gave me a start to taglib's. -- To unsubscribe, e-mail: For additional commands, e-mail:

RE: Xtags problem...

2002-07-10 Thread Carlos Barroso
Xtags problem... On Wed, 10 Jul 2002, Carlos Barroso wrote: > thanx. I'm new in taglibs. I'm a little confused with this. The > "Standard Taglib release 1.0" has a tag library for XML processing, > with URI: http://java.sun.com/jstl/xml and with a prefix: "x". T

RE: Xtags problem...

2002-07-10 Thread Carlos Barroso
use XTAGS alone. There is no need to install JSTL since these are two separate tag libraries. Garrett Vlieger Carlos Barroso wrote:Hi there. I want to use xtags in my web application. Do I need to install the "Standard Taglib release 1.0" too? -- To unsubscribe, e-mail: For additional co

Xtags problem...

2002-07-10 Thread Carlos Barroso
Hi there. I want to use xtags in my web application. Do I need to install the "Standard Taglib release 1.0" too? -- To unsubscribe, e-mail: For additional commands, e-mail: