svn commit: r1462416 - in /tomcat/trunk/webapps/docs: cluster-howto.xml config/cluster-listener.xml

2013-03-28 Thread kfujino
Author: kfujino Date: Fri Mar 29 06:24:50 2013 New Revision: 1462416 URL: http://svn.apache.org/r1462416 Log: Followup to r1462408. fix docs. Modified: tomcat/trunk/webapps/docs/cluster-howto.xml tomcat/trunk/webapps/docs/config/cluster-listener.xml Modified: tomcat/trunk/webapps/docs/cl

svn commit: r1462408 - in /tomcat/trunk/java/org/apache/catalina/ha/session: JvmRouteSessionIDBinderListener.java SessionIDMessage.java mbeans-descriptors.xml

2013-03-28 Thread kfujino
Author: kfujino Date: Fri Mar 29 05:47:40 2013 New Revision: 1462408 URL: http://svn.apache.org/r1462408 Log: Remove unused class. JvmRouteSessionIDBinderListener and SessionIDMessage are no longer used. Removed: tomcat/trunk/java/org/apache/catalina/ha/session/JvmRouteSessionIDBinderListene

[Bug 54747] Cluster not work due to registerManager failed

2013-03-28 Thread bugzilla
https://issues.apache.org/bugzilla/show_bug.cgi?id=54747 --- Comment #9 from vincentj...@potix.com --- Created attachment 30116 --> https://issues.apache.org/bugzilla/attachment.cgi?id=30116&action=edit Test war Add the war file I test on Tomcat 7.0.16 and 7.0.37. -- You are receiving this ma

[Bug 54747] Cluster not work due to registerManager failed

2013-03-28 Thread bugzilla
https://issues.apache.org/bugzilla/show_bug.cgi?id=54747 --- Comment #8 from vincentj...@potix.com --- (In reply to comment #7) > (In reply to comment #4) > > Yes, I have the tag in web.xml > > - What version of specification is your web.xml marked with? Version number is 3.0 > > - Do you hav

[Bug 54765] fg

2013-03-28 Thread bugzilla
https://issues.apache.org/bugzilla/show_bug.cgi?id=54765 Chuck Caldarale changed: What|Removed |Added Status|NEW |RESOLVED Resolution|---

[Bug 54765] New: fg

2013-03-28 Thread bugzilla
https://issues.apache.org/bugzilla/show_bug.cgi?id=54765 Bug ID: 54765 Summary: fg Product: Tomcat 6 Version: unspecified Hardware: PC Status: NEW Severity: normal Priority: P2 Component: Connectors

Re: JarScanning

2013-03-28 Thread Nick Williams
On Feb 26, 2013, at 11:21 AM, Christopher Schultz wrote: > Mark, > > On 2/21/13 8:34 AM, Mark Thomas wrote: >> JRE JARs. >> I think scanning of these should be made optional and disabled by >> default. This will reduce the list of JARs we have to maintain in >> jarsToSkip. I intend to implement

[Bug 54747] Cluster not work due to registerManager failed

2013-03-28 Thread bugzilla
https://issues.apache.org/bugzilla/show_bug.cgi?id=54747 --- Comment #7 from Konstantin Kolinko --- (In reply to comment #4) > Yes, I have the tag in web.xml - What version of specification is your web.xml marked with? - Do you have metadata-complete="true" in your web.xml? Note that distribu

[Bug 53952] Add support for TLS 1.1 and 1.2

2013-03-28 Thread bugzilla
https://issues.apache.org/bugzilla/show_bug.cgi?id=53952 --- Comment #16 from Marcel Šebek --- Oops, there seems to be a problem with OpenSSL 0.9.8. Previously, I've tested 1.0.1e and that worked, but the older version seems to have problems with default protocol set. I currently have no time to

[Bug 53952] Add support for TLS 1.1 and 1.2

2013-03-28 Thread bugzilla
https://issues.apache.org/bugzilla/show_bug.cgi?id=53952 --- Comment #15 from Marcel Šebek --- Created attachment 30112 --> https://issues.apache.org/bugzilla/attachment.cgi?id=30112&action=edit Patch for jboss-web Just for the reference, here is the patch for jboss-web that I've tested. --

[Bug 53952] Add support for TLS 1.1 and 1.2

2013-03-28 Thread bugzilla
https://issues.apache.org/bugzilla/show_bug.cgi?id=53952 Marcel Šebek changed: What|Removed |Added Attachment #29457|0 |1 is obsolete|

[Bug 53952] Add support for TLS 1.1 and 1.2

2013-03-28 Thread bugzilla
https://issues.apache.org/bugzilla/show_bug.cgi?id=53952 Marcel Šebek changed: What|Removed |Added Attachment #29458|0 |1 is obsolete|

[Bug 54757] Deploy ROOT webapp

2013-03-28 Thread bugzilla
https://issues.apache.org/bugzilla/show_bug.cgi?id=54757 Christopher Schultz changed: What|Removed |Added Resolution|FIXED |INVALID -- You are receivin

Tomcat JDBC Connection Pool - Deadlock

2013-03-28 Thread amit shah
Hello, I am using the tomcat jdbc connection pool independently in my web application which is deployed on glassfish web server. While performing a database operation, our application goes into a deadlock state. The two threads involved in the deadlock have the below traces (from a thread

[Bug 54747] Cluster not work due to registerManager failed

2013-03-28 Thread bugzilla
https://issues.apache.org/bugzilla/show_bug.cgi?id=54747 --- Comment #6 from vincentj...@potix.com --- (In reply to comment #5) > According to the log message above, your /test context is using > org.apache.catalina.session.StandardManager as a session manager. > > In this case, since you have a

Re: Remove JvmRouteSessionIDBinderListener and SessionIDMessage.

2013-03-28 Thread Mark Thomas
Keiichi Fujino wrote: >Hi. > >In the current implementation, JvmRouteBinderValve#changeSessionID >uses Manager#changeSessionId >in order to change session ID. >see r1446072, r1446077, r1461960. > >As a result, The following classes are no longer used. >-JvmRouteSessionIDBinderListener >-SessionID

[Bug 54747] Cluster not work due to registerManager failed

2013-03-28 Thread bugzilla
https://issues.apache.org/bugzilla/show_bug.cgi?id=54747 --- Comment #5 from Keiichi Fujino --- According to the log message above, your /test context is using org.apache.catalina.session.StandardManager as a session manager. In this case, since you have a in web.xml, Maybe has been defined in

Remove JvmRouteSessionIDBinderListener and SessionIDMessage.

2013-03-28 Thread Keiichi Fujino
Hi. In the current implementation, JvmRouteBinderValve#changeSessionID uses Manager#changeSessionId in order to change session ID. see r1446072, r1446077, r1461960. As a result, The following classes are no longer used. -JvmRouteSessionIDBinderListener -SessionIDMessage I'm going to remove these

[Bug 54757] Deploy ROOT webapp

2013-03-28 Thread bugzilla
https://issues.apache.org/bugzilla/show_bug.cgi?id=54757 ranl changed: What|Removed |Added Status|NEW |RESOLVED Resolution|---