RV: Manage Results obtained from ResultSets

2002-11-14 Thread SANZ SANFRUCTUOSO, Manuel
Has anybody used the ResultSupport class? I'd like to call a JavaBean to give me back a JSTL Result objet to be able to process it as if I would have had it from a sql:query action. I don`t know how to get this object in my JSP and manage it. There are some articles that say something about it,

xtags question

2002-11-14 Thread bryan
Hi, I'm a newbie in this area so this will no doubt sound sort of stupid. First I'm somewhat confused as to what is part of what project, i.e is xtags part of the jstl? I'm confused about this because I understand the XSL tag library is superceded by the JSTL and I figured if it was maybe xtags

Re: Whitespace generated by JSTL tags

2002-11-14 Thread Þorgils Völundarson
I use a tag from the coldtags suit called optimize. It can be found here http://coldjava.hypermart.net/servlets/opttags.htm along with info. Hope it helps, Thorgils I am investigating an issue with a JSP page which, under certain circumstances, generates a 22.4 MB file to send back to the

Re: Whitespace generated by JSTL tags

2002-11-14 Thread Wolfgang Röckelein
Hi, Hans Bergsten wrote: Anyway, the best way to handle it is probably to use a filter that compresses the response (most browsers supports compressed responses today) since that would reduce the space needed for both whitespace and repeated tags. See this article for an example of the

Re: Whitespace generated by JSTL tags

2002-11-14 Thread peter lin
there were discussions a while back on this topic. I submitted a suggestion to the expert group for JSP requarding this issue for JSP compile filters. Using compression is one fix, but it doesn't really address the heart of the problem. If you look at the generated source file, you will see tons

skip x:parse, apply x:out straight to a pre-build DOM instance

2002-11-14 Thread matsuhashi
Hello, I am wondering if it is possible in JSTL A usual use of JSLT XML tags goes as (1) by x:parse var=MyDOM ... tag, parse a XML document in String to obtain DOM instance in the scoped attribute specified by attribute var, (2) by x:out select=${MyDOM}///, pull the contents as String

RE: namespaces in x:parse

2002-11-14 Thread Shawn Bayern
On Thu, 14 Nov 2002 [EMAIL PROTECTED] wrote: x:registerNamespace prefix=xsl uri =http://www.w3.org/1999/XSL/Transform; scope=.../ !-- registerNamespace tag is NOT defined in the JSTL1.0 specification !!! -- following name might look more familiar to anybody; no explanation

Re: skip x:parse, apply x:out straight to a pre-build DOM instance

2002-11-14 Thread Shawn Bayern
On Thu, 14 Nov 2002 [EMAIL PROTECTED] wrote: I also tried such coding : c:set var=MyDOM value=${prebuild_DOM}/ x:out select=${MyDOM}//*/ then I was welcomed by a NullPointerException. You can do it, but the syntax you're using is wrong. The JSTL tags don't care whether the DOM

Re: RV: Manage Results obtained from ResultSets

2002-11-14 Thread Shawn Bayern
On Thu, 14 Nov 2002, SANZ SANFRUCTUOSO, Manuel wrote: Has anybody used the ResultSupport class? I'd like to call a JavaBean to give me back a JSTL Result objet to be able to process it as if I would have had it from a sql:query action. I don`t know how to get this object in my JSP and

x:transform which engine?

2002-11-14 Thread Manfred Riem
Hi all, Can anyone tell me which engine the transform tag uses? And if one can set it up to use another transformer? also, if not, how can I access the specific settings for the transformer? Regards, Manfred. - RIACA -

Re: Whitespace generated by JSTL tags

2002-11-14 Thread Dave Newton
Wolfgang Röckelein wrote: I mostly get 0 length files from this filter (Tomcat 4.1.12) ... So... the compression is working really, really well. I suppose you're going to complain about the decompression now? ;) Dave -- To unsubscribe, e-mail:

WARs missing from JSTL 1.0.2?

2002-11-14 Thread Eric . Lewis
Hi Am I just being stupid or are the WAR files missing from the binary distribution of JSTL 1.0.2? Regards, Eric swissinfo/Swiss Radio International Eric Lewis IT Engineering Giacomettistrasse 1 CH-3000 Berne 15 -- To unsubscribe, e-mail: mailto:taglibs-user-unsubscribe;jakarta.apache.org

RE: Whitespace generated by JSTL tags

2002-11-14 Thread Martin Cooper
-Original Message- From: peter lin [mailto:peter.lin;labs.gte.com] Sent: Thursday, November 14, 2002 4:05 AM To: Tag Libraries Users List Subject: Re: Whitespace generated by JSTL tags there were discussions a while back on this topic. I submitted a suggestion to the expert

dbtags Tomcat 4.1.12

2002-11-14 Thread Xose Ramon Sousa Vazquez
We are seeing some strange behavior from dbtags since we switched to Tomcat 4.1.12. I'm pretty sure it's related to the new tag pooling feature of Tomcat. I am wondering if anyone else is having problems. If we have two statements on the same page, where the first one returns rows, but the

Re: WARs missing from JSTL 1.0.2?

2002-11-14 Thread Shawn Bayern
On Thu, 14 Nov 2002 [EMAIL PROTECTED] wrote: Am I just being stupid or are the WAR files missing from the binary distribution of JSTL 1.0.2? Indeed, I think the latest distribution doesn't have the sample and 'doc' WARs. The problem was on my end; I've been meaning to correct it but haven't

RE: namespaces in x:parse

2002-11-14 Thread matsuhashi
Names that begin with xml are reserved by the XML specification. Yes, you are right. I was stupid, sorry... -- To unsubscribe, e-mail: mailto:taglibs-user-unsubscribe;jakarta.apache.org For additional commands, e-mail: mailto:taglibs-user-help;jakarta.apache.org

Re: skip x:parse, apply x:out straight to a pre-build DOM instance

2002-11-14 Thread matsuhashi
(BThank you very much for your reply. It worked! (B (B MATSUHASHI,kazuaki (B QUICK Corp, (B Japan (B (B (B (B (B (B (BShawn Bayern

mailer-taglib in jakarta

2002-11-14 Thread Paul Campbell
On the mailer taglib, I didn't seem to be able to find a syntax that allows me to set a string either using EL or RT notation. Is that correct? or is my understanding faulty? Is there more than one way ? Example: I have some bean called stringBean. How do I get a property such as

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: x:set var=lightColor scope=application select=string($colorsXml//*[name = 'light']/*[local-name() = 'select']) / -Original

Jakarta Mailer

2002-11-14 Thread Stefan
Hi, I want to be able to pass dynamic values for some the the taglibs attributes: mt:mail server=mail.lonewolfe.com to=%= to % from=%= from % subject=Jakarta mail taglib This does not seem to work, is this a context issue? If so would using JSTL ${param.parameterName} work or c:set ? Thanks,

RE: Jakarta Mailer

2002-11-14 Thread Mark Goking
stefan, that works. maybe you have other code problems that resulted in that not working. you can use %= % inside but not inside ${} mark -Original Message- From: Stefan [mailto:nickm;studioweb.com] Sent: Friday, November 15, 2002 11:07 AM To: Tag Libraries Users List Subject: Jakarta

Re: Jakarta Mailer

2002-11-14 Thread Stefan
Hi, This works: %@ taglib uri=http://jakarta.apache.org/taglibs/mailer-1.0; prefix=mt % mt:mail server=mail.lonewolfe.com to=[EMAIL PROTECTED] from=[EMAIL PROTECTED] subject=Jakarta mail taglib mt:message type=html - And this does not work for me, perhaps you can see why: %@ taglib

RE: Jakarta Mailer

2002-11-14 Thread Mark Goking
if you say that it doesnt work then put those variables in a c:set var=from value=%= from_ %/ or c:set varfrom %= from_ % /c:set mark -Original Message- From: Stefan [mailto:nickm;studioweb.com] Sent: Friday, November 15, 2002 11:16 AM To: Tag Libraries Users List Subject:

Re: Jakarta Mailer

2002-11-14 Thread Stefan
Hi, Did the following and it does not work: %@ taglib uri=http://jakarta.apache.org/taglibs/mailer-1.0; prefix=mt % %@ taglib prefix='c_rt' uri='http://java.sun.com/jstl/core_rt' % %@ taglib prefix='c' uri='http://java.sun.com/jstl/core' % % String from_ = [EMAIL PROTECTED]; String to_ = [EMAIL