Return-Path: X-Original-To: apmail-tomcat-dev-archive@www.apache.org Delivered-To: apmail-tomcat-dev-archive@www.apache.org Received: from mail.apache.org (hermes.apache.org [140.211.11.3]) by minotaur.apache.org (Postfix) with SMTP id CE3499A87 for ; Mon, 25 Jun 2012 14:43:58 +0000 (UTC) Received: (qmail 74578 invoked by uid 500); 25 Jun 2012 14:43:58 -0000 Delivered-To: apmail-tomcat-dev-archive@tomcat.apache.org Received: (qmail 74526 invoked by uid 500); 25 Jun 2012 14:43:58 -0000 Mailing-List: contact dev-help@tomcat.apache.org; run by ezmlm Precedence: bulk List-Help: List-Unsubscribe: List-Post: List-Id: Reply-To: "Tomcat Developers List" Delivered-To: mailing list dev@tomcat.apache.org Received: (qmail 74517 invoked by uid 99); 25 Jun 2012 14:43:58 -0000 Received: from nike.apache.org (HELO nike.apache.org) (192.87.106.230) by apache.org (qpsmtpd/0.29) with ESMTP; Mon, 25 Jun 2012 14:43:58 +0000 X-ASF-Spam-Status: No, hits=-2000.0 required=5.0 tests=ALL_TRUSTED X-Spam-Check-By: apache.org Received: from [140.211.11.4] (HELO eris.apache.org) (140.211.11.4) by apache.org (qpsmtpd/0.29) with ESMTP; Mon, 25 Jun 2012 14:43:55 +0000 Received: from eris.apache.org (localhost [127.0.0.1]) by eris.apache.org (Postfix) with ESMTP id 7039323889BF for ; Mon, 25 Jun 2012 14:43:34 +0000 (UTC) Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit Subject: svn commit: r1353583 - in /tomcat/tc7.0.x/trunk: ./ webapps/docs/changelog.xml webapps/docs/config/http.xml Date: Mon, 25 Jun 2012 14:43:32 -0000 To: dev@tomcat.apache.org From: markt@apache.org X-Mailer: svnmailer-1.0.8-patched Message-Id: <20120625144334.7039323889BF@eris.apache.org> Author: markt Date: Mon Jun 25 14:43:31 2012 New Revision: 1353583 URL: http://svn.apache.org/viewvc?rev=1353583&view=rev Log: Fix https://issues.apache.org/bugzilla/show_bug.cgi?id=53456 Minor fixes to the HTTP docs. Patch provided by sebb. Modified: tomcat/tc7.0.x/trunk/ (props changed) tomcat/tc7.0.x/trunk/webapps/docs/changelog.xml tomcat/tc7.0.x/trunk/webapps/docs/config/http.xml Propchange: tomcat/tc7.0.x/trunk/ ------------------------------------------------------------------------------ Merged /tomcat/trunk:r1353581 Modified: tomcat/tc7.0.x/trunk/webapps/docs/changelog.xml URL: http://svn.apache.org/viewvc/tomcat/tc7.0.x/trunk/webapps/docs/changelog.xml?rev=1353583&r1=1353582&r2=1353583&view=diff ============================================================================== --- tomcat/tc7.0.x/trunk/webapps/docs/changelog.xml (original) +++ tomcat/tc7.0.x/trunk/webapps/docs/changelog.xml Mon Jun 25 14:43:31 2012 @@ -109,6 +109,10 @@ they work with secure connections (wss) as well as non-secure (ws) connections. (markt) + + 53456: Minor corrections and improvements to the HTTP + connector configuration reference. Patch provided by sebb. (markt) + Modified: tomcat/tc7.0.x/trunk/webapps/docs/config/http.xml URL: http://svn.apache.org/viewvc/tomcat/tc7.0.x/trunk/webapps/docs/config/http.xml?rev=1353583&r1=1353582&r2=1353583&view=diff ============================================================================== --- tomcat/tc7.0.x/trunk/webapps/docs/config/http.xml (original) +++ tomcat/tc7.0.x/trunk/webapps/docs/config/http.xml Mon Jun 25 14:43:31 2012 @@ -48,8 +48,8 @@

If you wish to configure the Connector that is used for connections to web servers using the AJP protocol (such as the - mod_jk 1.2.x connector for Apache 1.3), see - here instead.

+ mod_jk 1.2.x connector for Apache 1.3), please refer to the + AJP Connector documentation.

Each incoming request requires a thread for the duration of that request. If more simultaneous requests @@ -896,11 +896,16 @@ attributes to the values https and true respectively, to pass correct information to the servlets.

-

The BIO and NIO connectors used the JSSE SSL whereas the APR/native +

The BIO and NIO connectors use the JSSE SSL whereas the APR/native connector uses OpenSSL. Therefore, in addition to using different attributes to configure SSL, the APR/native connector also requires keys and certificates to be provided in a different format.

+

For more information, see the + SSL Configuration HOW-TO.

+ + +

The BIO and NIO connectors use the following attributes to configure SSL:

@@ -1090,6 +1095,10 @@ +
+ + +

When APR/native is enabled, the HTTPS connector will use a socket poller for keep-alive, increasing scalability of the server. It also uses OpenSSL, which may be more optimized than JSSE depending on the processor being used, @@ -1203,15 +1212,14 @@ -

For more information, see the - SSL Configuration HOW-TO.

+

Below is a small chart that shows how the connectors differentiate.

- Java Blocking Connector Java Nio Blocking Connector APR/native Connector + Java Blocking Connector Java Non Blocking Connector APR/native Connector BIO NIO APR Classname Http11Protocol Http11NioProtocol Http11AprProtocol Tomcat Version 3.x onwards 6.x onwards 5.5.x onwards --------------------------------------------------------------------- To unsubscribe, e-mail: dev-unsubscribe@tomcat.apache.org For additional commands, e-mail: dev-help@tomcat.apache.org