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