Re: [PROPOSAL] Expose pre-compiled JSPs without servlet mapping

2003-07-23 Thread Tim Funk
How will phantom pages be addressed? Pages where the jsp once existed but then was deleted, but the corresponding class was not deleted? -Tim - To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL

[5] release notes and javac

2003-07-23 Thread Tim Funk
I don't think this is correct anymore since we use ant, should I remove the following from RELEASE-NOTES? JAVAC leaking memory: The Java compiler leaks memory each time a class is compiled. Web applications containing hundreds of JSP files may as a

Re: [5.0.5] New tag tomorrow ?

2003-07-24 Thread Tim Funk
Sounds good to me. I have some small docs fixes I'll push soon. -Tim Remy Maucherat wrote: To be able to reach beta quality around the end of this month, a new milestone will need to be released at the end of this week (and more generally, I think a one milestone per week schedule can't hurt

[5] welcome files not compliant?

2003-07-25 Thread Tim Funk
The default tomcat install has a welcome file list of: index.html index.htm index.jsp On a HEAD build with no changes to ROOT webapp - all is OK. But if I create a file index.html, then index.jsp still gets served. On a (very)quick glance of the mapper, I see rule 4 and 6: // Rule 4 -- Welcome

Re: [5] welcome files not compliant?

2003-07-25 Thread Tim Funk
[Permit me to be blockheaded for a moment. I really want to understand this one since it seems it can really confuse users in a test vs production environment] So if the webapp is precompiled I get one behavior, and if its not precompiled I get another behavior? (Scary) In tomcat's root

Re: [4.1.27] Release [5.0.6] New build

2003-07-31 Thread Tim Funk
The [! Os400] should be in 4.1.27. Does anyone with an os400 know if I should port the Os400 stuff in catalina.sh to 5? It appears the os400 checks were only in 4.1. -Tim Shapira, Yoav wrote: Howdy, The small Catalina.sh script fix ([! Os400] thing) will be in 4.1.27 right? Looking forward to

Re: Validation of the server.xml

2003-08-01 Thread Tim Funk
I'm not interested, here's why: http://jakarta.apache.org/tomcat/faq/misc.html#dtd -Tim Sabine Winkler wrote: hi there, may be, this isn't really important but why is there no DTD or scheme to validate the server.xml ? in combination with the defined DTD for validating the mbeans descriptor

Re: Fwd: Re: Tomcat and LDAP Issues

2003-08-02 Thread Tim Funk
Jeff, I see nine bugs out there for JNDIRealm for tomat 4 and 5, included is the one mentioned below in the previous email.

Re: [VOTE] Tomcat 5.0 release plan

2003-08-04 Thread Tim Funk
Remy Maucherat wrote: ballot [X] +1 I approve this release plan, and I will help [ ] +0 I approve this release plan [ ] -0 I disagree with the release plan [ ] -1 I am against this release plan /ballot comments I will be without a computer (therefore not checking email) next week aug 10-17.

Re: Fwd: Re: Tomcat and LDAP Issues

2003-08-05 Thread Tim Funk
in line ... Jeff Tulley wrote: With defect 20518 -- It does seem innocent, though if the primary LDAP server is down for an extended period of time, you would constantly be trying it first, then the alternate. But, I'm guessing the performance hit is not huge and the fix seems correct beyond

Re: jsp Compile error after Reload

2003-08-12 Thread Tim Funk
It is probably http://nagoya.apache.org/bugzilla/show_bug.cgi?id=22096 -Tim Pete Soderling wrote: Hello, I'm having a problem with a certain bean package after I use ant to recompile my app. The strage thing is my jsp will work fine after I initially start Tomcat - no problems. After I

Re: Breaking the build

2003-08-12 Thread Tim Funk
I am about to leave for a few days. If anyone has the desire to (clean this up and) add it to CVS - go for it. Otherwise - where should this go? - jakarta-tomcat-site - jakarta-tomcat-5 (Here could cause a lot of confusion) - jakarta-tomcat-5/resource (Its the only subdir) -

Re: [5.0.7] New build by Sunday

2003-08-14 Thread Tim Funk
+1 I'm out next week, but when I get back I hope to squash most JDBCRealm bugs. (which apply to 5 and 4.1) -Tim Remy Maucherat wrote: Hi, I plan to make a new build available by Sunday. Comments ? Any issues which would need to be resolved by then ? A number of issues have been filed about

Re: Tomcat shutdown port and security

2003-08-14 Thread Tim Funk
In a server environment, no. http://jakarta.apache.org/tomcat/faq/security.html#8005 -Tim NAIK,ROSHAN (HP-Cupertino,ex1) wrote: Given that _anybody_ on the local machine could simply telnet to the port and issue a SHUTDOWN command. Isnt the current shutdown mechanism in Tomcat 4 a security

Re: Breaking the build

2003-08-14 Thread Tim Funk
idea to get rid of building.html and have it link directly to the CVS version (BUILDING.txt) so there are not 2 copies of the same instructions. (And there is one last option which is to do nothing ;) ) -Tim Remy Maucherat wrote: Tim Funk wrote: I would be in favor of adding a link to jakarta

Re: Fwd: Re: Tomcat and LDAP Issues

2003-08-14 Thread Tim Funk
Oops forgot about that one. There is a PATCH but the writer says that the bug is really with the JNDI Provider (Netscape) and not tomcat. The patch is a workaround to the Netcape's bug. (But maybe I took those words out of context) Remy - your thoughts on this one? (My pref is WONTFIX since the

System.out refs

2003-08-14 Thread Tim Funk
When I was looking at o.a.c.core.ApplicationDispatcher.java, I noticed it used 2 different logging styles: - Commons Logging - log() which tries to use context.getLogger(), and if null uses System.out Shouldn't the log() method use commons-logging if context.getLogger() returns null? Bonus q:

Please confirm soln: [Bug 22226] Tomcat throws JasperExceptioninstead of NumberFormatException when parameter can't convert to bean property

2003-08-14 Thread Tim Funk
The spec says for jsp:setProperty: A conversion failure leads to an error, whether at translation time or requesttime. From a compliance point of view, it looks like tomcat is OK that is throws a JasperException. But from a user (web developer) point of view, I would think this sucks. But am

Re: Breaking the build

2003-08-14 Thread Tim Funk
I don't know if there are any build from scratch scripts out there, I am sure there is because of the nightly build process. I wanted a script that pulls everything from scratch and does a full build so I can test that occasionally for myself. Attached (hopefully) is a shell script. I've only

Re: Fwd: Re: Tomcat and LDAP Issues

2003-08-14 Thread Tim Funk
I got eager and saw you bug update yesterday and applied a patch to 4.1 last night. Here's a link to the PATCH email: http://marc.theaimsgroup.com/?l=tomcat-devm=106004487327965w=2 The commit also does a null pointer check on the getMessage() to fix a related bug and also avoids doing the

Re: [VOTE] New committer: Eric Carmichael

2003-08-18 Thread Tim Funk
+1 (If more votes are still needed) -Tim - To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PROTECTED]

Re: UserDatabase implementations

2003-08-21 Thread Tim Funk
Thats already done in JNDIRealm and JDBCRealm. Ask the tomcat-user list for more help. -Tim Bill Schneider wrote: Are there plans to have JDBC or JDNI/LDAP implementations of org.apache.catalina.UserDatabase? This would be very useful, as webapps often have to perform actions beyond what

Re: [VOTE] 5.0.9 stability rating

2003-08-23 Thread Tim Funk
Installed 5.0.9 from exe (win2k) 1) startup.bat worked fine, but the icon which calls tomcatw.exe //GT//Tomcat5 fails will some Current Thread not owner error 2) Race conditions and connection handling in JDBCRealm - plus a whole host of other JDBCRealm bugs in Bugzilla applicable to 4 and 5. I

Re: [VOTE] 5.0.9 stability rating

2003-08-25 Thread Tim Funk
Doh! http://jakarta.apache.org/tomcat/faq/windows.html#illegal -Tim Remy Maucherat wrote: Tim Funk wrote: Installed 5.0.9 from exe (win2k) 1) startup.bat worked fine, but the icon which calls tomcatw.exe //GT//Tomcat5 fails will some Current Thread not owner error This works for me, Bill

Re: DO NOT REPLY [Bug 22328] - javax.management.ReflectionException:Cannot find method getClassName with this signature

2003-08-30 Thread Tim Funk
IIRC - I think Amy submitted a patch to fix this. Can I resolve this as fixed? -Tim [EMAIL PROTECTED] wrote: DO NOT REPLY TO THIS EMAIL, BUT PLEASE POST YOUR BUG RELATED COMMENTS THROUGH THE WEB INTERFACE AVAILABLE AT http://nagoya.apache.org/bugzilla/show_bug.cgi?id=22328. ANY REPLY MADE TO

removing log() from error processing in StandardWrapperValve.java??

2003-08-30 Thread Tim Funk
In the use case of a servlet or filter throwing an ServletException, StandardWrapperValve will log the exception to its logger. If the error is an expected one (such as session timeout or browser compatibility check) and there is a configured error-page directive to handle the exception,

Re: removing log() from error processing in StandardWrapperValve.java??

2003-08-30 Thread Tim Funk
Remy Maucherat wrote: Tim Funk wrote: In the use case of a servlet or filter throwing an ServletException, StandardWrapperValve will log the exception to its logger. If the error is an expected one (such as session timeout or browser compatibility check) and there is a configured error-page

[5] Infinite loop potential in processing error in StandardWrapperValve.java??

2003-08-31 Thread Tim Funk
When I added the code to use PropertyUtils.getProperty in determining the root cause, I noticed it can cause an infinite loop. // Extra aggressive rootCause finding do { try { rootCauseCheck = (Throwable)PropertyUtils.getProperty (rootCause,

Re: [Patch] Multiple user patterns in JNDIRealm

2003-09-03 Thread Tim Funk
Thanks Jeff, I'll take a look at this this week. -Tim - To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PROTECTED]

o.a.c.authenticator.NonLoginAuthenticator.java

2003-09-10 Thread Tim Funk
Has anyone used NonLoginAuthenticator? Or know if it is still ok? http://cvs.apache.org/viewcvs.cgi/jakarta-tomcat-4.0/catalina/src/share/org/apache/catalina/authenticator/NonLoginAuthenticator.java?rev=1.3content-type=text/vnd.viewcvs-markup From a quick code walkthrough it looks like an

lack of karma for jsr-154

2003-09-13 Thread Tim Funk
I am unable to commit patch for BZ 21933 for tomcat 5. Same 1 line patch as in tomcat 4.1. Can I get Karma or can someone commit? -Tim Index: examples/WEB-INF/classes/compressionFilters/CompressionResponseStream.java === RCS file:

\% not handled right?

2003-09-23 Thread Tim Funk
Attached is a note from tomcat-user which I think might be a bug in jasper. Summary it you don't want to read it... Take this page: - %=BAR% \%=bar% - It produces: BAR \%=bar% Instead of BAR \bar The spec says to escape % with \% -Tim Original Message Subject:

Re: Jakarta Tomcat 4.1 XSS vulnerability

2003-09-29 Thread Tim Funk
Actually this could be issue on a poorly configured site where the admin does not override the default error pages. It would make it very easy to steal someone's cookies or session. So while might be an issue (I personally haven't checked), its not an issue if the admin configures custom error

Re: [5.0] Schedule change

2003-09-30 Thread Tim Funk
+1 It may be better to get an official release out sooner than later. In a worst case where the spec is changed from what is expected, tomcat 5.2 could address that. -Tim Remy Maucherat wrote: Hi, The signals I'm getting from Sun about the schedule of the specifications is highly confusing.

Re: [next] What's next ?

2003-10-02 Thread Tim Funk
The AccessLog Valves might be nice to simplify so a Logging element is a nested inside of the Valve declaration. This way the access log valve can just do 3 things: - determine if it should log (conditional logging) - format a string to be logged - Pass it along to a logging element which can

Re: [next] What's next ?

2003-10-02 Thread Tim Funk
An AccessLogFilter will not work since the filter is only valid for a single webapplication. If you wish to log all requests for a server (or Host) to the same log file, you could in theory have multiple Filters running at the same time, one for each webapp - but I'd hate to see the messy file

[5] Unable to initialize TldLocationsCache: zip file closed

2003-10-07 Thread Tim Funk
Quick summary: In o.a.jasper.xmlparserParserUtils.java, line 129 is DocumentBuilderFactory factory = DocumentBuilderFactory.newInstance(); Does anyone know how DocumentBuilderFactory.newInstance() can throw java.lang.IllegalStateException: zip file closed? More detail

Re: [5] Unable to initialize TldLocationsCache: zip file closed

2003-10-08 Thread Tim Funk
to pull my hair out on this one until I can reproduce this with a newer JVM for that box. (Something I'll not be allowed to do soon for that machine :( ) -Tim Remy Maucherat wrote: Tim Funk wrote: Quick summary: In o.a.jasper.xmlparserParserUtils.java, line 129 is DocumentBuilderFactory factory

Re: Order of parameters

2003-10-08 Thread Tim Funk
The problem lies in the servlet spec. It does not dictate that request.getParameterNames() returns the parameter list in any specific order. A feature request to the spec working group is your best bet. If your using GET - you always have access to the query string and a simple regex can

Re: [5] Unable to initialize TldLocationsCache: zip file closed

2003-10-08 Thread Tim Funk
. Since the specs(at my latest reading) require a minimum of a 1.3 jvm, I am not worried about a 1.2 jvm. -Tim Remy Maucherat wrote: Tim Funk wrote: My first todo will be to get a newer JVM (1.3 or 1.4) for that machine and see how things go. I am not going to pull my hair out on this one until

Re: [5.0] System properties in server.xml (and elsewhere)

2003-10-15 Thread Tim Funk
+0 (I'd be +1 if I could actually be of help - but love the idea) -Tim Remy Maucherat wrote: Hi, I think it would be possible, using a new rule, to allow system properties inside server.xml (and possibly elsewhere) for attribute values. This is the same as what is being done by Ant in its

Re: [5.0] Property replacement

2003-10-17 Thread Tim Funk
If the admin is using the properties functionality, will they also be using the admin webapp to make config changes? (I think not) -Tim Remy Maucherat wrote: Hi, - Note: The properties used will not be saved when using save-to-XML from the admin. If anyone has an idea on how to make it work,

Re: Fwd: typo in tomcat site

2003-10-18 Thread Tim Funk
I think this was fixed already. But I think the docs (including javadocs) from the latest release are not in sync with the public site. -Tim Pier Fumagalli wrote: Not acked. Pier Begin forwarded message: From: Martin Gomez [EMAIL PROTECTED] Date: 18 October 2003 19:07:28 GMT+09:00 To:

Re: cvs commit: jakarta-tomcat-connectors/util/java/org/apache/tomcat/util/net PoolTcpEndpoint.java

2003-11-01 Thread Tim Funk
Could a simple compromise be - Die (with error message) if 2 - Warn if less than 10 (or ??). Letting the user be stupid, but warn them about it. -Tim Bill Barker wrote: Jan Luehe [EMAIL PROTECTED] wrote in message news:[EMAIL PROTECTED] Remy, I agree we should help users come up with

Re: http://jakarta.apache.org/tomcat/tomcat-5.0-doc

2003-11-04 Thread Tim Funk
I don't know how they published to jakarta.apache.org but the docs are in jakarta-tomcat-catalina/webapps/docs -Tim jean-frederic clere wrote: Hi, I would like to correct things in the TC-5.0. Where is the repos? Cheers Jean-Frederic

Re: [VOTE] Kurt Miller as commiter

2003-11-11 Thread Tim Funk
+1 (Yeah .. more jk2 committers!) -Tim Henri Gomez wrote: Hi to all, I would like to propose you a new tomcat commiter, Kurt Miller which as proposed many usefull patches for JK2. Since we want to deprecated jk and focus jk2, we need more people involved on jk2. Vote please.

Re: cvs commit: jakarta-tomcat-catalina/catalina/src/share/org/apache/coyote/tomcat5 CoyoteConnector.java CoyoteRequest.java LocalStrings.properties

2003-11-15 Thread Tim Funk
I like this idea. But if the client sends too much data, it appears there will be no post data for the Servlet/JSP to process causing strange user errors. (User: Why is getParameter(...) null?) Should an error of SC_REQUEST_ENTITY_TOO_LARGE be sent instead? Of course, checking this too early

Re: How is the FAQ updated?

2003-11-20 Thread Tim Funk
http://cvs.apache.org/viewcvs.cgi/jakarta-tomcat-site/ - Its in jakarta-tomcat-site - The FAQ questions(and answers) are in xdocs-faq as xml files - edit these. - To make the site: follow the README.txt - Once you've built the site- commit your changes (including the generated html) - Let Remy

Re: [VOTE] New committer: Mark Thomas

2003-11-20 Thread Tim Funk
+1 -Tim Remy Maucherat wrote: Hi, I'd like to nominate Mark Thomas as a Tomcat committer. He has contibuted a significant amount of fixes already, and does what nobody else does: roam Bugzila to fix older issues and cleanup the database. He has special interest in the WebDAV code, which

Re: JAASCallbackHandler clear password in the log file

2003-11-24 Thread Tim Funk
IMO, no. In a production environment: 1) The debug should not turned up that high 2) If its a production box, file permissions as well as people able to log into the box should be trusted. -Tim Yann GUEVEL wrote: Hi, if the debug level is 3, the

Re: cvs commit: jakarta-tomcat-catalina/catalina/src/share/org/apache/catalina/authenticator SingleSignOnEntry.java AuthenticatorBase.java BasicAuthenticator.java DigestAuthenticator.java FormAuthenticator.java NonLoginAuthenticator.java SSLAuthenticator.java SingleSignOn.java mbeans-descriptors.xml

2003-11-24 Thread Tim Funk
This means that the logout check is now back in, the revert from 1.6 - 1.7 for bug http://nagoya.apache.org/bugzilla/show_bug.cgi?id=23764 Diff link:

Re: Tomcat 5 Issue (not 5.0.16 specific!)

2003-12-02 Thread Tim Funk
Section 5.5 of the spec: When a response is closed, the container must immediately flush all remaining content in the response buffer to the client. The following events indicate that the servlet has satisfied the request and that the response object is to be closed: The termination of the

Re: Any clue on this, please? Uploading large files - out of memory

2003-12-03 Thread Tim Funk
Please followup to tomcat user. 1) Make sure that the app is using ServletRequest.getInputStream() 2) See the spec: 'SRV.4.1.1 When Parameters Are Available' -Tim Fabrizio Nesti wrote: Hi, any comment on this out of memory with large file upload? This error seems recurring to a bunch of

[wiki] wiki.apache.org migration

2003-12-09 Thread Tim Funk
I would be interested in a Wiki for Tomcat. It has been somewhat helpful as a complement to the Tomcat FAQ. AFAICT, there is not a lot of Tomcat content on the Wiki, so moving over the relevant information should be easy. [cc'd the tomcat-dev list to determine other's interest in this] -Tim

Re: cvs commit: jakarta-tomcat-catalina/webapps/docs/config jk.xml project.xml jk2.xml

2003-12-10 Thread Tim Funk
Does this pretty much says that jk2 is now not recommended? (At least until it gets more cleanup) So I can update the FAQ. -Tim [EMAIL PROTECTED] wrote: remm2003/12/10 04:38:01 Modified:webapps/docs/config project.xml Added: webapps/docs/config jk.xml Removed:

Re: New RM for Tomcat 5

2004-05-10 Thread Tim Funk
+1 -Tim Remy Maucherat wrote: Hi, Yoav has expressed interest in being the release manager for Tomcat 5. Since he has shown interest in nearly all Tomcat components, and apparently has enough time at the moment, I think he would be the most qualified to replace me, and has my +1.

Re: dynamic mapping of jsp's from jars (attempt #2)

2004-06-08 Thread Tim Funk
See the invoker servlet. -Tim Ron Forrester wrote: I am thinking this question walks the edge between tomcat-users and tomcat-dev, so please forgive me if I have chosen unwisely... Background: We are wanting to add a capability to our webapp which requires that we be able to reference precompiled

Re: Some JK2 ideas v.2

2004-07-15 Thread Tim Funk
If this is all wishlists .. it'd be nice if we could set the worker and handler via mod_rewrite. Intead of JkMount /*.jsp loadbalancer Say: RewriteCond %{REQUEST_URI} *\.jsp RewriteRule ^(.+)$$1 [T=jk,E=worker:loaderbalance] [If my syntax above is correct] -Tim Mladen Turk wrote:

Re: Some JK2 ideas v.2

2004-07-15 Thread Tim Funk
I wasn't thinking of a dependency on mod_rewrite, but a way to to configure JK based on common data structures that may be set by mod_rewrite. Its actually a restatement of this: http://marc.theaimsgroup.com/?l=tomcat-devm=108987495224170w=2 -Tim [EMAIL PROTECTED] wrote: Would do you think a

Re: Some JK2 ideas v.3

2004-07-15 Thread Tim Funk
How about mod_tomcat? -Tim Mladen Turk wrote: -Original Message- From: Remy Maucherat - it should have a name which doesn't confuse folks :) APR_JAVA as static core lib + mod_javalink? For example I wish to make a WIN2003 http.sys kernel module.

Re: Some JK2 ideas

2004-07-19 Thread Tim Funk
I was lucky enough to ditch a bloated buggy j2ee engine in place of tomcat/apache while we were in the process of switching CIO's. As nice as it is to have someone to blame, its even harder to justify having to pay the fat up front prices and yearly (lack of) support contracts for something

Re: Simple Sticky LB WAS: Invitation to HTTPD commiters in tomcat-dev

2004-07-21 Thread Tim Funk
I'm not sure of the status so far, but I'd like to summarize a strawman. I have no idea how to code this at this time or if it can be done. -- *Config* [Feel free to change the names] ProxyClient http://server1/config.xml ProxyClient http://server2/config.xml ProxyClient

Re: Some benchs results : WAS: Invitation to HTTPD commiters in tomcat-dev

2004-07-22 Thread Tim Funk
Try siege: http://joedog.org/siege/ Despite what the docs say, it runs pretty sweet on cygwin too. (with 2.60b5) -Tim Henri Gomez wrote: jean-frederic clere wrote: mod_proxy in ap_proxy_http_cleanup() closes the socket if HTTP is 1.1 is that correct? The request was (from ab): +++ GET

Re: New committer: Peter Rossbach

2004-07-30 Thread Tim Funk
+1 -Tim Remy Maucherat wrote: Hi, I'd like to nominate Peter Rossbach pr _at_ objektpark.de as a committer on the Tomcat project. Peter submitted a significant amount of useful patches for Tomcat, and wants to contribute more.

Re: JNDI Realm Bug

2004-08-02 Thread Tim Funk
IIRC - This was fixed in HEAD of JNDIRealm. -Tim Sebastien Brunot wrote: Hi, I'm using Tomcat 4.1.30 with JDK 1.4.2 on Windows XP Professionnal. I've got a problem with JNDIRealm : the group a user is in in my LDAP directory is an object which attribute member contains the user CN. So I've

Re: JNDI Realm Bug

2004-08-02 Thread Tim Funk
have to checkout from CVS head and recompile tomcat to solve the problem, or is there a stable version which correct this ? Thanks for your answer, Sebastien -Original Message- From: Tim Funk [mailto:[EMAIL PROTECTED] Sent: lundi 2 août 2004 14:15 To: Tomcat Developers List Subject: Re: JNDI

Re: Tomcat 5.0.28 release

2004-08-09 Thread Tim Funk
Didn't we already try that with the tomcat 4 LE edition? -Tim Remy Maucherat wrote: My current idea for the new branch is to ship a JDK 1.5 bundle with a separate zip/tar.gz to easily install the additional binaries when using JDK 1.4-. This will be smaller (no JMX, no Xerces) and maybe higher

Re: [Patch] ExtendedAccessLogValve - broken x-H(requestedSessionIdValid)

2004-08-11 Thread Tim Funk
Its now bugzilla 30587. -Tim Lilianne E. Blaze wrote: Hello, This is the first time I submit a patch, so I hope I do everything right. ExtendedAccessLogValve is broken, code x-H(requestedSessionIdValid) returns the same result as x-H(requestedSessionId) due to a typo. Greetings, Lilianne E.

Re: Load balance in tomcat

2004-08-17 Thread Tim Funk
I would first look at a hardware(or dns) loadbalancer and tomcat 5's clustering. -Tim Henrique Faria wrote: Hi! Which is the best way to load balance, across multiple tomcat instances, without using jk conectors or apache web servers? Is there support for it in the Catalina core? Thanks,

Re: Code Too Large for Try Statement in Catalina

2004-08-19 Thread Tim Funk
1) don't use compile time includes 2) split your page into multiple files which can use jsp_includes. Any file which needs to be this big is probably extrememly painful to debug. 3) followup to tomcat-user, not tomcat-dev -Tim Michael McGrady wrote: I have the following error:

Re: [VOTE] 4.1.31 maintenance release

2004-08-20 Thread Tim Funk
Its maintained if there is a committer who will apply the patches. Mark has been very good at doing this. For large companies - it takes (a lot) time to upgrade versions. I'm still stuck on 4.0.4 for all of my servers. (Soon to be 5 if all goes well) Stability is more important than speed and

Re: cvs commit: jakarta-tomcat-catalina/webapps/manager/WEB-INF/classes/org/apache/catalina/manager StatusTransformer.java

2003-12-10 Thread Tim Funk
The name attribute of A should be #less. +writer.print(a class=\A.name\ name=\# + + (count++) + .0\); A page example which uses anchors: http://jakarta.apache.org/tomcat/faq/tomcatuser.html -Tim [EMAIL PROTECTED] wrote: remm2003/12/10

Re: cvs commit: jakarta-tomcat-catalina/webapps/docs/architecture/startup serverStartup.pdf serverStartup.txt

2003-12-13 Thread Tim Funk
Can project.xml~ and index.xml~ be removed? They look like [editor] backup files. (I might be early on this one) Is an update also coming for j-t-catalina/webapps/docs/build.xml? The architecture dir isn't being picked up on build. Is there any opinion on mixed case file names for

Re: Intro/question possible buglet with Content-Type and Charsets.

2003-12-16 Thread Tim Funk
http://nagoya.apache.org/bugzilla/show_bug.cgi?id=24970 [EMAIL PROTECTED] wrote: Hi All, Quick intro, and then a question; We use tomcat to host java web applications at our location. My client requires us to follow very strict rules for deploying software, that means it can be a documentation

Re: Intro/question possible buglet with Content-Type and Charsets .

2003-12-16 Thread Tim Funk
for this id, I see that someone has a 4.1.29 patch and a complied class, but cannot see either email address or content via the archive. Ho hum Thanks for the pointer. Greg -Original Message- From: Tim Funk [mailto:[EMAIL PROTECTED] Sent: 16 December 2003 12:31 To: Tomcat

Re: cvs commit: jakarta-tomcat-catalina/webapps/docs changelog.xml

2003-12-17 Thread Tim Funk
I prefer only the RM updating changelog. -Tim Remy Maucherat wrote: [EMAIL PROTECTED] wrote: yoavs 2003/12/16 18:42:26 Modified:webapps/docs changelog.xml Log: Started changelog for 5.0.17. It's probably easier if either: - only one guy does it (so he knows what needs to be

Re: Important information about jakarta-servletapi-*

2003-12-17 Thread Tim Funk
Does this mean that any bug submitted with a criticism (or patch) against jakarta-servletapi-* can be marked as WONTFIX with a advisory for the requestor to notify [EMAIL PROTECTED] or [EMAIL PROTECTED] ? (I know there is at least one bug in this category) -Tim Mark Roth wrote: Hi everyone,

Re: Intro/question possible buglet with Content-Type and Charsets .

2003-12-19 Thread Tim Funk
Instructions added to http://nagoya.apache.org/bugzilla/show_bug.cgi?id=24970 -Tim Tim Funk wrote: Yeah, nagoya.apache.org seems down. Hopefully it will be back soon. The bug has good detail of what and how to fix. -Tim [EMAIL PROTECTED] wrote: Thanks Tim, Having a little trouble getting

Re: Intro/question possible buglet with Content-Type and Charsets .

2003-12-19 Thread Tim Funk
added to http://nagoya.apache.org/bugzilla/show_bug.cgi?id=24970 -Tim Tim Funk wrote: - To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PROTECTED

Re: Custom Compoents

2003-12-20 Thread Tim Funk
It depends what you mean by custom components. Tomcat is servlet and JSP container so much of your code can be written to the spec and be portable to any servlet container. But there items not addressed by the specs or purposefuly left out. In those cases, you need to write tomcat specific

Re: cvs commit: jakarta-tomcat-catalina/catalina/src/share/org/apache/catalina/core StandardWrapper.java StandardWrapperValve.java mbeans-descriptors.xml

2003-12-22 Thread Tim Funk
Is there more to this? What is this for? -Tim [EMAIL PROTECTED] wrote: remm2003/12/22 09:47:43 Modified:catalina/src/share/org/apache/catalina/core StandardWrapper.java StandardWrapperValve.java mbeans-descriptors.xml Log: - Add

Re: License files error

2003-12-23 Thread Tim Funk
Files in question: http://cvs.apache.org/viewcvs.cgi/jakarta-tomcat-4.0/LICENSE?rev=1.4view=auto http://cvs.apache.org/viewcvs.cgi/jakarta-tomcat-5/LICENSE?rev=1.1.1.1view=auto Looking at CVS, it looks like some other jakarta projects have also had (differenet) typo problems and also fixed their

Re: NIO and JDK link

2003-12-25 Thread Tim Funk
It is built using 1.4 - but does not *require* 1.4. IIRC, your thread was requesting making 1.4 required. -Tim Vic Cekvenich wrote: Shapira, Yoav wrote: Is there a plan sometime to consider moving TC 5 to 1.4 JRE? It's already compiled and built on JDK 1.4. Wait... there was a whole

[Bug 23929] - request.setCharacterEncoding(String) doesn't work

2004-01-14 Thread Tim Funk
Since this seems a rather populate bug topic ... I'd like to add this to the FAQ. Besides linking to this bug report, can anyone provide me: 1) A suggested wording for how to phrase this as a question 2) A suggested wording for the answer (I can figure this out) 3) Any other links (to the

cvs FAQ Update request

2004-01-20 Thread Tim Funk
Can someone do a cvs update so the FAQ pulls in the latest content for http://jakarta.apache.org/tomcat/faq/ ? -Tim - To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PROTECTED]

Re: cvs FAQ Update request

2004-01-20 Thread Tim Funk
Yup! The biggest change was getting more awareness to the encoding bug reports. http://jakarta.apache.org/tomcat/faq/misc.html -Tim Shapira, Yoav wrote: Howdy, Done... Is it OK with your latest changes? Yoav Shapira Millennium ChemInformatics -Original Message- From: Tim Funk [mailto

Re: PROPOSAL: move bugzilla posts to separate list

2004-01-20 Thread Tim Funk
-1 Same reasons Yoav. -Tim Shapira, Yoav wrote: Howdy, -1, commits and bugzilla messages are important to developers. If you don't like them, filter them out, it's a trivial filter in any modern email client. Yoav Shapira Millennium ChemInformatics -Original Message- From: Günter

Re: WebDAV and TC5

2004-01-29 Thread Tim Funk
I have mixed feelings. I don't think it belongs in the tomcat distribution. I'd rather see the WebDav servlet get moved to another jakarta (commons?) project. Like commons-webapps, commons-servlets. But then again the webdav servlet is tomcat specific code and might be hard being ported to

Re: Download servlet with resume

2004-02-02 Thread Tim Funk
Please follow up with tomcat-user since this is a user topic. What you'll want to look at is utilizing the Byte-Range header. it is a standard way for a client to get only part of a request. DefaultServlet has support for this so if you need some example code, look there. -Tim Patrik

Re: [Proposal] Get our FAQ listed on jakarta.apache.org/site/faqs.html

2004-02-05 Thread Tim Funk
For those who have karma to jakarta-site2, here's the patch. RCS file: /home/cvs/jakarta-site2/xdocs/site/faqs.xml,v retrieving revision 1.20 diff -u -r1.20 faqs.xml --- faqs.xml2 Oct 2003 08:55:47 - 1.20 +++ faqs.xml5 Feb 2004 11:52:12 - @@ -26,6 +26,7 @@ liThe a

[VOTE] 4.1.30 release vote

2004-02-11 Thread Tim Funk
ballot Release 4.1.30 as Stable: [x] Yes [ ] No /ballot -Tim - To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PROTECTED]

Re: [Vote] Guenter Knauf as commiter

2004-03-17 Thread Tim Funk
+1 -Tim Henri Gomez wrote: Hi to all, jk2 2.0.4 seems in a good shape and I'd like to thanks all of you commiter, and tomcat-dev members for your feedback, patches and time. I'd like to see Guenter Knauf promoted to commiter since he provided us may fine patches on jk2 and help make this

Re: [OT] Tomcat as top level ASF Project

2004-03-18 Thread Tim Funk
Can anyone list the pros and cons? The last time this was discussed it was -1. But it seems the reasons since then may have changed. http://marc.theaimsgroup.com/?t=10473776922r=1w=2 -Tim Henri Gomez wrote: Hi to all, Just see that Struts is becaming a top level project, like ant last

Re: [OT] Tomcat as top level ASF Project

2004-03-18 Thread Tim Funk
I am curious to the scope the new TLP would have. For example, would/should the following projects come along to the new Tomcat TLP? - Taglibs - Watchdog - Slide - Other web server components based on java? -Tim Henri Gomez wrote: As many I see Tomcat as the ASF Java web-server, where Apache 2

Re: Minimal HOWTO for jk2 2.0.4 - Was: [Fwd: Releasing JK 2.0.4]

2004-03-23 Thread Tim Funk
The faq uses the wiki for some stuff. Feel free to add content there. http://jakarta.apache.org/tomcat/faq/ -Tim Tim Stewart wrote: First let me say sorry for lurking and responding to this message 5 days late. I think your suggestions are very good. I also recently went through hell trying to

Re: Tomcat 5.0.20 Issue

2004-03-24 Thread Tim Funk
http://nagoya.apache.org/bugzilla/show_bug.cgi?id=26444 -Tim Jess Holle wrote: Jess Holle wrote: Unfortunately, Tomcat 5.0.20 cannot compile 6 out our 985 JSP pages (which Tomcat 5.0.19 compiled just fine). The issue can be traced directly to a single entry in the change log: Add some

startup/Bootstrap.java not loading catalina.properties on shutdown

2004-08-24 Thread Tim Funk
In startup/Bootstrap.java there is: (line 110 in createClassLoader(..)) String value = CatalinaProperties.getProperty(name + .loader); CatalinaProperties is only initialized once, but isn't used on shutdown. This would be a problem, if I try: Server port=${shutdown.port} shutdown=SHUTDOWN

Re: [VOTE] [5.5] Release plan votes

2004-08-26 Thread Tim Funk
* New native connector for Apache 2, based on mod_proxy Is it true that it will be ready for 5.5? I thought the mod_proxy code would be independent of tomcat version. Otherwise ... Remy Maucherat wrote: ballot I approve the release plan: [X] Yes [ ] No /ballot ballot Tomcat 5.5 should use

Re: [VOTE] [5.5] Release plan votes

2004-08-27 Thread Tim Funk
It looks like there are branches for 5.0 (TOMCAT_5_0) in j-t-jasper and connectors. Is that correct? Or should both of those modules be using HEAD? It also appears that jakarta-tomcat-site recieved tags for TOMCAT_5_0_27, TOMCAT_5_0_26 and branch tag of TOMCAT_5_0. -Tim Remy Maucherat wrote:

Re: Javadocs ?

2004-09-01 Thread Tim Funk
Agreed. If they are put only online - it would be nice if they were also be allowed to be downloaded. (For those who wish to keep a local copy) -Tim Remy Maucherat wrote: Hi, I find the javadocs of Catalina and Jasper annoying (tons of files which take forever to get copied) and I don't use

<    1   2   3   >