Re: Special requirements on session id generator

2014-02-14 Thread Filip Hanik
regardless of the use case, a debate whether to make something pluggable or extensible c(sh)ould be short. adding pluggability/extensibility that doesn't change default behavior can actually leave the exact use case out of the question. On Friday, February 14, 2014, Konstantin Preißer wrote: > H

RE: Special requirements on session id generator

2014-02-14 Thread Konstantin Preißer
Hi Rainer, > -Original Message- > From: Rainer Jung [mailto:rainer.j...@kippdata.de] > Sent: Friday, February 14, 2014 11:07 PM > To: Tomcat Developers List > Subject: Re: Special requirements on session id generator > > On 14.02.2014 19:14, Konstantin Preißer wrote: > >> Fortunately I do

Re: Special requirements on session id generator

2014-02-14 Thread Rainer Jung
On 14.02.2014 19:14, Konstantin Preißer wrote: >> Fortunately I don't have to prevent any long term collisions, just >> reduce the rate without increasing session id length. Therefore I prefer >> not to keep state for a long time including tomcat restarts, or do >> remote (database) calls to check

RE: Special requirements on session id generator

2014-02-14 Thread Konstantin Preißer
Hi Rainer, > -Original Message- > From: Rainer Jung [mailto:rainer.j...@kippdata.de] > Sent: Friday, February 14, 2014 5:57 PM > Nice article. > > The table in the article says for 16 bytes and 50 session ids the > probability of a duplicate is far below 10^-18. Ah, thanks, I didn't

Re: Special requirements on session id generator

2014-02-14 Thread Rainer Jung
On 14.02.2014 18:48, Konstantin Kolinko wrote: > 2014-02-14 19:31 GMT+04:00 Rainer Jung : >> On 14.02.2014 14:27, Mark Thomas wrote: >>> On 14/02/2014 13:15, Rainer Jung wrote: I ran into a special requirement for the session id generator (uniqueness of session id for a longer time interv

Re: Special requirements on session id generator

2014-02-14 Thread Konstantin Kolinko
2014-02-14 19:31 GMT+04:00 Rainer Jung : > On 14.02.2014 14:27, Mark Thomas wrote: >> On 14/02/2014 13:15, Rainer Jung wrote: >>> I ran into a special requirement for the session id generator >>> (uniqueness of session id for a longer time interval). While I think >>> that the requirement needed is

Re: [VOTE] Release Apache Tomcat 7.0.52

2014-02-14 Thread Konstantin Kolinko
2014-02-13 12:17 GMT+04:00 Violeta Georgieva : > The proposed Apache Tomcat 7.0.52 release is now available for voting. > > It can be obtained from: > https://dist.apache.org/repos/dist/dev/tomcat/tomcat-7/v7.0.52/ > The Maven staging repo is: > https://repository.apache.org/content/repositories/or

Re: Special requirements on session id generator

2014-02-14 Thread Mark Thomas
On 14/02/2014 16:57, Rainer Jung wrote: > Fortunately I don't have to prevent any long term collisions, just > reduce the rate without increasing session id length. Therefore I prefer > not to keep state for a long time including tomcat restarts, or do > remote (database) calls to check ids whenev

Re: Special requirements on session id generator

2014-02-14 Thread Rainer Jung
Hi Konstantin, On 14.02.2014 17:19, Konstantin Preißer wrote: > Hi Rainer & Mark, > >> -Original Message- >> From: Rainer Jung [mailto:rainer.j...@kippdata.de] >> Sent: Friday, February 14, 2014 4:32 PM >> To: Tomcat Developers List >> Subject: Re: Special requirements on session id gener

svn commit: r1568348 - in /tomcat/tc7.0.x/trunk: BUILDING.txt build.xml

2014-02-14 Thread kkolinko
Author: kkolinko Date: Fri Feb 14 16:50:00 2014 New Revision: 1568348 URL: http://svn.apache.org/r1568348 Log: Correct a typo and add a note that the tests are run with Java 7. Modified: tomcat/tc7.0.x/trunk/BUILDING.txt tomcat/tc7.0.x/trunk/build.xml Modified: tomcat/tc7.0.x/trunk/BUILD

RE: Special requirements on session id generator

2014-02-14 Thread Konstantin Preißer
Hi Rainer & Mark, > -Original Message- > From: Rainer Jung [mailto:rainer.j...@kippdata.de] > Sent: Friday, February 14, 2014 4:32 PM > To: Tomcat Developers List > Subject: Re: Special requirements on session id generator > > On 14.02.2014 14:27, Mark Thomas wrote: > > On 14/02/2014 13:1

[Bug 56139] New: "SeedGenerator Thread" warnings when running tests on Windows

2014-02-14 Thread bugzilla
https://issues.apache.org/bugzilla/show_bug.cgi?id=56139 Bug ID: 56139 Summary: "SeedGenerator Thread" warnings when running tests on Windows Product: Tomcat 8 Version: 8.0.3 Hardware: PC Status: NEW S

Re: Special requirements on session id generator

2014-02-14 Thread Rainer Jung
On 14.02.2014 14:27, Mark Thomas wrote: > On 14/02/2014 13:15, Rainer Jung wrote: >> I ran into a special requirement for the session id generator >> (uniqueness of session id for a longer time interval). While I think >> that the requirement needed isn't a useful general purpose extension, I >> st

svn commit: r1568315 - /tomcat/trunk/build.properties.default

2014-02-14 Thread markt
Author: markt Date: Fri Feb 14 14:20:07 2014 New Revision: 1568315 URL: http://svn.apache.org/r1568315 Log: Keep pace with DBCP 2 Modified: tomcat/trunk/build.properties.default Modified: tomcat/trunk/build.properties.default URL: http://svn.apache.org/viewvc/tomcat/trunk/build.properties.d

Re: Special requirements on session id generator

2014-02-14 Thread Romain Manni-Bucau
@Mark my use case was easier to understand maybe: we just needed to control and make not readable jvmroutes in urls Romain Manni-Bucau Twitter: @rmannibucau Blog: http://rmannibucau.wordpress.com/ LinkedIn: http://fr.linkedin.com/in/rmannibucau Github: https://github.com/rmannibucau 2014-02-14 1

Re: Special requirements on session id generator

2014-02-14 Thread Mark Thomas
On 14/02/2014 13:15, Rainer Jung wrote: > I ran into a special requirement for the session id generator > (uniqueness of session id for a longer time interval). While I think > that the requirement needed isn't a useful general purpose extension, I > stumbled over the fact, that the SessionIdGenera

Re: Special requirements on session id generator

2014-02-14 Thread Romain Manni-Bucau
Hi FYI I had the same need in my previous company and needed to extends multiple things to be able to extend the generate method. WOuld be great to have an interface just with nextId(jvmroute) method or something like that Romain Manni-Bucau Twitter: @rmannibucau Blog: http://rmannibucau.wordpress

Special requirements on session id generator

2014-02-14 Thread Rainer Jung
I ran into a special requirement for the session id generator (uniqueness of session id for a longer time interval). While I think that the requirement needed isn't a useful general purpose extension, I stumbled over the fact, that the SessionIdGenerator class is not pluggable. Would it make sense

Re: [VOTE] Release Apache Tomcat 7.0.52

2014-02-14 Thread Jeanfrancois Arcand
On 2/13/2014, 3:17 AM, Violeta Georgieva wrote: The proposed Apache Tomcat 7.0.52 release is now available for voting. It can be obtained from: https://dist.apache.org/repos/dist/dev/tomcat/tomcat-7/v7.0.52/ The Maven staging repo is: https://repository.apache.org/content/repositories/orgapache

[Bug 56137] New: Change HTTPS connector example (protocol attribute) from "HTTP/1.1" to Http11NioProtocol

2014-02-14 Thread bugzilla
https://issues.apache.org/bugzilla/show_bug.cgi?id=56137 Bug ID: 56137 Summary: Change HTTPS connector example (protocol attribute) from "HTTP/1.1" to Http11NioProtocol Product: Tomcat 8 Version: trunk Hardware: All

Re: [VOTE] Release Apache Tomcat 7.0.52

2014-02-14 Thread Keiichi Fujino
2014-02-13 17:17 GMT+09:00 Violeta Georgieva : > The proposed Apache Tomcat 7.0.52 release is now available for voting. > > It can be obtained from: > https://dist.apache.org/repos/dist/dev/tomcat/tomcat-7/v7.0.52/ > The Maven staging repo is: > https://repository.apache.org/content/repositories/o