Return-Path: Delivered-To: apmail-hc-commits-archive@www.apache.org Received: (qmail 831 invoked from network); 7 May 2010 09:45:28 -0000 Received: from unknown (HELO mail.apache.org) (140.211.11.3) by 140.211.11.9 with SMTP; 7 May 2010 09:45:28 -0000 Received: (qmail 13290 invoked by uid 500); 7 May 2010 09:45:28 -0000 Delivered-To: apmail-hc-commits-archive@hc.apache.org Received: (qmail 13257 invoked by uid 500); 7 May 2010 09:45:27 -0000 Mailing-List: contact commits-help@hc.apache.org; run by ezmlm Precedence: bulk List-Help: List-Unsubscribe: List-Post: List-Id: Reply-To: "HttpComponents Project" Delivered-To: mailing list commits@hc.apache.org Received: (qmail 13250 invoked by uid 99); 7 May 2010 09:45:26 -0000 Received: from athena.apache.org (HELO athena.apache.org) (140.211.11.136) by apache.org (qpsmtpd/0.29) with ESMTP; Fri, 07 May 2010 09:45:26 +0000 X-ASF-Spam-Status: No, hits=-1548.6 required=10.0 tests=ALL_TRUSTED,AWL 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; Fri, 07 May 2010 09:45:25 +0000 Received: by eris.apache.org (Postfix, from userid 65534) id 9F43F23889BF; Fri, 7 May 2010 09:44:35 +0000 (UTC) Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit Subject: svn commit: r942042 - /httpcomponents/httpcore/trunk/httpcore/src/main/java/org/apache/http/impl/DefaultHttpRequestFactory.java Date: Fri, 07 May 2010 09:44:35 -0000 To: commits@hc.apache.org From: olegk@apache.org X-Mailer: svnmailer-1.0.8 Message-Id: <20100507094435.9F43F23889BF@eris.apache.org> Author: olegk Date: Fri May 7 09:44:35 2010 New Revision: 942042 URL: http://svn.apache.org/viewvc?rev=942042&view=rev Log: HTTPCORE-224: added CONNECT method to DefaultHttpRequestFactory Modified: httpcomponents/httpcore/trunk/httpcore/src/main/java/org/apache/http/impl/DefaultHttpRequestFactory.java Modified: httpcomponents/httpcore/trunk/httpcore/src/main/java/org/apache/http/impl/DefaultHttpRequestFactory.java URL: http://svn.apache.org/viewvc/httpcomponents/httpcore/trunk/httpcore/src/main/java/org/apache/http/impl/DefaultHttpRequestFactory.java?rev=942042&r1=942041&r2=942042&view=diff ============================================================================== --- httpcomponents/httpcore/trunk/httpcore/src/main/java/org/apache/http/impl/DefaultHttpRequestFactory.java (original) +++ httpcomponents/httpcore/trunk/httpcore/src/main/java/org/apache/http/impl/DefaultHttpRequestFactory.java Fri May 7 09:44:35 2010 @@ -54,7 +54,8 @@ public class DefaultHttpRequestFactory i "HEAD", "OPTIONS", "DELETE", - "TRACE" + "TRACE", + "CONNECT" };