Re: Rotating tables?

2004-08-05 Thread Stefan Frank
| Green Data | Purple Data. Any suggestions? Please help by pointing me elsewhere if you can - Nic - To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PROTECTED] -- Stefan Frank iBioS - Intelligent

Re: Rotating tables?

2004-08-04 Thread Stefan Frank
- Nic - To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PROTECTED] -- Stefan Frank iBioS - Intelligent BioInformatics Systems http://www.dkfz-heidelberg.de/ibios DKFZ - German Cancer Research

Re: Adding attributes to an XML element in JSTL

2004-05-07 Thread Stefan Frank
] - To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PROTECTED] - To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PROTECTED] -- Stefan Frank iBioS

EL not evaluated

2004-04-19 Thread Stefan Frank
not change the output. Is there something else I have to do for evaluating EL-Expressions?! Cheers stf -- Stefan Frank iBioS - Intelligent BioInformatics Systems http://www.dkfz-heidelberg.de/ibios DKFZ - German Cancer Research Center Im Neuenheimer Feld 580 69120 Heidelberg Tel.: +49 (0) 6221 42

Re: EL not evaluated

2004-04-19 Thread Stefan Frank
.xsd version=2.4 solved this issue. sorry for bothering you, folks stf Stefan Frank wrote: Hi, I suspect this has been asked numerous times before, but I could not find a FAQ for JSTL: I set up jstl for my web-app(on tomcat 5) by: - copying the tld's to web-inf - adding the taglibs to web.xml

Re: formating date

2003-11-12 Thread Stefan Trcko
to lowercase this output like wednesday, 12.11.2003? Thanks, Stefan - Original Message - From: Kris Schneider [EMAIL PROTECTED] To: Tag Libraries Users List [EMAIL PROTECTED] Sent: Tuesday, November 11, 2003 10:08 PM Subject: Re: formating date Or this: x:forEach select=$xml//dan

Re: formating date

2003-11-12 Thread Stefan Trcko
://jakarta.apache.org/taglibs/string-1.0.1; % ... string:lowerCase fmt:formatDate value=${datumDate} pattern=, dd.MM./ /string:lowerCase Quoting Stefan Trcko [EMAIL PROTECTED]: Thanks Kris, it's working. One more question: If I write: c:set var=datumx:out select=@datum

formating date

2003-11-11 Thread Stefan Trcko
got an error: javax.servlet.jsp.JspException: An error occurred while evaluating custom action attribute value with value ${d1}: Attempt to coerce a value of type java.util.ArrayList to type java.util.Date (null) Any suggestion? Regards, Stefan

xsl:when

2003-11-07 Thread Stefan Trcko
tl:when test=@datum=$today, the test doesn't work. Any suggestions? Thanks, Stefan

XSL, XML and JSP

2003-11-06 Thread Stefan Trcko
/). Is it possilble to pass parameter to the XSL to get entries only for the specific date for example 2003-11-06 (in the XML file there are entries for one week)? Thanks, Stefan

Re: XSL: formating date

2003-10-14 Thread Stefan Trcko
Thanks for your solution. I'll try it. Stefan - Original Message - From: [EMAIL PROTECTED] To: Tag Libraries Users List [EMAIL PROTECTED] Sent: Tuesday, October 14, 2003 2:55 AM Subject: Re: XSL: formating date I think your question will be resolved by a simple XPath. If you

XSL: formating date

2003-10-10 Thread Stefan Trcko
is in MMddHHmmss format to dd.MM. HH:mm:ss format. Best regard, Stefan

redirect

2002-11-21 Thread Stefan
Hi, Is the c:redirect url=/ equivalent in scriptlets response.sendRedirect() ? Thanks, Stef

Question for Bergsten

2002-11-21 Thread Stefan
Hi, IN your book 'JavaServerPages' on page 580 where you are listing response objects methods, you list 3 deprecated methods: public string encodeRedirectURL(String url) , You go on to say in Servlet 2.1 use 'encodeRedirectURL(String url)' How is that different? Stef

Taglibs to provide an abstraction for mobile device guis

2002-11-21 Thread Stefan
Hi, Are there any taglibs out there that provide an abstraction layer for PDA device displays? An example of such would be the Microsoft ASP.NET mobile controls. The controls will properly render the gui widgets on about 200 devices ... Thanks, Stef

Re: Jakarta Mailer

2002-11-15 Thread Stefan
changes to the taglib. Second, you can either hardcode attributes such as to, from, etc. in the mail tag itself. Or you can set them dynamically by nesting the mt:setrecipient tag inside the mt:mail tag. The mailer taglib example and docs show how to do this. Regards, Glenn Stefan wrote

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 Stefan
- Original Message - From: Mark Goking [EMAIL PROTECTED] To: Tag Libraries Users List [EMAIL PROTECTED] Sent: Thursday, November 14, 2002 10:10 PM Subject: RE: Jakarta Mailer stefan, that works. maybe you have other code problems that resulted in that not working. you can use %= % inside

Re: Jakarta Mailer

2002-11-14 Thread Stefan
Message- From: Stefan [mailto:nickm;studioweb.com] Sent: Friday, November 15, 2002 11:16 AM To: Tag Libraries Users List Subject: Re: Jakarta Mailer Hi, This works: %@ taglib uri=http://jakarta.apache.org/taglibs/mailer-1.0; prefix=mt % mt:mail server=mail.lonewolfe.com to=[EMAIL PROTECTED

Re: Whitespace generated by JSTL tags

2002-11-13 Thread Stefan
Hi, I too noticed the white space issue. Though it is not in the scale that you described, it is a problem. It has to be addressed as this will certainly be the source of page bloat for unsuspecting people. As a temp fix try using Gzip compression on the pages. This is the sort of thing that I

Beans and JSTL

2002-11-11 Thread Stefan
...); Sloppy but you get what I mean. :) Stefan

Re: Tag for uploading

2002-11-07 Thread Stefan
Well I know one thing for sure, uploading files is standard 'out of the box' with ASP.net. That is one thing that makes me scratch my head about the Java platform, there are many common things that are used constantly in web programming that are not directly addressed in a reasonable manner:

Re: Tag for uploading

2002-11-07 Thread Stefan
nicely tied up. :) My 2 cents. Please no flames, I'm just a poor little geek! :) Stefan - Original Message - From: Donald Ball [EMAIL PROTECTED] To: [EMAIL PROTECTED]; [EMAIL PROTECTED] Sent: Thursday, November 07, 2002 1:06 PM Subject: Re: Tag for uploading [OT, I realize, my last

Tag for uploading

2002-11-06 Thread Stefan
Hi, Is there a tag for uploading of files in JSTL? Stef

Re: Tag for uploading

2002-11-06 Thread Stefan
Hans, I just got your book on JSP, looks to be the best one on the market BTW. I have just skimmed through it and thought I saw something in there where you talk about file upload? Is that the case or am I missing something. Thanks, Stef - Original Message - From: Hans Bergsten

Re: Tag for uploading

2002-11-06 Thread Stefan
: Wednesday, November 06, 2002 11:41 PM Subject: Re: Tag for uploading Stefan, I just got your book on JSP, looks to be the best one on the market BTW. Ah, you're just saying that to get an answer ;-) Thanks anyway :-) I have just skimmed through it and thought I saw something

Re: JSTL Result Object and caching

2002-11-04 Thread Stefan
Thanks. Stef - Original Message - From: Shawn Bayern [EMAIL PROTECTED] To: Tag Libraries Users List [EMAIL PROTECTED] Sent: Monday, November 04, 2002 11:49 AM Subject: Re: JSTL Result Object and caching On Sun, 3 Nov 2002, Stefan wrote: I am looking for information how the JSTL

JSTL Result Object and caching

2002-11-03 Thread Stefan
Hi, I am looking for information how the JSTL ResultObject deals with caching of resultsets derived from a Javabean method that returned a JDBC's rowset. When is the resultObject removed from memory, and/or how (if it is cached), can it be controlled? In a situation where I have a resultset

JSTL making Dreamweaver unhappy.

2002-10-29 Thread Stefan
Hi, Just started to use JSTL and find that DreamWeaver MX has problem with the tags in the design view. For example this: tr c:out value='${bgColor}'/ align=center Will cause DW to display a broken tr tag: tr And dreamweaver's info panel says it's invalid markup. This is fine for me but I can

Keeping state of select box's.

2002-10-29 Thread Stefan
Hi, Is there a JSTL suggested way of keeping state of a select box that is in a page that is submitted back to itself? Thanks, Stef

Re: JSTL making Dreamweaver unhappy.

2002-10-29 Thread Stefan
of an attribute. -Original Message- From: Stefan [mailto:nickm;studioweb.com] Sent: Tuesday, October 29, 2002 12:55 PM To: Tag Libraries Users List Subject: JSTL making Dreamweaver unhappy. Hi, Just started to use JSTL and find that DreamWeaver MX has problem

Re: JSTL making Dreamweaver unhappy.

2002-10-29 Thread Stefan
Hey! I'm surprised but it worked! CSS is the way to go. Now I wonder how Netscrape will render it? Thanks, Stefan - Original Message - From: Gideon, Thomas [EMAIL PROTECTED] To: 'Tag Libraries Users List' [EMAIL PROTECTED] Sent: Tuesday, October 29, 2002 4:17 PM Subject: RE: JSTL

JSTL and the creation of dynamic data bound HTML form elements.

2002-10-29 Thread Stefan
B: be easily bound to result sets or any sort of collection. As an example: a select box that keeps its own state and can easily be bound to a dataset like a JSTL result set. Or would this type of functionality be something that would be better suited to JSF? Thanks, Stefan

JSTL on JSP 1.1?

2002-10-28 Thread Stefan
Hi, Would Servlet 2.2, JSP 1.1 on Websphere Application Server 4.03 be able to support JSTL? Thanks, Stef -- To unsubscribe, e-mail: mailto:taglibs-user-unsubscribe;jakarta.apache.org For additional commands, e-mail: mailto:taglibs-user-help;jakarta.apache.org

Re: JSTL on JSP 1.1?

2002-10-28 Thread Stefan
Thanks, Stef - Original Message - From: Shawn Bayern [EMAIL PROTECTED] To: Tag Libraries Users List [EMAIL PROTECTED] Sent: Monday, October 28, 2002 5:58 PM Subject: Re: JSTL on JSP 1.1? On Tue, 29 Oct 2002, Stefan wrote: Would Servlet 2.2, JSP 1.1 on Websphere Application Server

Encoding URL

2002-10-25 Thread Stefan
Hi, How can I rewrite the URL (encode) for session tracking within this forEach tag: c:forEach var=boundaryStart begin=0 end=${r.rowCount -1} step=${perPage} a href=?name=%= name %location=%= location %sex=%= sex %isPostBack=yesbegin=c:out value='${boundaryStart}'/ [c:out

Re: Using rtexprvalue.

2002-10-21 Thread Stefan
Ooops! Thanks, Stef - Original Message - From: Ryan Lubke [EMAIL PROTECTED] To: Tag Libraries Users List [EMAIL PROTECTED] Sent: Monday, October 21, 2002 12:07 PM Subject: Re: Using rtexprvalue. Hi Stefan, You close tag (c:if) doesn't match the opening tag of (c_rt:if). Change

JSTL that uses java.net.URLEncoder.encode

2002-10-19 Thread Stefan
Hi, Is there a JSTL tag that reproduces / applies java.net.URLEncoder.encode so as to properly encode query strings? Thanks, Stef

Re: Beefing up JSTL EL in JSP 2

2002-10-15 Thread Stefan
Is it the eventual aim to eliminate the use of the jsp:useBean/ in JSP, replacing them with taglibs? Stef - Original Message - From: Shawn Bayern [EMAIL PROTECTED] To: Tag Libraries Users List [EMAIL PROTECTED] Sent: Tuesday, October 15, 2002 1:10 PM Subject: Re: Beefing up JSTL EL in

Nested tag lib not working.

2002-10-14 Thread Stefan
Hi, I am attempting to use a few tags in a nested pattern and am getting an error for my trouble. The inner tag is derived from a database recordset that I am looping over with a forEach tag: ... pageContext.setAttribute(r, r); ... c:forEach items=${r.rows} var=value varStatus=status

Passing taglibs into bean methods.

2002-10-14 Thread Stefan
Hi, I have a bean that I use to format text in my JSP pages. The bean contains several methods that take strings as arguements and then returns a string. The following is an attempt to use such a bean method, but it seems the tag is not passing the processed result, instead the tag is being

Re: Is there a way to call java.lang.String.substring on a c: ou t ?

2002-10-13 Thread Stefan
- From: Martin Cooper [mailto:[EMAIL PROTECTED]] Sent: Friday, October 11, 2002 2:52 PM To: 'Tag Libraries Users List' Subject: RE: Is there a way to call java.lang.String.substring on a c: ou t ? -Original Message- From: Stefan [mailto:[EMAIL PROTECTED]] Sent: Thursday

Re: Beefing up JSTL EL in JSP 2

2002-10-13 Thread Stefan
When are these changes due out ? S - Original Message - From: Hans Bergsten [EMAIL PROTECTED] To: Tag Libraries Users List [EMAIL PROTECTED] Sent: Friday, October 11, 2002 7:51 PM Subject: Re: Beefing up JSTL EL in JSP 2 Shawn Bayern wrote: On Fri, 11 Oct 2002, James Cook wrote:

Re: Is there a way to call java.lang.String.substring on a c: ou t ?

2002-10-13 Thread Stefan
: Henri Yandell [EMAIL PROTECTED] To: Tag Libraries Users List [EMAIL PROTECTED] Sent: Saturday, October 12, 2002 1:23 PM Subject: Re: Is there a way to call java.lang.String.substring on a c: ou t ? Ack. Sorry Stefan. Hadn't noticd this thread becoming a String taglib one. The only problem you

Re: JSTL in Java Was: Is there a way to call java.lang.String.substring on a c: ou t ?

2002-10-13 Thread Stefan
: Sunday, October 13, 2002 8:22 PM Subject: JSTL in Java Was: Is there a way to call java.lang.String.substring on a c: ou t ? On Sat, 12 Oct 2002, Stefan wrote: I just decided recently to finally look at using taglibs. For the last couple of years I have been fine with using %= % that processed

Re: Is there a way to call java.lang.String.substring on a c: ou t ?

2002-10-13 Thread Stefan
Oct 2002, Stefan wrote: Henri, Thanks for looking into it, I would like to use the string taglib in loops. I've commited the commented out line to StirngTagSupport. Running the following code snippet: %@ taglib prefix=c uri=http://java.sun.com/jstl/core; % %@ taglib uri=http

Re: JSTL in Java Was: Is there a way to call java.lang.String.substring on a c: ou t ?

2002-10-13 Thread Stefan
Libraries Users List [EMAIL PROTECTED] Sent: Sunday, October 13, 2002 8:22 PM Subject: JSTL in Java Was: Is there a way to call java.lang.String.substring on a c: ou t ? On Sat, 12 Oct 2002, Stefan wrote: I just decided recently to finally look at using taglibs. For the last couple of years I

Re: Is there a way to call java.lang.String.substring on a c: ou t ?

2002-10-12 Thread Stefan
: Is there a way to call java.lang.String.substring on a c: ou t ? -Original Message- From: Stefan [mailto:[EMAIL PROTECTED]] Sent: Thursday, October 10, 2002 10:52 PM To: Tag Libraries Users List Subject: Re: Is there a way to call java.lang.String.substring

Re: DBtags ( accessing the Result Set returned from the DAO )

2002-10-10 Thread Stefan
So you got it to work? Stef - Original Message - From: Poornima Shrihari [EMAIL PROTECTED] To: Tag Libraries Users List [EMAIL PROTECTED] Sent: Thursday, October 10, 2002 1:59 AM Subject: Re: DBtags ( accessing the Result Set returned from the DAO ) Stefan, dont bother, i found

Re: Is there a way to call java.lang.String.substring on a c: out ?

2002-10-10 Thread Stefan
to call java.lang.String.substring on a c: out ? On Thu, 10 Oct 2002, Stefan wrote: Hi, I would like to use substring on a c: out like so: No, this can't be done in JSTL 1.0. You'll be able to define functions in the EL in JSP 2.0, but for now, any attempt to do so should yield

Re: Is there a way to call java.lang.String.substring on a c: out ?

2002-10-10 Thread Stefan
PROTECTED] Sent: Thursday, October 10, 2002 11:36 PM Subject: Re: Is there a way to call java.lang.String.substring on a c: out ? On Thu, 10 Oct 2002, Stefan wrote: So is there a way to extract a sub string from the result of a c:out value=${}}/ tag? No, not alone; you'd need to use

Re: Is there a way to call java.lang.String.substring on a c:out ?

2002-10-10 Thread Stefan
? On Thu, 10 Oct 2002, Stefan wrote: So is there a way to extract a sub string from the result of a c:out value=${}}/ tag? No, not alone; you'd need to use the String Taglib or handle it with a servlet or other custom Java logic (e.g., a bean or servlet). -- Shawn Bayern JSTL

Re: Is there a way to call java.lang.String.substring on a c:out ?

2002-10-10 Thread Stefan
Forget it - I needid to add the commons jar. Thanks. - Original Message - From: Stefan [EMAIL PROTECTED] To: Tag Libraries Users List [EMAIL PROTECTED] Sent: Friday, October 11, 2002 12:45 AM Subject: Re: Is there a way to call java.lang.String.substring on a c:out ? Hi, I just

Re: Is there a way to call java.lang.String.substring on a c: ou t ?

2002-10-10 Thread Stefan
. -- Martin Cooper -Original Message- From: Stefan [mailto:[EMAIL PROTECTED]] Sent: Thursday, October 10, 2002 9:46 PM To: Tag Libraries Users List Subject: Re: Is there a way to call java.lang.String.substring on a c: out ? Hi, I just installed the string taglib and tried

JSTL sql

2002-10-09 Thread Stefan
Hi, Is there a way to set an 'order by' in JSTL much like you would with SQL: ORDER BY birthdate DESC Thanks, Stef -- To unsubscribe, e-mail: mailto:[EMAIL PROTECTED] For additional commands, e-mail: mailto:[EMAIL PROTECTED]

JSTL and sort ordering of the item in the Result object.

2002-10-09 Thread Stefan
My previous email was a little too vague so I will try again. I am populating a JSTL Result object with a cached Rowset derived from a bean method like so: Result r = ResultSupport.toResult(dataBase.getAllUsers()); pageContext.setAttribute(r, r); I then loop though the records with a forEach

Re: [xtags] Examples throw exception on Tomcat 4.0.2

2002-02-12 Thread Stefan Kost
Hi, tomcat 4.0.X classloader is buggy . I had opened a bugreport in bugzilla and got it confirmed. A fix is probably available with tomcat 4.1.X (it already existst in the HEAD-branch of CVS). Stefan I just installed the latest Tomcat (4.0.2), (on W2K Pro) deployed the latest xtags

DBTags in a production enviroment??! ConnectionPool running out

2001-11-21 Thread Stefan Frank
VERY APPRECIATED Greetings Stefan --- vierundsechzig.de friedensallee 7-9 22765 hamburg telefon +49 (040) 306033 -43 telefax +49 (040) 306033 -64 http://www.vierundsechzig.de mailto:[EMAIL PROTECTED] -- To unsubscribe, e-mail: mailto:[EMAIL PROTECTED] For additional commands, e-mail

connectionPool running out when using DBTAGs

2001-11-14 Thread Stefan Frank
, the connections in the connection pool run out: It appears, that there are some cases, when the jsp's do not return the connnection. Anybody any experiences with this?! Greetings Stefan --- vierundsechzig.de friedensallee 7-9 22765 hamburg telefon +49 (040) 306033 -43 telefax +49 (040) 306033 -64

xsl taglibray set current working dir to centext path beforecalling process

2001-10-22 Thread Stefan Kost
, but this is the only tag I am using at the moment. Ciao Stefan -- W E B M A C H E R EDV+INTERNETSERVICE GMBH POST: August Bebel Str. 69 04275 Leipzig FON: +49 341 30 34 832 FAX: +49 341 30 34 840 WEB: www.webmacher.de 271a272 System.setProperty(user.dir

RE: use JSP Tags and jsp variable

2001-07-05 Thread Stefan Håkans
Since you are fetching the String by using pageContext.getAttribute, you must have set it on the jsp-page with pageContext.setAttribute. Note that if no scope is specified it implies page scope. /Steff -Original Message- From: Andrea Gianni [mailto:[EMAIL PROTECTED]] Sent: den 5 juli

include in bodytag

2001-06-28 Thread Stefan Håkans
page. Has anyone noticed this before? any clues? my custom tag outputs the body by using: bodyContent.writeOut(bodyContent.getEnclosingWriter()); Thanks in advance /Stefan Stefan Håkans I n t e r b i z z S c a n d i n a v i a a b mailto:[EMAIL PROTECTED] http://www.interbizz.com

Re: How to assign contents of a tag to a Java-variable?

2001-05-22 Thread Stefan Seidel
Hi Brett, could You tell us the the publisher and the ISBN# of Your book recomendation? Thank You Stefan -- Stefan Seidel - Original Message - From: Procek, Brett [EMAIL PROTECTED] To: [EMAIL PROTECTED] Sent: Monday, May 21, 2001 4:35 PM Subject: RE: How to assign contents of a tag

Tags nested in Attribute Values

2001-04-26 Thread Stefan Riegel
it? - How can I avoid Java and scripting in the JSP Pages? Thanks and regards Stefan Riegel

AW: Newbie Question

2001-04-13 Thread Stefan Riegel
their isn't the TLD, the container produces the error. I think it is less complicated, if one uses the default location like %@ taglib uri="/WEB-INF/jdbc.tld" prefix="sql" % for learning or testing purpose. I use some Jakarta Taglibs without any taglib-Entry

AW: How to use Connection Tag in JDBC

2001-04-11 Thread Stefan Riegel
Hi Jean, I wondered too about DataSources and JNDI. I found a tutorial about JNDI on the java.sun.com Site. I looked briefly through the Tutorial. It looks fine for me. When I find time, I will try to learn the stuff. Perhaps an idea for You too? Good luck Stefan -Ursprngliche Nachricht