Return-Path: X-Original-To: apmail-cxf-commits-archive@www.apache.org Delivered-To: apmail-cxf-commits-archive@www.apache.org Received: from mail.apache.org (hermes.apache.org [140.211.11.3]) by minotaur.apache.org (Postfix) with SMTP id 117E492D6 for ; Thu, 2 Aug 2012 20:18:32 +0000 (UTC) Received: (qmail 84262 invoked by uid 500); 2 Aug 2012 20:18:31 -0000 Delivered-To: apmail-cxf-commits-archive@cxf.apache.org Received: (qmail 84213 invoked by uid 500); 2 Aug 2012 20:18:31 -0000 Mailing-List: contact commits-help@cxf.apache.org; run by ezmlm Precedence: bulk List-Help: List-Unsubscribe: List-Post: List-Id: Reply-To: dev@cxf.apache.org Delivered-To: mailing list commits@cxf.apache.org Received: (qmail 84197 invoked by uid 99); 2 Aug 2012 20:18:31 -0000 Received: from nike.apache.org (HELO nike.apache.org) (192.87.106.230) by apache.org (qpsmtpd/0.29) with ESMTP; Thu, 02 Aug 2012 20:18:31 +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; Thu, 02 Aug 2012 20:18:29 +0000 Received: from eris.apache.org (localhost [127.0.0.1]) by eris.apache.org (Postfix) with ESMTP id 6BEC6238889B; Thu, 2 Aug 2012 20:17:45 +0000 (UTC) Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit Subject: svn commit: r1368686 - /cxf/sandbox/dkulp_async_clients/http-hc/src/main/java/org/apache/cxf/transport/http/asyncclient/AsyncHTTPConduit.java Date: Thu, 02 Aug 2012 20:17:45 -0000 To: commits@cxf.apache.org From: dkulp@apache.org X-Mailer: svnmailer-1.0.8-patched Message-Id: <20120802201745.6BEC6238889B@eris.apache.org> Author: dkulp Date: Thu Aug 2 20:17:45 2012 New Revision: 1368686 URL: http://svn.apache.org/viewvc?rev=1368686&view=rev Log: Couple more notes of stuff to fix Modified: cxf/sandbox/dkulp_async_clients/http-hc/src/main/java/org/apache/cxf/transport/http/asyncclient/AsyncHTTPConduit.java Modified: cxf/sandbox/dkulp_async_clients/http-hc/src/main/java/org/apache/cxf/transport/http/asyncclient/AsyncHTTPConduit.java URL: http://svn.apache.org/viewvc/cxf/sandbox/dkulp_async_clients/http-hc/src/main/java/org/apache/cxf/transport/http/asyncclient/AsyncHTTPConduit.java?rev=1368686&r1=1368685&r2=1368686&view=diff ============================================================================== --- cxf/sandbox/dkulp_async_clients/http-hc/src/main/java/org/apache/cxf/transport/http/asyncclient/AsyncHTTPConduit.java (original) +++ cxf/sandbox/dkulp_async_clients/http-hc/src/main/java/org/apache/cxf/transport/http/asyncclient/AsyncHTTPConduit.java Thu Aug 2 20:17:45 2012 @@ -305,10 +305,12 @@ public class AsyncHTTPConduit extends HT } protected boolean usingProxy() { + //FIXME - need to get the Proxy stuff from the connection return false; } protected HttpsURLConnectionInfo getHttpsURLConnectionInfo() throws IOException { + //FIXME - need to get the TLS stuff from the connection return null; }