RE: SSLCertificateKeyFile directive question

2015-04-13 Thread John Beaulaurier -X (jbeaulau - ADVANCED NETWORK INFORMATION INC at Cisco)
Christopher, thank you for the information. Yes, I'm trying to configure LDAPS for connection to Active Directory. Does the SSL connector need to be configured for LDAPS, or just create the JNDI realm? -John -Original Message- From: Christopher Schultz

Re: Performance question...

2015-04-13 Thread PerfGuru
Sorry Jeff my Tocat emails are bouncing from the email address use so using another one that works. Last Friday the development team tried the spring framework fix  sugested and it fixed the problem of higher than normal cpu and performance. We did try the other idea of increasing the code

Re: Removing ThreadLocal variables

2015-04-13 Thread Christopher Schultz
-BEGIN PGP SIGNED MESSAGE- Hash: SHA256 Leo, [re: Removing ThreadLocal variables] Uh, oh. On 4/13/15 10:50 AM, Leo Donahue wrote: Tomcat 7.0.61 Java 1.7.0_75 Scenario: Class1 static Type ThreadLocal variable static Type getThreadLocal(){...} static Type setThreadLocal(){...}

Re: Removing ThreadLocal variables

2015-04-13 Thread Leo Donahue
On Mon, Apr 13, 2015 at 5:25 PM, Christopher Schultz ch...@christopherschultz.net wrote: -BEGIN PGP SIGNED MESSAGE- Hash: SHA256 Leo, The good news is that you are thinking about this in the correct way: that requests are handled by (usually) one thread and you have to clean the

Re: SSLCertificateKeyFile directive question

2015-04-13 Thread Christopher Schultz
-BEGIN PGP SIGNED MESSAGE- Hash: SHA256 John, On 4/13/15 3:15 PM, John Beaulaurier -X (jbeaulau - ADVANCED NETWORK INFORMATION INC at Cisco) wrote: Christopher, thank you for the information. Yes, I'm trying to configure LDAPS for connection to Active Directory. Does the SSL

Re: FarmWarDeployer via tomcat web manager

2015-04-13 Thread Keiichi Fujino
2015-04-13 18:42 GMT+09:00 kimmo.sundg...@heeros.com: Hi I newbie on the Tomcat. I have HA architecture including Cisco ACE Loadbalancer, 3 servers with RHEL 7 + httpd 2.4 + mod_proxy AJP+ Tomcat 8.0.18. I have problem with FarmWarDeployer. I would like to use FarmWarDeployer via Tomcat

RE: FarmWarDeployer via tomcat web manager

2015-04-13 Thread Caldarale, Charles R
From: Keiichi Fujino [mailto:kfuj...@apache.org] Subject: Re: FarmWarDeployer via tomcat web manager I changed war-listen path to webapps, and everything works fine untils I restart my Tomcat 1 (master node). After restarting tomcat my war file goes empty in webapps folder. ( file size

Re: Removing ThreadLocal variables

2015-04-13 Thread Konstantin Kolinko
2015-04-14 2:28 GMT+03:00 Leo Donahue donahu...@gmail.com: On Mon, Apr 13, 2015 at 5:25 PM, Christopher Schultz ch...@christopherschultz.net wrote: The good news is that you are thinking about this in the correct way: that requests are handled by (usually) one thread and you have to clean

Re: Removing ThreadLocal variables

2015-04-13 Thread Leo Donahue
On Mon, Apr 13, 2015 at 6:57 PM, Konstantin Kolinko knst.koli...@gmail.com wrote: 2015-04-14 2:28 GMT+03:00 Leo Donahue donahu...@gmail.com: I think I prefer the Listener approach better. Filters are better. With Filter there is a guarantee that finally block is executed in the same

RE: FarmWarDeployer via tomcat web manager

2015-04-13 Thread Kimmo . Sundgren
Caldarale, Charles R chuck.caldar...@unisys.com wrote on 14.04.2015 06:06:37: From: Caldarale, Charles R chuck.caldar...@unisys.com To: Tomcat Users List users@tomcat.apache.org Date: 14.04.2015 06:07 Subject: RE: FarmWarDeployer via tomcat web manager From: Keiichi Fujino

FarmWarDeployer via tomcat web manager

2015-04-13 Thread Kimmo . Sundgren
Hi I newbie on the Tomcat. I have HA architecture including Cisco ACE Loadbalancer, 3 servers with RHEL 7 + httpd 2.4 + mod_proxy AJP+ Tomcat 8.0.18. I have problem with FarmWarDeployer. I would like to use FarmWarDeployer via Tomcat Web Manager. Is this possible? I changed war-listen

Fwd: Web socket connection getting dropped

2015-04-13 Thread Ganesh Bms
Hi folks, I am facing an issue with tomcat's proprietary web socket API. I have implemented web socket server application using tomcat's proprietary APIs. The web socket connections are getting dropped after 2-3 hours of idle. The tomcat is not even notifying my app about this disconnection. The

Removing ThreadLocal variables

2015-04-13 Thread Leo Donahue
Tomcat 7.0.61 Java 1.7.0_75 Scenario: Class1 static Type ThreadLocal variable static Type getThreadLocal(){...} static Type setThreadLocal(){...} static void destroy(){variable.remove} Class2 static Type ThreadLocal variable static Type getThreadLocal(){...} static Type