Re: [5.0] Input optimization

2003-01-06 Thread Ken Horn
chop() / cut() ? Jerome Lacoste

Re: Tomcat 4.1.x: Jasper 2 backwards compat with Jasper 1?

2002-10-30 Thread Ken Horn
I think the answer is no -- you should recompile all JSPs. Would defo be the safest option anyway. Eddie Ruvinsky wrote: Resending this. Does anyone happen to know the answer to this? Is this supported? Thanks in advance, Eddie --- Eddie Ruvinsky [EMAIL PROTECTED] wrote: In Tomcat 4.1.x,

RE: [vote] Possible logos for mod_jk documentation

2002-09-03 Thread Ken . Horn
(non-committer) 5 6 as Bojan suggested. -Original Message- From: Bojan Smojver [mailto:[EMAIL PROTECTED]] Sent: 02 September 2002 21:55 To: Tomcat Dev List Subject: Re: [vote] Possible logos for mod_jk documentation On Mon, 2002-09-02 at 23:35, jean-frederic clere wrote: vote I

RE: Include directive in Tomcat4

2002-07-11 Thread Ken . Horn
This question should really be asked on tomcat-users. You cannot use the context path in an include. If you want to deploy this with the full paths, deploy it as the default webapp, ie with / as the context path (into webapps/ROOT). -Original Message- From: Alfian Hadi [mailto:[EMAIL

RE: Jasper2: serious problem with tag declarations

2002-06-18 Thread Ken . Horn
The scope of scripting variables from tags is specified in the Tag. From the 1.1 spec: The defined values for scope are: · NESTED, if the scripting variable is available between the start tag and the end tag of the action that defines it. · AT_BEGIN, if the scripting variable is available from

RE: MinTC, terrible rudeness, persistence

2002-04-19 Thread Ken . Horn
Another (non-committer) +1 for keeping MinTC on tomcat-dev. Having a (perhaps limited) web/servlet server in a jar is a great idea. If Catalina core, migrates to allow this without a MinTC, other than a special server.xml, then that's OK. MinTC will probably have served it's purpose, and will

RE: MinTC, terrible rudeness, persistence

2002-04-19 Thread Ken . Horn
I have to admit not having read the MinTC source, however, I thought the tomcat community uses/develops multiple implementations of many interfaces. Most of the http/socket/auth?/config (xml file/ajp-webapp/admin) code is effectively multiple implementations of the same interfaces. Isn't the

RE: tag pooling question

2002-03-28 Thread Ken . Horn
As a quick note, I did some Jasper profiling on a previous project (it was Jasper from 3.1, running inside weblogic 5.1). The single biggest runtime cost, was all the calls to Introspector.getBeanInfo(). I created a cache of these using a similar technique to FastHashMap in commons

RE: Mod_jk v/s mod_webapp

2002-03-28 Thread Ken . Horn
Maybe I've not kept up on the docs enough but ... I do think this thread, highlights a general confusion around tomcat. Over the last couple of years, there have been many mod_jk/jk2/webapp/warp/?? implementations, ajp versions etc, and even when the discussions are on the list, it's still

RE: setting up tomcat to accept client certificate

2002-03-15 Thread Ken . Horn
tomcat-user question... but: Can your server reach the CA for the client certificate? AFAICR it must check the cert is valid.. -Original Message- From: patrick.luby Sent: 15 March 2002 17:11 To: tomcat-dev Cc: patrick.luby Subject: Re: setting up tomcat to accept client certificate

RE: Problems building Tomcat 4.0.1

2001-12-21 Thread Ken . Horn
I seem to remember getXMLReader is a SAX2 method. What SAX/XML parser are you linking with in the build? -Original Message- From: JLupo Sent: 20 December 2001 20:39 To: tomcat-dev Cc: JLupo Subject: Problems building Tomcat 4.0.1 When I try to build Tomcat 4.0.1 on my system, I get

Re: Multiple requests get generated for a single request

2001-08-09 Thread ken . horn
Are you using IE ? It sometimes has a tendency to request multiple times, with slightly different headers each time. I've never tracked down exactly what triggers this. You can sometimes also get it if you have multiple submit fields on a form, some with Javascript, and then you hit return ...

Re: Servlet instance variables .. (was Hello!)

2001-07-12 Thread ken . horn
Hi, Two things. 1) Your servlet implements SingleThreadModel -- which means Tomcat *may* create multiple instances of your class -- how do other servlets get hold of the instance? The public method is not static - did you mean it to be? 2) In order to flush the (instance) variables to other

Jasper performance query (circa 3.1 code)

2001-06-19 Thread ken . horn
I'm using Jasper in Weblogic from tomcat 3.1 (ish, we've patched a couple of things too). While profiling some of my JSP's, I see the JspRuntimeLibrary.introspectHelper consuming between 40-70% of the time, and a large %age of the object creation. Drilling down, most of the time is the line

Re: httprequest fired twice

2001-06-14 Thread ken . horn
IE firing off multiple requests is quite common - esp when it's trying to download something - we had it with PDF's. Typically it'll use different headers each time too if only it would pay attention to the headers provided instead.. [EMAIL PROTECTED] on 14/06/2001 13:10:00 Please

Re: Jasper performance

2001-05-15 Thread ken . horn
We use Jasper (from a 3.1 build!) in another container. How big is the change if we wanted to move to the 3.3 version to get the tag pooling. I'm about to start performance testing our app, and currently the pages are taking ages to render (we build up to 1Meg of html.. :o), so we'll be looking