Taglib on tomcat 4.1.24

2003-04-03 Thread [EMAIL PROTECTED]
Thanks for the help, my tag works now but I have another problem (probably dues to the same bug). I use a tag for printing table, so one for the table declaration called table some nested ones for the columns properties called column. When a column one is running, it is added to a list of

Taglib on tomcat 4.1.24

2003-04-01 Thread [EMAIL PROTECTED]
Hi everyone, I wrote some taglibs which are running on tomcat 3.3, and use a body content. For example, there is one for formatting buttons position on the page in functions of their type (action on the form or link). The idea of it is to create a dynamic spearation between the two types of

RE: Taglib on tomcat 4.1.24

2003-04-01 Thread Simon MacMullen
perhaps the new tomcat manager keep to much things in cache... Absolutely. Tag instances may be re-used. This means you can only do setup for your tag at the last minute in doStartTag(). See http://www.mail-archive.com/[EMAIL PROTECTED]/msg00846.html for more info, explained more

RE: Taglib on tomcat 4.1.24

2003-04-01 Thread Arnaud HERITIER
d'origine- De : Simon MacMullen [mailto:[EMAIL PROTECTED] Envoyé : mardi 1 avril 2003 12:00 À : Tomcat Users List Objet : RE: Taglib on tomcat 4.1.24 perhaps the new tomcat manager keep to much things in cache... Absolutely. Tag instances may be re-used. This means you can only do

RE: Taglib on tomcat 4.1.24

2003-04-01 Thread Simon MacMullen
perhaps the new tomcat manager keep to much things in cache... Absolutely. Tag instances may be re-used. This means you can only do setup for your tag at the last minute in doStartTag(). doStartTag ??? isn't it doEndTag ?? Well, I meant get things ready for your tag, not clean up

RE: Taglib on tomcat 4.1.24

2003-04-01 Thread Arnaud HERITIER
-Message d'origine- De : Simon MacMullen [mailto:[EMAIL PROTECTED] Envoyé : mardi 1 avril 2003 15:05 À : Tomcat Users List Objet : RE: Taglib on tomcat 4.1.24 perhaps the new tomcat manager keep to much things in cache... Absolutely. Tag instances may be re-used

RE: Taglib on tomcat 4.1.24

2003-04-01 Thread Arnaud HERITIER
] Objet : Re: Taglib on tomcat 4.1.24 I'm agree with you but what about properties used by the tag ?? For instances variables I can reset them in the begin of doStartTag. But for an optional attribute of a tag I can't. If for example I have a property foo : String foo = ; If I use