RE: tomcat http connector

2011-11-23 Thread Asha K S
, where a shared secret key is present in web server and servlet engine do we know if this is still under consideration. Thanks, Asha -Original Message- From: André Warnier [mailto:a...@ice-sa.com] Sent: Wednesday, November 23, 2011 3:19 AM To: Tomcat Users List Subject: Re: tomcat http

Re: tomcat http connector

2011-11-23 Thread André Warnier
:19 AM To: Tomcat Users List Subject: Re: tomcat http connector Christopher Schultz wrote: -BEGIN PGP SIGNED MESSAGE- Hash: SHA1 Asha, On 11/22/11 2:15 AM, Asha K S wrote: Is there any performance comparison document available already between http and AJP It should be easy to test

Re: tomcat http connector

2011-11-23 Thread Christopher Schultz
-BEGIN PGP SIGNED MESSAGE- Hash: SHA1 Asha, On 11/23/11 5:53 AM, Asha K S wrote: Thank you all for helping me in this regard. Can you please point me to documentation which helps me configure https between Apache and Tomcat. Read the documentation for Tomcat Connectors on the Tomcat

Re: tomcat http connector

2011-11-22 Thread Pid *
On 22 Nov 2011, at 07:53, Jan Vávra va...@602.cz wrote: Hello, I use ajp, because on tomcat I make authentication based on client certificate. That you cannot do via http connector. Oh dear. Of course it can. CLIENT_CERT auth is part of the Servlet spec. p Jan. Hi, Is there any

Re: tomcat http connector

2011-11-22 Thread Kursat Tuncel
For 6.x: http://tomcat.apache.org/tomcat-6.0-doc/config/http.html http://tomcat.apache.org/tomcat-6.0-doc/config/ajp.html For 7.x: http://tomcat.apache.org/tomcat-7.0-doc/config/http.html http://tomcat.apache.org/tomcat-7.0-doc/config/ajp.html For production environments, my best practice is

Re: tomcat http connector

2011-11-22 Thread Brooke Hedrick
I use the http connector (actually https) with tcnative and mod_proxy w/ http in Apache Httpd. For my purposes, I wanted https connections between the httpd server and tomcat. I only saw a big performance issue when I wasn't using tcnative libraries. On Nov 22, 2011 2:58 AM, Kursat Tuncel

Re: tomcat http connector

2011-11-22 Thread Shanti Suresh
Hi Asha, Is mod_proxy also an option you are considering? mod_proxy is part of the Apache distribution and does not require compiling any modules separately. Here are my thoughts: Tomcat's built-in HTTP connector can be used for production if your production traffic is light. It is advisable

RE: tomcat http connector

2011-11-22 Thread Caldarale, Charles R
From: Shanti Suresh [mailto:sha...@umich.edu] Subject: Re: tomcat http connector Tomcat's built-in HTTP connector can be used for production if your production traffic is light. It is advisable to front-end Tomcat with Apache. Sorry, that's just BS. Back in the Tomcat 3 or 4 days

Re: tomcat http connector

2011-11-22 Thread Pid
On 22/11/2011 16:21, Caldarale, Charles R wrote: From: Shanti Suresh [mailto:sha...@umich.edu] Subject: Re: tomcat http connector Tomcat's built-in HTTP connector can be used for production if your production traffic is light. It is advisable to front-end Tomcat with Apache. Sorry

Re: tomcat http connector

2011-11-22 Thread André Warnier
Pid wrote: On 22/11/2011 16:21, Caldarale, Charles R wrote: From: Shanti Suresh [mailto:sha...@umich.edu] Subject: Re: tomcat http connector Tomcat's built-in HTTP connector can be used for production if your production traffic is light. It is advisable to front-end Tomcat with Apache

Re: tomcat http connector

2011-11-22 Thread Pid
On 22/11/2011 20:08, André Warnier wrote: Pid wrote: On 22/11/2011 16:21, Caldarale, Charles R wrote: From: Shanti Suresh [mailto:sha...@umich.edu] Subject: Re: tomcat http connector Tomcat's built-in HTTP connector can be used for production if your production traffic is light

Re: tomcat http connector

2011-11-22 Thread André Warnier
Pid wrote: On 22/11/2011 20:08, André Warnier wrote: Pid wrote: On 22/11/2011 16:21, Caldarale, Charles R wrote: From: Shanti Suresh [mailto:sha...@umich.edu] Subject: Re: tomcat http connector Tomcat's built-in HTTP connector can be used for production if your production traffic is light

Re: tomcat http connector

2011-11-22 Thread Christopher Schultz
-BEGIN PGP SIGNED MESSAGE- Hash: SHA1 Asha, On 11/22/11 2:15 AM, Asha K S wrote: Is there any performance comparison document available already between http and AJP It should be easy to test in your own environment. If you are using AJP through another web server, the overhead of the

Re: tomcat http connector

2011-11-22 Thread André Warnier
Christopher Schultz wrote: -BEGIN PGP SIGNED MESSAGE- Hash: SHA1 Asha, On 11/22/11 2:15 AM, Asha K S wrote: Is there any performance comparison document available already between http and AJP It should be easy to test in your own environment. If you are using AJP through another

RE: tomcat http connector

2011-11-21 Thread Caldarale, Charles R
From: Asha K S [mailto:a...@adobe.com] Subject: tomcat http connector Is there any document which I can refer to which states if tomcat's built in http connector (Coyote) can be used for production ? What an odd question. Of course it can be used for production. And also a comparison

RE: tomcat http connector

2011-11-21 Thread Asha K S
: tomcat http connector From: Asha K S [mailto:a...@adobe.com] Subject: tomcat http connector Is there any document which I can refer to which states if tomcat's built in http connector (Coyote) can be used for production ? What an odd question. Of course it can be used for production

RE: tomcat http connector

2011-11-21 Thread Caldarale, Charles R
From: Asha K S [mailto:a...@adobe.com] Subject: RE: tomcat http connector My question was mainly regarding which one is recommended for production . Both, depending on what you need to do. If you are using httpd for something useful (and just serving static content isn't one of those

RE: tomcat http connector

2011-11-21 Thread Asha K S
Is there any performance comparison document available already between http and AJP Thanks, Asha -Original Message- From: Caldarale, Charles R [mailto:chuck.caldar...@unisys.com] Sent: Tuesday, November 22, 2011 12:40 PM To: Tomcat Users List Subject: RE: tomcat http connector From

Re: tomcat http connector

2011-11-21 Thread Pid *
The answer is: use the NIO implementations if you really need speed from Tomcat. Thanks, Asha -Original Message- From: Caldarale, Charles R [mailto:chuck.caldar...@unisys.com] Sent: Tuesday, November 22, 2011 12:40 PM To: Tomcat Users List Subject: RE: tomcat http connector From

Re: tomcat http connector

2011-11-21 Thread Jan Vávra
Hello, I use ajp, because on tomcat I make authentication based on client certificate. That you cannot do via http connector. Jan. Hi, Is there any document which I can refer to which states if tomcat's built in http connector (Coyote) can be used for production ? And also a comparison

Re: tomcat http connector errors

2011-03-11 Thread Mark Thomas
On 11/03/2011 08:23, Kobi Biton wrote: So my question is how can I troubleshoot the issue further ? I'd start by taking a thread dump to see what is going on. Mark - To unsubscribe, e-mail: users-unsubscr...@tomcat.apache.org

Re: tomcat http connector errors

2011-03-11 Thread Kobi Biton
hi mark, Thanks the reply since I am the Operation guy not sure what you mean by thread dump ? jstack it is ? or other method? Kobi. On Fri, Mar 11, 2011 at 11:24 AM, Mark Thomas ma...@apache.org wrote: On 11/03/2011 08:23, Kobi Biton wrote: So my question is how can I troubleshoot the

RE: tomcat http connector errors

2011-03-11 Thread Caldarale, Charles R
From: Kobi Biton [mailto:comns.k...@gmail.com] Subject: Re: tomcat http connector errors since I am the Operation guy not sure what you mean by thread dump ? jstack it is ? or other method? jstack will work. http://wiki.apache.org/tomcat/HowTo

Re: tomcat http connector errors

2011-03-11 Thread Ashish Kumar Dash
*$ kill -3 PID* also will print a Thread Dump on your *catalina.out* On Fri, Mar 11, 2011 at 7:47 PM, Caldarale, Charles R chuck.caldar...@unisys.com wrote: From: Kobi Biton [mailto:comns.k...@gmail.com] Subject: Re: tomcat http connector errors since I am the Operation guy not sure what

RE: tomcat http connector errors

2011-03-11 Thread Caldarale, Charles R
From: Ashish Kumar Dash [mailto:dashashishku...@gmail.com] Subject: Re: tomcat http connector errors $ kill -3 PID also will print a Thread Dump on your catalina.out As mentioned in the previously posted FAQ reference. http://wiki.apache.org/tomcat/HowTo

Re: Tomcat HTTP Connector Threads Hung

2010-02-10 Thread Anurag Kapur
Thank you for your response Chuck. Got your point and have started investigating this problem at the web app level. Regards Anurag On Wed, Feb 10, 2010 at 3:45 AM, Caldarale, Charles R chuck.caldar...@unisys.com wrote: From: Anurag Kapur [mailto:anuragka...@gmail.com] Subject: Tomcat HTTP

RE: Tomcat HTTP Connector Threads Hung

2010-02-09 Thread Caldarale, Charles R
From: Anurag Kapur [mailto:anuragka...@gmail.com] Subject: Tomcat HTTP Connector Threads Hung 1. What does the connectionTimeout attribute in the tomcat http connector do? Exactly what the documentation says: The number of milliseconds this Connector will wait, after accepting a