DO NOT REPLY [Bug 45910] Tomcat will not start up if one servlet class is corrupt

2008-09-29 Thread bugzilla
https://issues.apache.org/bugzilla/show_bug.cgi?id=45910 Mark Thomas <[EMAIL PROTECTED]> changed: What|Removed |Added Status|NEW |RESOLVED

Re: svn commit: r700170 - /tomcat/tc6.0.x/trunk/STATUS.txt

2008-09-29 Thread Mark Thomas
sebb wrote: > On 29/09/2008, Mark Thomas <[EMAIL PROTECTED]> wrote: >> ThreadLocals and container classloader environments need careful handling >> to avoid memory leaks. > > I would have thought that was a good reason to keep the class - one > only needs to get the code right once? If you don't

Re: svn commit: r700170 - /tomcat/tc6.0.x/trunk/STATUS.txt

2008-09-29 Thread sebb
On 29/09/2008, Mark Thomas <[EMAIL PROTECTED]> wrote: > sebb wrote: > > BTW, Commons LANG has a thread-safe FastDateUtils which can be used > > for formatting (but not parsing) dates. > > A whole jar for one method is somewhat overkill. Indeed, but there's lots of other useful stuff in LANG. I j

Re: svn commit: r700170 - /tomcat/tc6.0.x/trunk/STATUS.txt

2008-09-29 Thread Mark Thomas
sebb wrote: > BTW, Commons LANG has a thread-safe FastDateUtils which can be used > for formatting (but not parsing) dates. A whole jar for one method is somewhat overkill. > Not sure why you did not just fix DateTool - e.g. by using ThreadLocal > (or indeed synchronizing the use of DateFormats) -

Re: svn commit: r699697 - /tomcat/tc6.0.x/trunk/STATUS.txt

2008-09-29 Thread Konstantin Kolinko
2008/9/29 Remy Maucherat <[EMAIL PROTECTED]>: > On Mon, 2008-09-29 at 14:54 +0100, Mark Thomas wrote: >> [EMAIL PROTECTED] wrote: >> > * Fix serialisation issue reported by Find Bugs >> >http://svn.apache.org/viewvc?rev=699633&view=rev >> >+1: markt >> > + 0: remm (StdContext was marked

Re: svn commit: r700170 - /tomcat/tc6.0.x/trunk/STATUS.txt

2008-09-29 Thread sebb
BTW, Commons LANG has a thread-safe FastDateUtils which can be used for formatting (but not parsing) dates. Not sure why you did not just fix DateTool - e.g. by using ThreadLocal (or indeed synchronizing the use of DateFormats) - rather than fixing all calls to DateTool. Or maybe I've misunderstoo

svn commit: r700170 - /tomcat/tc6.0.x/trunk/STATUS.txt

2008-09-29 Thread markt
Author: markt Date: Mon Sep 29 09:30:34 2008 New Revision: 700170 URL: http://svn.apache.org/viewvc?rev=700170&view=rev Log: Propose mew fix for date format thread safety Modified: tomcat/tc6.0.x/trunk/STATUS.txt Modified: tomcat/tc6.0.x/trunk/STATUS.txt URL: http://svn.apache.org/viewvc/to

svn commit: r700167 - in /tomcat/trunk/java/org/apache: catalina/ssi/ResponseIncludeWrapper.java tomcat/util/buf/DateTool.java tomcat/util/buf/MessageBytes.java tomcat/util/http/ServerCookie.java

2008-09-29 Thread markt
Author: markt Date: Mon Sep 29 09:26:29 2008 New Revision: 700167 URL: http://svn.apache.org/viewvc?rev=700167&view=rev Log: Remove the deprecated DateTool and some other (all bar one) deprecated methods that depended on it. Update SSI and ServerCookie to use local formats in a thread safe way.

DO NOT REPLY [Bug 45906] Fix ResourceAttributes ETag handling

2008-09-29 Thread bugzilla
https://issues.apache.org/bugzilla/show_bug.cgi?id=45906 --- Comment #3 from Chris Hubick <[EMAIL PROTECTED]> 2008-09-29 09:11:05 PST --- Sounds great Mark, I renamed that before I realized getETag() could replace getETag(boolean) and return either the weak or strong value. With the single

svn commit: r700156 - /tomcat/tc6.0.x/trunk/STATUS.txt

2008-09-29 Thread markt
Author: markt Date: Mon Sep 29 09:01:04 2008 New Revision: 700156 URL: http://svn.apache.org/viewvc?rev=700156&view=rev Log: Just spotted an issue with this. I'll propose a new patch (that also covers ServerCookie) shortly. Modified: tomcat/tc6.0.x/trunk/STATUS.txt Modified: tomcat/tc6.0.x/

svn commit: r700154 - /tomcat/tc6.0.x/trunk/STATUS.txt

2008-09-29 Thread remm
Author: remm Date: Mon Sep 29 08:51:31 2008 New Revision: 700154 URL: http://svn.apache.org/viewvc?rev=700154&view=rev Log: - Votes. Modified: tomcat/tc6.0.x/trunk/STATUS.txt Modified: tomcat/tc6.0.x/trunk/STATUS.txt URL: http://svn.apache.org/viewvc/tomcat/tc6.0.x/trunk/STATUS.txt?rev=7001

DO NOT REPLY [Bug 45910] New: Tomcat will not start up if one servlet class is corrupt

2008-09-29 Thread bugzilla
https://issues.apache.org/bugzilla/show_bug.cgi?id=45910 Summary: Tomcat will not start up if one servlet class is corrupt Product: Tomcat 6 Version: 6.0.18 Platform: Sun URL: http://gaea.dis.uu.se:9090/ OS/Version: Solaris

Re: svn commit: r699697 - /tomcat/tc6.0.x/trunk/STATUS.txt

2008-09-29 Thread Remy Maucherat
On Mon, 2008-09-29 at 14:54 +0100, Mark Thomas wrote: > [EMAIL PROTECTED] wrote: > > * Fix serialisation issue reported by Find Bugs > >http://svn.apache.org/viewvc?rev=699633&view=rev > >+1: markt > > + 0: remm (StdContext was marked as Serializable for an experiment; > > obviously it

Re: svn commit: r699697 - /tomcat/tc6.0.x/trunk/STATUS.txt

2008-09-29 Thread Mark Thomas
[EMAIL PROTECTED] wrote: > * Fix serialisation issue reported by Find Bugs >http://svn.apache.org/viewvc?rev=699633&view=rev >+1: markt > + 0: remm (StdContext was marked as Serializable for an experiment; > obviously it won't work) >-1: Wasn't it part of improving remote JMX suppor

svn commit: r700128 - /tomcat/tc6.0.x/trunk/STATUS.txt

2008-09-29 Thread markt
Author: markt Date: Mon Sep 29 06:37:00 2008 New Revision: 700128 URL: http://svn.apache.org/viewvc?rev=700128&view=rev Log: Propose fix for 45906 Modified: tomcat/tc6.0.x/trunk/STATUS.txt Modified: tomcat/tc6.0.x/trunk/STATUS.txt URL: http://svn.apache.org/viewvc/tomcat/tc6.0.x/trunk/STATU

DO NOT REPLY [Bug 45906] Fix ResourceAttributes ETag handling

2008-09-29 Thread bugzilla
https://issues.apache.org/bugzilla/show_bug.cgi?id=45906 --- Comment #2 from Mark Thomas <[EMAIL PROTECTED]> 2008-09-29 06:29:53 PST --- I have applied the patch to trunk with a minor modification (setETag was not renamed). I will propose it for 6.0.x. Many thanks. -- Configure bugmail: h

svn commit: r700125 - in /tomcat/trunk/java/org/apache: catalina/servlets/DefaultServlet.java catalina/servlets/WebdavServlet.java naming/resources/ResourceAttributes.java

2008-09-29 Thread markt
Author: markt Date: Mon Sep 29 06:24:36 2008 New Revision: 700125 URL: http://svn.apache.org/viewvc?rev=700125&view=rev Log: Fix https://issues.apache.org/bugzilla/show_bug.cgi?id=45906 Improve ResourceAttributes ETag handling. Patch provided by Chris Hubick Modified: tomcat/trunk/java/org/ap

RE: Findbugs results when run against Tomcat6

2008-09-29 Thread Bartolomeo Nicolotti
Here's a list of static checkers: http://en.wikipedia.org/wiki/List_of_tools_for_static_code_analysis Bye! Il giorno sab, 27/09/2008 alle 09.13 -0500, Jim Manico ha scritto: > This is really helpful info, Mark. I'd like to get my hands on an account > there, too. If all else fails try emailing

DO NOT REPLY [Bug 45907] Servlet url mapping work incorrect when many servlets have one code

2008-09-29 Thread bugzilla
https://issues.apache.org/bugzilla/show_bug.cgi?id=45907 Mark Thomas <[EMAIL PROTECTED]> changed: What|Removed |Added Status|NEW |RESOLVED

DO NOT REPLY [Bug 45907] New: Servlet url mapping work incorrect when many servlets have one code

2008-09-29 Thread bugzilla
https://issues.apache.org/bugzilla/show_bug.cgi?id=45907 Summary: Servlet url mapping work incorrect when many servlets have one code Product: Tomcat 5 Version: 5.5.0 Platform: PC OS/Version: Linux Status: NEW

svn commit: r700014 - /tomcat/tc6.0.x/trunk/STATUS.txt

2008-09-29 Thread pero
Author: pero Date: Mon Sep 29 00:40:07 2008 New Revision: 700014 URL: http://svn.apache.org/viewvc?rev=700014&view=rev Log: Cast my Vote, Please, add comment at changelog that it works only with current mod_jk 1.2.27 trunk! Modified: tomcat/tc6.0.x/trunk/STATUS.txt Modified: tomcat/tc6.0.x