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 ABE5A187AB for ; Thu, 3 Sep 2015 13:44:49 +0000 (UTC) Received: (qmail 3981 invoked by uid 500); 3 Sep 2015 13:44:49 -0000 Delivered-To: apmail-cxf-commits-archive@cxf.apache.org Received: (qmail 3922 invoked by uid 500); 3 Sep 2015 13:44:49 -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 3913 invoked by uid 99); 3 Sep 2015 13:44:49 -0000 Received: from git1-us-west.apache.org (HELO git1-us-west.apache.org) (140.211.11.23) by apache.org (qpsmtpd/0.29) with ESMTP; Thu, 03 Sep 2015 13:44:49 +0000 Received: by git1-us-west.apache.org (ASF Mail Server at git1-us-west.apache.org, from userid 33) id 745EBDFF70; Thu, 3 Sep 2015 13:44:49 +0000 (UTC) Content-Type: text/plain; charset="us-ascii" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit From: sergeyb@apache.org To: commits@cxf.apache.org Message-Id: <7e87fcaf5b9944a986eef823a296630c@git.apache.org> X-Mailer: ASF-Git Admin Mailer Subject: cxf git commit: [CXF-6551] Checking for 407 when processing retransmits Date: Thu, 3 Sep 2015 13:44:49 +0000 (UTC) Repository: cxf Updated Branches: refs/heads/3.0.x-fixes 36ec52450 -> 1f6f01bb5 [CXF-6551] Checking for 407 when processing retransmits Project: http://git-wip-us.apache.org/repos/asf/cxf/repo Commit: http://git-wip-us.apache.org/repos/asf/cxf/commit/1f6f01bb Tree: http://git-wip-us.apache.org/repos/asf/cxf/tree/1f6f01bb Diff: http://git-wip-us.apache.org/repos/asf/cxf/diff/1f6f01bb Branch: refs/heads/3.0.x-fixes Commit: 1f6f01bb5bfb56e068a87362d54009a7322c95fe Parents: 36ec524 Author: Sergey Beryozkin Authored: Thu Sep 3 14:40:04 2015 +0100 Committer: Sergey Beryozkin Committed: Thu Sep 3 14:44:31 2015 +0100 ---------------------------------------------------------------------- .../src/main/java/org/apache/cxf/transport/http/HTTPConduit.java | 1 + 1 file changed, 1 insertion(+) ---------------------------------------------------------------------- http://git-wip-us.apache.org/repos/asf/cxf/blob/1f6f01bb/rt/transports/http/src/main/java/org/apache/cxf/transport/http/HTTPConduit.java ---------------------------------------------------------------------- diff --git a/rt/transports/http/src/main/java/org/apache/cxf/transport/http/HTTPConduit.java b/rt/transports/http/src/main/java/org/apache/cxf/transport/http/HTTPConduit.java index 44d9faf..fc6ba37 100644 --- a/rt/transports/http/src/main/java/org/apache/cxf/transport/http/HTTPConduit.java +++ b/rt/transports/http/src/main/java/org/apache/cxf/transport/http/HTTPConduit.java @@ -1416,6 +1416,7 @@ public abstract class HTTPConduit case 307: return redirectRetransmit(); case HttpURLConnection.HTTP_UNAUTHORIZED: + case HttpURLConnection.HTTP_PROXY_AUTH: return authorizationRetransmit(); default: break;