Re: tomcat 8.5.23 dbcp not honoring autocommit = false?

2017-10-17 Thread Keiichi Fujino
Hi You have set factory="org.apache.tomcat.jdbc.pool.DataSourceFactory". In other words, you do not use (tomcat)DBCP, you are using Tomcat jdbc-pool. In DBCP, the default of rollbackOnReturn attribute is true. However, in Tomcat jdbc-pool, the default of rollbackOnReturn( and commitOnReturn ) att

Re: Consecutive double slashes in URLs

2017-10-17 Thread Mark Thomas
On 16/10/17 21:50, Maor Shiffman wrote: > Hi, > > We've recently upgraded our servers from 8.0.43 to 8.0.45 and URLs with > consecutive double slashes that used to work such as > http://www.domain.com/auth//signin.html stopped working - getting a 404. > This happens on our production environment r

Re: Missing 0-length chunk to mark the end of a response

2017-10-17 Thread Mark Thomas
On 16/10/17 23:08, john.e.gr...@wellsfargo.com.INVALID wrote: > All, > > Hopefully I can explain this clearly... > > The short question is that my client is sometimes not getting the 0-length > chunk at the end of the response from Tomcat, so my connections don't get > reused. > > My Tomcat se

Re: Consecutive double slashes in URLs

2017-10-17 Thread Igal @ Lucee.org
Maor, On 10/17/2017 6:32 AM, Mark Thomas wrote: On 16/10/17 21:50, Maor Shiffman wrote: Hi, We've recently upgraded our servers from 8.0.43 to 8.0.45 and URLs with consecutive double slashes that used to work such as http://www.domain.com/auth//signin.html stopped working - getting a 404. This

Re: Consecutive double slashes in URLs

2017-10-17 Thread Maor Shiffman
On Tue, Oct 17, 2017 at 5:27 PM, Igal @ Lucee.org wrote: > Maor, > > On 10/17/2017 6:32 AM, Mark Thomas wrote: > >> On 16/10/17 21:50, Maor Shiffman wrote: >> >>> Hi, >>> >>> We've recently upgraded our servers from 8.0.43 to 8.0.45 and URLs with >>> consecutive double slashes that used to work s

Re: Re: Response change between 8.5.x and 8.0.x (and earlier versions) W.R.T. Line separator CRLF vs. LF

2017-10-17 Thread Adam Rauch
On 10/16/2017 1:27 PM, Net Dawg wrote: Profuse apologies.  We are unable reproduce this.  However out tests were failing for another reason. 8.5.23 returns 400 error with header "HTTP/1.1 400" where as version 8.0.47 returns the same as "HTTP/1.1 400 Bad Request".  When the tests check for th

Re: Consecutive double slashes in URLs

2017-10-17 Thread Mark Thomas
On 17/10/17 15:32, Maor Shiffman wrote: > ​No, we are using Apache web server in our production environment, but this > issue also reproduces in our dev environment which doesn't use a web server. > I have further isolated the issue to be in 8.0.45. > Could this be related to the fix of > https://

Re: tomcat 8.5.23 dbcp not honoring autocommit = false?

2017-10-17 Thread Chris Cheshire
On Tue, Oct 17, 2017 at 3:44 AM, Keiichi Fujino wrote: > Hi > > You have set factory="org.apache.tomcat.jdbc.pool.DataSourceFactory". > In other words, you do not use (tomcat)DBCP, you are using Tomcat jdbc-pool. That's what I meant sorry. Was comparing to commons-dbcp and went dyslexic on the ac