DO NOT REPLY [Bug 46571] read timeout while reading response

2009-08-10 Thread bugzilla
https://issues.apache.org/bugzilla/show_bug.cgi?id=46571 --- Comment #7 from Mark Thomas 2009-08-10 08:48:00 BST --- Thanks for testing. The test case looks pretty simple. Someone with access to a Solaris box (not me at present) will take a look. -- Configure bugmail: https://issues.apache.or

... IllegalStateException: Cannot map handler [] to URL path

2009-08-10 Thread or...@l
Hello, I have a Java web application built using Spring + Freemarker + Hibernate + XFire Everything worked fine until today whenafter creating a new page Controller, I built the project -> BUILD SUCCESFULL, but when I start Tomcat i get ... IllegalStateException: Cannot map handler [] to URL

Re: ... IllegalStateException: Cannot map handler [] to URL path

2009-08-10 Thread Mark Thomas
or...@l wrote: > Hello, > > I have a Java web application built using Spring + Freemarker + Hibernate + > XFire > Everything worked fine until today whenafter creating a new page > Controller, I built the project -> BUILD SUCCESFULL, but when I start Tomcat > i get ... IllegalStateException: C

DO NOT REPLY [Bug 47655] NullPointerException in MimeHeaders

2009-08-10 Thread bugzilla
https://issues.apache.org/bugzilla/show_bug.cgi?id=47655 --- Comment #5 from razorfish servicedesk 2009-08-10 02:55:11 PDT --- Thanks for the advice. We will try this option, but it will need to go through our release process, which is slow. It can be released in several weeks from now. -- C

svn commit: r802715 - /tomcat/tc6.0.x/trunk/webapps/docs/changelog.xml

2009-08-10 Thread markt
Author: markt Date: Mon Aug 10 10:09:02 2009 New Revision: 802715 URL: http://svn.apache.org/viewvc?rev=802715&view=rev Log: Typo Modified: tomcat/tc6.0.x/trunk/webapps/docs/changelog.xml Modified: tomcat/tc6.0.x/trunk/webapps/docs/changelog.xml URL: http://svn.apache.org/viewvc/tomcat/tc6.

svn commit: r802719 - /tomcat/trunk/java/org/apache/catalina/util/Enumerator.java

2009-08-10 Thread markt
Author: markt Date: Mon Aug 10 10:14:46 2009 New Revision: 802719 URL: http://svn.apache.org/viewvc?rev=802719&view=rev Log: Typo Modified: tomcat/trunk/java/org/apache/catalina/util/Enumerator.java Modified: tomcat/trunk/java/org/apache/catalina/util/Enumerator.java URL: http://svn.apache.

svn commit: r802727 - in /tomcat/trunk/java/org/apache/catalina/core: ApplicationFilterConfig.java LocalStrings.properties mbeans-descriptors.xml

2009-08-10 Thread markt
Author: markt Date: Mon Aug 10 10:28:16 2009 New Revision: 802727 URL: http://svn.apache.org/viewvc?rev=802727&view=rev Log: Expose filters via JMX. Filter config is now available via JMX in read-only form. Based on a patch provided by Xie Xiaodong as part of GSOC2009. Modified: tomcat/trunk

svn commit: r802729 - /tomcat/trunk/java/org/apache/catalina/mbeans/JmxRemoteLifecycleListener.java

2009-08-10 Thread markt
Author: markt Date: Mon Aug 10 10:34:57 2009 New Revision: 802729 URL: http://svn.apache.org/viewvc?rev=802729&view=rev Log: This todo was fixed Modified: tomcat/trunk/java/org/apache/catalina/mbeans/JmxRemoteLifecycleListener.java Modified: tomcat/trunk/java/org/apache/catalina/mbeans/JmxR

svn commit: r802774 - /tomcat/trunk/webapps/docs/config/listeners.xml

2009-08-10 Thread markt
Author: markt Date: Mon Aug 10 12:57:09 2009 New Revision: 802774 URL: http://svn.apache.org/viewvc?rev=802774&view=rev Log: Improve the JMX remote docs before proposing a backport Modified: tomcat/trunk/webapps/docs/config/listeners.xml Modified: tomcat/trunk/webapps/docs/config/listeners.x

Unlock accept issue

2009-08-10 Thread BALCER, Marcin (Marcin)
Hi I am having problem when shutting down tomcat. Tomcat: 6.0.14. OS: Linux 2.6.16.21-0.8-smp #1 SMP Mon Jul 3 18:25:39 UTC 2006 x86_64 Java: "1.5.0_14" Java(TM) 2 Runtime Environment, Standard Edition (build 1.5.0_14-b03) Java HotSpot(TM) 64-Bit Server VM (build 1.5.0_14-b03, mixed mode) The s

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

2009-08-10 Thread markt
Author: markt Date: Mon Aug 10 13:07:14 2009 New Revision: 802777 URL: http://svn.apache.org/viewvc?rev=802777&view=rev Log: Various JMX proposals 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

Re: Unlock accept issue

2009-08-10 Thread Filip Hanik - Dev Lists
in either case, the "unlocker" thread should have set connect timeout and read timeout in NIO, we do s.connect(saddr,getSocketProperties().getUnlockTimeout()); Marcin, the best way for us to track this is for you to open a bugzilla issue. http://issues.apache.org/bugzilla On 08/10/2009 07:

BIO connector - upload timeout

2009-08-10 Thread Filip Hanik - Dev Lists
Http11Processor.java inputBuffer.parseRequestLine(); request.setStartTime(System.currentTimeMillis()); keptAlive = true; if (disableUploadTimeout) { socket.setSoTimeout(soTimeout); } else { soc

DO NOT REPLY [Bug 47670] New: Unlock accept issue

2009-08-10 Thread bugzilla
https://issues.apache.org/bugzilla/show_bug.cgi?id=47670 Summary: Unlock accept issue Product: Tomcat 6 Version: 6.0.14 Platform: PC OS/Version: Linux Status: NEW Severity: normal Priority: P2 Component: Ca

svn commit: r802882 - in /tomcat/trunk/java/org/apache/catalina/filters: RemoteAddrFilter.java RemoteHostFilter.java RequestFilter.java

2009-08-10 Thread markt
Author: markt Date: Mon Aug 10 18:23:17 2009 New Revision: 802882 URL: http://svn.apache.org/viewvc?rev=802882&view=rev Log: Add filtering of Comet events to the request filters Based on a patch provided by Xie Xiaodong as part of GSOC2009. Modified: tomcat/trunk/java/org/apache/catalina/filt

Re: BIO connector - upload timeout

2009-08-10 Thread Mark Thomas
Filip Hanik - Dev Lists wrote: > Http11Processor.java > > inputBuffer.parseRequestLine(); > request.setStartTime(System.currentTimeMillis()); > keptAlive = true; > if (disableUploadTimeout) { > socket.setSoTimeout(soTimeout); >

Re: BIO connector - upload timeout

2009-08-10 Thread Filip Hanik - Dev Lists
On 08/10/2009 12:46 PM, Mark Thomas wrote: Filip Hanik - Dev Lists wrote: Http11Processor.java inputBuffer.parseRequestLine(); request.setStartTime(System.currentTimeMillis()); keptAlive = true; if (disableUploadTimeout) {

svn commit: r802940 - in /tomcat/trunk/java/org/apache/catalina/startup: ContextConfig.java LocalStrings.properties

2009-08-10 Thread markt
Author: markt Date: Mon Aug 10 22:01:57 2009 New Revision: 802940 URL: http://svn.apache.org/viewvc?rev=802940&view=rev Log: Make error message more meaningful Modified: tomcat/trunk/java/org/apache/catalina/startup/ContextConfig.java tomcat/trunk/java/org/apache/catalina/startup/LocalStr

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

2009-08-10 Thread markt
Author: markt Date: Mon Aug 10 22:04:50 2009 New Revision: 802941 URL: http://svn.apache.org/viewvc?rev=802941&view=rev Log: Proposal 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=802