JSTL, core library - url for mail

2002-11-15 Thread Gisella Saavedra
I have the following piece of code in a .jsp file for having a link to send e-mail. The code rendered as .html has "+" as blank spaces for the mail Subject (TBS+-+An+unexpected+error+has+occurred). Any idea how I can get regular spaces? [I have tried   \u20 an I get the value as typed.]

RE: namespaces in x:parse

2002-11-14 Thread Gisella Saavedra
In case somebody is interested in the resolution for parsing xml obviating the namespace, I got the value of the "select" attributes by the following piece of code: -Original Message----- From: Gisella Saavedra Sent: Wednesday, November 13, 2002 3:36 PM To: 'Tag Libra

RE: namespaces in x:parse

2002-11-13 Thread Gisella Saavedra
thanks a lot Pierre and arigato, Matsuhashi-san for the answers!! It's been very helpful. Yes, I also wish, like many of us, that these needed changes in XPath and JSTL will be available soon, Gisella -Original Message- From: [EMAIL PROTECTED] [mailto:matsuhashi@;quick.co.jp] Sent: Wedn

namespaces in x:parse

2002-11-13 Thread Gisella Saavedra
Hello, can anyone offer any help on what follows: I have the following file, colors.xsl, which I read as xml input although it is a stylesheet: http://www.w3.org/1999/XSL/Transform";> ciao hola I basically need to set background colors for a JSP-based application. What I do is to set appl

JSTL Resource Bundles

2002-10-29 Thread Gisella Saavedra
Can somebody help? I am using the latest JSTL library package from this month, October. I have the following piece of .JSP code: I'm using a .properties file, which is under my WEB-INF/class directory The problem I have is: The first set prints the value o

FW: JSTL Resource Bundles

2002-10-28 Thread Gisella Saavedra
> Hello, > > I need some help here! > > I am using the latest JSTL library package from this month, October. > > > I have the following piece of .JSP code: > > > bundle="${applicationScope.rptHeadings}" /> > > > >bundle="${applicationScope.rptHeadings}" /> > > > I'm using a .prope

RE: JSTL SQL library

2002-09-08 Thread Gisella Saavedra
Thank you Shawn! It worked! -Original Message- From: Shawn Bayern [mailto:[EMAIL PROTECTED]] Sent: Sunday, September 08, 2002 7:43 PM To: Tag Libraries Users List; [EMAIL PROTECTED] Subject: RE: JSTL SQL library On Sun, 8 Sep 2002, Gisella Saavedra wrote

RE: JSTL SQL library

2002-09-08 Thread Gisella Saavedra
I need some help here! sessionScope.hdf is the Result variable from a query. I'm having a problem with displaying the results of a query in the order of the column names, without knowing the column names: The inner look picks

JSTL SQL library

2002-09-08 Thread Gisella Saavedra
is there a way to find out the data type (metadata) of the columns retrieved thru a query? I am transferring the "var" that comes back filled from a to another JSP page. I want to format the data depending on whether they are date columns, or text, or numbers?? Gis -- To unsubscribe, e-mail

RE: extending JSTL

2002-09-02 Thread Gisella Saavedra
Shawn, thank you for the information. I've got your book in e-format. It has been very useful. - The query should return 0 rows. But: I get NO errors for the query. I get the rendered text "Some rows." and no value for "Rows retrieved=". This is my code (there is redunda

extending JSTL

2002-09-02 Thread Gisella Saavedra
I would like to extend the SQL tags by adding a tag for stored procedures. Which is the recommended way about extending this tag library? Should I just put my new tags in the same directory tree and rebuild the tag library with my additions? or is it recommended to put the new tags in a separat