DO NOT REPLY [Bug 34805] - warn about invalid security contraint url patterns

2006-08-01 Thread bugzilla
DO NOT REPLY TO THIS EMAIL, BUT PLEASE POST YOUR BUG· RELATED COMMENTS THROUGH THE WEB INTERFACE AVAILABLE AT . ANY REPLY MADE TO THIS MESSAGE WILL NOT BE COLLECTED AND· INSERTED IN THE BUG DATABASE. http://issues.apache.org/bugzilla/show_bu

DO NOT REPLY [Bug 40150] New: - Incorrect User/Role classnames are silently ignored.

2006-08-01 Thread bugzilla
DO NOT REPLY TO THIS EMAIL, BUT PLEASE POST YOUR BUG· RELATED COMMENTS THROUGH THE WEB INTERFACE AVAILABLE AT . ANY REPLY MADE TO THIS MESSAGE WILL NOT BE COLLECTED AND· INSERTED IN THE BUG DATABASE. http://issues.apache.org/bugzilla/show_bu

DO NOT REPLY [Bug 40150] - Incorrect User/Role classnames are silently ignored.

2006-08-01 Thread bugzilla
DO NOT REPLY TO THIS EMAIL, BUT PLEASE POST YOUR BUG· RELATED COMMENTS THROUGH THE WEB INTERFACE AVAILABLE AT . ANY REPLY MADE TO THIS MESSAGE WILL NOT BE COLLECTED AND· INSERTED IN THE BUG DATABASE. http://issues.apache.org/bugzilla/show_bu

DO NOT REPLY [Bug 40151] New: - mod_jk with Apache doesn't handle jsessionid encoded directory URLs

2006-08-01 Thread bugzilla
DO NOT REPLY TO THIS EMAIL, BUT PLEASE POST YOUR BUG· RELATED COMMENTS THROUGH THE WEB INTERFACE AVAILABLE AT . ANY REPLY MADE TO THIS MESSAGE WILL NOT BE COLLECTED AND· INSERTED IN THE BUG DATABASE. http://issues.apache.org/bugzilla/show_bu

DO NOT REPLY [Bug 40150] - Incorrect User/Role classnames are silently ignored.

2006-08-01 Thread bugzilla
DO NOT REPLY TO THIS EMAIL, BUT PLEASE POST YOUR BUG· RELATED COMMENTS THROUGH THE WEB INTERFACE AVAILABLE AT . ANY REPLY MADE TO THIS MESSAGE WILL NOT BE COLLECTED AND· INSERTED IN THE BUG DATABASE. http://issues.apache.org/bugzilla/show_bu

svn commit: r427546 - /tomcat/tc6.0.x/trunk/java/org/apache/catalina/core/StandardContext.java

2006-08-01 Thread remm
Author: remm Date: Tue Aug 1 04:57:41 2006 New Revision: 427546 URL: http://svn.apache.org/viewvc?rev=427546&view=rev Log: - Stop wrappers a bit earlier. Modified: tomcat/tc6.0.x/trunk/java/org/apache/catalina/core/StandardContext.java Modified: tomcat/tc6.0.x/trunk/java/org/apache/catalin

DO NOT REPLY [Bug 40153] New: - pooop

2006-08-01 Thread bugzilla
DO NOT REPLY TO THIS EMAIL, BUT PLEASE POST YOUR BUG· RELATED COMMENTS THROUGH THE WEB INTERFACE AVAILABLE AT . ANY REPLY MADE TO THIS MESSAGE WILL NOT BE COLLECTED AND· INSERTED IN THE BUG DATABASE. http://issues.apache.org/bugzilla/show_bu

DO NOT REPLY [Bug 40153] - pooop

2006-08-01 Thread bugzilla
DO NOT REPLY TO THIS EMAIL, BUT PLEASE POST YOUR BUG· RELATED COMMENTS THROUGH THE WEB INTERFACE AVAILABLE AT . ANY REPLY MADE TO THIS MESSAGE WILL NOT BE COLLECTED AND· INSERTED IN THE BUG DATABASE. http://issues.apache.org/bugzilla/show_bu

DO NOT REPLY [Bug 40155] New: - Context setup for JSPs in 5.5.17

2006-08-01 Thread bugzilla
DO NOT REPLY TO THIS EMAIL, BUT PLEASE POST YOUR BUG· RELATED COMMENTS THROUGH THE WEB INTERFACE AVAILABLE AT . ANY REPLY MADE TO THIS MESSAGE WILL NOT BE COLLECTED AND· INSERTED IN THE BUG DATABASE. http://issues.apache.org/bugzilla/show_bu

DO NOT REPLY [Bug 40155] - Context setup for JSPs in 5.5.17

2006-08-01 Thread bugzilla
DO NOT REPLY TO THIS EMAIL, BUT PLEASE POST YOUR BUG· RELATED COMMENTS THROUGH THE WEB INTERFACE AVAILABLE AT . ANY REPLY MADE TO THIS MESSAGE WILL NOT BE COLLECTED AND· INSERTED IN THE BUG DATABASE. http://issues.apache.org/bugzilla/show_bu

DO NOT REPLY [Bug 39817] - Include File Failure for Parent|Top Relative References

2006-08-01 Thread bugzilla
DO NOT REPLY TO THIS EMAIL, BUT PLEASE POST YOUR BUG· RELATED COMMENTS THROUGH THE WEB INTERFACE AVAILABLE AT . ANY REPLY MADE TO THIS MESSAGE WILL NOT BE COLLECTED AND· INSERTED IN THE BUG DATABASE. http://issues.apache.org/bugzilla/show_bu

ArrayIndexOutOfBoundsException in ResourceCache.java

2006-08-01 Thread James Courtney
I'm pretty regularly seeing the following error in my embedded Tomcat (5.0.28) connector. It appears to occur as a result of one thread entering the ResourceCache.lookup(String name) method and getting the index of an element in the cache using the find method. Before this thread can access the e

Re: ArrayIndexOutOfBoundsException in ResourceCache.java

2006-08-01 Thread Filip Hanik - Dev Lists
if you are running it embedded, what threads are causing the race condition, if it is one of your threads, you can avoid it. otherwise, if you have a test case for us, submit it to bugzilla, and we will be happy to consider it for the next 5.0.x release Filip James Courtney wrote: I'm pretty

DO NOT REPLY [Bug 40155] - Context setup for JSPs in 5.5.17

2006-08-01 Thread bugzilla
DO NOT REPLY TO THIS EMAIL, BUT PLEASE POST YOUR BUG· RELATED COMMENTS THROUGH THE WEB INTERFACE AVAILABLE AT . ANY REPLY MADE TO THIS MESSAGE WILL NOT BE COLLECTED AND· INSERTED IN THE BUG DATABASE. http://issues.apache.org/bugzilla/show_bu

RE: ArrayIndexOutOfBoundsException in ResourceCache.java

2006-08-01 Thread James Courtney
Thanks Filip, I believe the threads causing the condition are the connector threads as we have 200 or so of them configured for handling requests of which most are for static content which apparently comes from the ResourceCache via ProxyDirContext and Mapper. We do not "own" these threads as th

Re: ArrayIndexOutOfBoundsException in ResourceCache.java

2006-08-01 Thread Filip Hanik - Dev Lists
if you can create a test case, great, if not, a patch would be nice with your bug submission. I believe you meant version 5.0.28, not 4.xx.x. Filip James Courtney wrote: Thanks Filip, I believe the threads causing the condition are the connector threads as we have 200 or so of them configure

Re: ArrayIndexOutOfBoundsException in ResourceCache.java

2006-08-01 Thread Remy Maucherat
James Courtney wrote: /* new code */ CacheEntry cacheEntry = null; CacheEntry[] currentCache = cache; ... int pos = find(currentCache, name); if ((pos != -1) && (name.equals(currentCache[pos].name))) { cacheEntry = currentCache[pos]; } I think I should have coded it that way. Rémy ---

RE: ArrayIndexOutOfBoundsException in ResourceCache.java

2006-08-01 Thread James Courtney
Yep, 5.0.28, sorry:) Jamey -Original Message- From: Filip Hanik - Dev Lists [mailto:[EMAIL PROTECTED] Sent: Tuesday, August 01, 2006 4:48 PM To: Tomcat Developers List Subject: Re: ArrayIndexOutOfBoundsException in ResourceCache.java if you can create a test case, great, if not, a pat

RE: ArrayIndexOutOfBoundsException in ResourceCache.java

2006-08-01 Thread James Courtney
You coded the modification methods that way but the read method (lookup) is not. I'll take a few minutes to try and create a test case but my other work will prevent me spending too much time on it. I'll certainly submit a patch with the bug. Thanks to all! Jamey -Original Message

svn commit: r427821 - /tomcat/tc6.0.x/trunk/java/org/apache/naming/resources/ResourceCache.java

2006-08-01 Thread remm
Author: remm Date: Tue Aug 1 17:39:28 2006 New Revision: 427821 URL: http://svn.apache.org/viewvc?rev=427821&view=rev Log: - Use a single reference to the cache during lookup (the cache array could be concurrently replaced). Modified: tomcat/tc6.0.x/trunk/java/org/apache/naming/resources/Re

svn commit: r427861 - in /tomcat/container/branches/tc4.1.x: catalina/src/conf/server.xml resources/confinstall/server_1.xml resources/confinstall/server_2.xml

2006-08-01 Thread markt
Author: markt Date: Tue Aug 1 19:45:23 2006 New Revision: 427861 URL: http://svn.apache.org/viewvc?rev=427861&view=rev Log: Align standard server.xml with one created by the Windows installer Modified: tomcat/container/branches/tc4.1.x/catalina/src/conf/server.xml tomcat/container/branch

DO NOT REPLY [Bug 40160] New: - Webdav Context path must be /*

2006-08-01 Thread bugzilla
DO NOT REPLY TO THIS EMAIL, BUT PLEASE POST YOUR BUG· RELATED COMMENTS THROUGH THE WEB INTERFACE AVAILABLE AT . ANY REPLY MADE TO THIS MESSAGE WILL NOT BE COLLECTED AND· INSERTED IN THE BUG DATABASE. http://issues.apache.org/bugzilla/show_bu

RE: svn commit: r427821 - /tomcat/tc6.0.x/trunk/java/org/apache/naming/resources/ResourceCache.java

2006-08-01 Thread James Courtney
Fantastic, thanks Remy! Do you guys still want a bug filed for that? Jamey -Original Message- From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] Sent: Tuesday, August 01, 2006 5:39 PM To: tomcat-dev@jakarta.apache.org Subject: svn commit: r427821 - /tomcat/tc6.0.x/trunk/java/org/apache

RE: svn commit: r427821 - /tomcat/tc6.0.x/trunk/java/org/apache/naming/resources/ResourceCache.java

2006-08-01 Thread James Courtney
BTW, is my increasing cacheMaxSize on the Context a sensible workaround until this code is released? Thanks! Jamey -Original Message- From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] Sent: Tuesday, August 01, 2006 5:39 PM To: tomcat-dev@jakarta.apache.org Subject: svn commit: r427821