Re: svn commit: r1655982 - in /tomcat/tc7.0.x/trunk: ./ java/org/apache/naming/factory/BeanFactory.java webapps/docs/changelog.xml webapps/docs/jndi-resources-howto.xml

2015-01-30 Thread Rainer Jung
Hi Konstantin, Am 30.01.2015 um 14:48 schrieb Konstantin Kolinko: 2015-01-30 13:51 GMT+03:00 rj...@apache.org: Author: rjung Date: Fri Jan 30 10:51:01 2015 New Revision: 1655982 URL: http://svn.apache.org/r1655982 Log: Enhance our naming BeanFactory. If a bean property exists which the

Re: [VOTE] Release Apache Tomcat 7.0.59

2015-01-30 Thread Christopher Schultz
Violetta, On 1/28/15 2:35 PM, Violeta Georgieva wrote: The proposed Apache Tomcat 7.0.59 release is now available for voting. It can be obtained from: https://dist.apache.org/repos/dist/dev/tomcat/tomcat-7/v7.0.59/ The Maven staging repo is:

svn commit: r1656068 - /tomcat/trunk/java/org/apache/tomcat/websocket/WsRemoteEndpointImplBase.java

2015-01-30 Thread markt
Author: markt Date: Fri Jan 30 17:41:11 2015 New Revision: 1656068 URL: http://svn.apache.org/r1656068 Log: Fix typo Modified: tomcat/trunk/java/org/apache/tomcat/websocket/WsRemoteEndpointImplBase.java Modified: tomcat/trunk/java/org/apache/tomcat/websocket/WsRemoteEndpointImplBase.java

WebSocket refactoring progress report

2015-01-30 Thread Mark Thomas
I've made start on refactoring the WebSocket implementation to go directly to the SocketWrapper - bypassing the Servlet[Input|Output]Streams. [1] This is very much a work in progress. Currently, all bar one of the WebSocket unit tests pass although some tests seem to be taking longer as they

svn commit: r1656087 - /tomcat/trunk/java/org/apache/catalina/webresources/DirResourceSet.java

2015-01-30 Thread fschumacher
Author: fschumacher Date: Fri Jan 30 18:42:27 2015 New Revision: 1656087 URL: http://svn.apache.org/r1656087 Log: Remove useless double assignment. Modified: tomcat/trunk/java/org/apache/catalina/webresources/DirResourceSet.java Modified:

svn commit: r1656077 - in /tomcat/trunk/test/org/apache/tomcat/websocket: TestConnectionLimit.java TesterConnectionLimit.java

2015-01-30 Thread markt
Author: markt Date: Fri Jan 30 18:01:59 2015 New Revision: 1656077 URL: http://svn.apache.org/r1656077 Log: Refactor to make it easier to run unit tests in IDEs without running this test. Added: tomcat/trunk/test/org/apache/tomcat/websocket/TestConnectionLimit.java (contents, props

svn commit: r1656089 - in /tomcat/tc8.0.x/trunk: ./ java/org/apache/catalina/webresources/DirResourceSet.java

2015-01-30 Thread fschumacher
Author: fschumacher Date: Fri Jan 30 18:44:07 2015 New Revision: 1656089 URL: http://svn.apache.org/r1656089 Log: Remove useless double assignment. Merged r1656087 from /tomcat/trunk Modified: tomcat/tc8.0.x/trunk/ (props changed)

svn commit: r1656022 - /tomcat/trunk/java/org/apache/tomcat/util/net/SSLImplementation.java

2015-01-30 Thread markt
Author: markt Date: Fri Jan 30 14:23:00 2015 New Revision: 1656022 URL: http://svn.apache.org/r1656022 Log: Clean-up Modified: tomcat/trunk/java/org/apache/tomcat/util/net/SSLImplementation.java Modified: tomcat/trunk/java/org/apache/tomcat/util/net/SSLImplementation.java URL:

svn commit: r1656021 - in /tomcat/trunk/java/org/apache/coyote/http11: AbstractHttp11Protocol.java Http11AprProtocol.java Http11Nio2Protocol.java Http11NioProtocol.java

2015-01-30 Thread markt
Author: markt Date: Fri Jan 30 14:22:56 2015 New Revision: 1656021 URL: http://svn.apache.org/r1656021 Log: Pull up common Http11ConnectionHandler methods. Modified: tomcat/trunk/java/org/apache/coyote/http11/AbstractHttp11Protocol.java

svn commit: r1656025 - in /tomcat/trunk/java/org/apache: coyote/ajp/ coyote/http11/ coyote/spdy/ tomcat/util/net/

2015-01-30 Thread markt
Author: markt Date: Fri Jan 30 14:23:14 2015 New Revision: 1656025 URL: http://svn.apache.org/r1656025 Log: Remove NO-OP method implementation and hooks that were calling it. Modified: tomcat/trunk/java/org/apache/coyote/ajp/AjpNio2Protocol.java

svn commit: r1656023 - in /tomcat/trunk/java/org/apache: coyote/ coyote/ajp/ coyote/http11/ coyote/spdy/ tomcat/util/net/

2015-01-30 Thread markt
Author: markt Date: Fri Jan 30 14:23:08 2015 New Revision: 1656023 URL: http://svn.apache.org/r1656023 Log: Move creation of SSLSupport instances to the SocketWrapper Modified: tomcat/trunk/java/org/apache/coyote/AbstractProtocol.java tomcat/trunk/java/org/apache/coyote/Processor.java

svn commit: r1656020 - in /tomcat/trunk/java/org/apache/coyote/http11: AbstractHttp11Protocol.java Http11AprProtocol.java Http11Nio2Protocol.java Http11NioProtocol.java

2015-01-30 Thread markt
Author: markt Date: Fri Jan 30 14:22:51 2015 New Revision: 1656020 URL: http://svn.apache.org/r1656020 Log: Insert an AbstractHttp11ConnectionHandler to mirror AJP and facilitate pulling up code common to all HTTP handlers. Modified:

Re: [VOTE] Release Apache Tomcat 7.0.59

2015-01-30 Thread Rémy Maucherat
2015-01-28 20:35 GMT+01:00 Violeta Georgieva violet...@apache.org: The proposed 7.0.59 release is: [ ] Broken - do not release [X] Stable - go ahead and release as 7.0.59 Stable Rémy

svn commit: r1655973 - /tomcat/trunk/java/org/apache/coyote/http11/

2015-01-30 Thread markt
Author: markt Date: Fri Jan 30 09:46:27 2015 New Revision: 1655973 URL: http://svn.apache.org/r1655973 Log: No longer require per I/O implementation Processor implementations for HTTP Added: tomcat/trunk/java/org/apache/coyote/http11/Http11Processor.java - copied, changed from

svn commit: r1655972 - in /tomcat/trunk/java/org/apache: coyote/http11/ tomcat/util/net/ tomcat/util/net/jsse/

2015-01-30 Thread markt
Author: markt Date: Fri Jan 30 09:36:10 2015 New Revision: 1655972 URL: http://svn.apache.org/r1655972 Log: Push the remaining action down to the SocketWrapper Modified: tomcat/trunk/java/org/apache/coyote/http11/AbstractHttp11Processor.java

svn commit: r1655977 - in /tomcat/trunk/java/org/apache/coyote/http11: AbstractHttp11Protocol.java Http11AprProtocol.java

2015-01-30 Thread markt
Author: markt Date: Fri Jan 30 10:26:51 2015 New Revision: 1655977 URL: http://svn.apache.org/r1655977 Log: While NIO and NIO2 don't use this it can be set generally which will allow for some simplification. Modified: tomcat/trunk/java/org/apache/coyote/http11/AbstractHttp11Protocol.java

svn commit: r1655976 - in /tomcat/trunk/java/org/apache: coyote/ coyote/ajp/ coyote/http11/ coyote/http11/upgrade/ coyote/spdy/ tomcat/util/net/

2015-01-30 Thread markt
Author: markt Date: Fri Jan 30 10:24:10 2015 New Revision: 1655976 URL: http://svn.apache.org/r1655976 Log: Remove generics from Processor. This removes I/O implementation specific code from several places in the Protocol implementations and will allow those methods to be pulled up. This commit

svn commit: r1655968 - in /tomcat/trunk/java/org/apache/tomcat/util/net: SSLSupport.java jsse/JSSESupport.java

2015-01-30 Thread markt
Author: markt Date: Fri Jan 30 09:09:10 2015 New Revision: 1655968 URL: http://svn.apache.org/r1655968 Log: Javadoc fixes. Modified: tomcat/trunk/java/org/apache/tomcat/util/net/SSLSupport.java tomcat/trunk/java/org/apache/tomcat/util/net/jsse/JSSESupport.java Modified:

svn commit: r1655961 - /tomcat/trunk/java/org/apache/coyote/AbstractProcessor.java

2015-01-30 Thread markt
Author: markt Date: Fri Jan 30 08:48:03 2015 New Revision: 1655961 URL: http://svn.apache.org/r1655961 Log: Fix warning Modified: tomcat/trunk/java/org/apache/coyote/AbstractProcessor.java Modified: tomcat/trunk/java/org/apache/coyote/AbstractProcessor.java URL:

svn commit: r1655982 - in /tomcat/tc7.0.x/trunk: ./ java/org/apache/naming/factory/BeanFactory.java webapps/docs/changelog.xml webapps/docs/jndi-resources-howto.xml

2015-01-30 Thread rjung
Author: rjung Date: Fri Jan 30 10:51:01 2015 New Revision: 1655982 URL: http://svn.apache.org/r1655982 Log: Enhance our naming BeanFactory. If a bean property exists which the Introspector presents us with a type that we don't have a string conversion for, but the bean actually has a method to

svn commit: r1656005 - /tomcat/tc7.0.x/trunk/test/org/apache/catalina/ha/context/TestReplicatedContext.java

2015-01-30 Thread kkolinko
Author: kkolinko Date: Fri Jan 30 13:07:38 2015 New Revision: 1656005 URL: http://svn.apache.org/r1656005 Log: svn:eol-style=native Modified: tomcat/tc7.0.x/trunk/test/org/apache/catalina/ha/context/TestReplicatedContext.java (props changed) Propchange:

svn commit: r1656007 - /tomcat/tc8.0.x/trunk/test/org/apache/catalina/ha/context/TestReplicatedContext.java

2015-01-30 Thread kkolinko
Author: kkolinko Date: Fri Jan 30 13:09:55 2015 New Revision: 1656007 URL: http://svn.apache.org/r1656007 Log: svn:eol-style=native Modified: tomcat/tc8.0.x/trunk/test/org/apache/catalina/ha/context/TestReplicatedContext.java (props changed) Propchange:

svn commit: r1656013 - in /tomcat/tc7.0.x/trunk: ./ test/org/apache/catalina/startup/TomcatBaseTest.java webapps/docs/changelog.xml

2015-01-30 Thread kkolinko
Author: kkolinko Date: Fri Jan 30 13:35:08 2015 New Revision: 1656013 URL: http://svn.apache.org/r1656013 Log: Fix TestAbstractAjpProcessor test failures on Windows. Typical failure (testing 7.0.59 RC): [[[ Testcase: testServerPort took 0,288 sec FAILED Request info REQUEST-SERVER-PORT

Re: svn commit: r1655982 - in /tomcat/tc7.0.x/trunk: ./ java/org/apache/naming/factory/BeanFactory.java webapps/docs/changelog.xml webapps/docs/jndi-resources-howto.xml

2015-01-30 Thread Konstantin Kolinko
2015-01-30 13:51 GMT+03:00 rj...@apache.org: Author: rjung Date: Fri Jan 30 10:51:01 2015 New Revision: 1655982 URL: http://svn.apache.org/r1655982 Log: Enhance our naming BeanFactory. If a bean property exists which the Introspector presents us with a type that we don't have a string