Return-Path: X-Original-To: archive-asf-public-internal@cust-asf2.ponee.io Delivered-To: archive-asf-public-internal@cust-asf2.ponee.io Received: from cust-asf.ponee.io (cust-asf.ponee.io [163.172.22.183]) by cust-asf2.ponee.io (Postfix) with ESMTP id DD8D2200C04 for ; Tue, 24 Jan 2017 18:07:56 +0100 (CET) Received: by cust-asf.ponee.io (Postfix) id DC252160B5B; Tue, 24 Jan 2017 17:07:56 +0000 (UTC) Delivered-To: archive-asf-public@cust-asf.ponee.io Received: from mail.apache.org (hermes.apache.org [140.211.11.3]) by cust-asf.ponee.io (Postfix) with SMTP id 30863160B38 for ; Tue, 24 Jan 2017 18:07:56 +0100 (CET) Received: (qmail 83125 invoked by uid 500); 24 Jan 2017 17:07:55 -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 83115 invoked by uid 99); 24 Jan 2017 17:07:55 -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; Tue, 24 Jan 2017 17:07:55 +0000 Received: by git1-us-west.apache.org (ASF Mail Server at git1-us-west.apache.org, from userid 33) id 48271DFA6D; Tue, 24 Jan 2017 17:07:55 +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 Date: Tue, 24 Jan 2017 17:07:55 -0000 Message-Id: <6d4c0d4bc273495a85bb80a185b7980f@git.apache.org> X-Mailer: ASF-Git Admin Mailer Subject: [1/3] cxf git commit: Enabling the HTTPS custom verb test archived-at: Tue, 24 Jan 2017 17:07:57 -0000 Repository: cxf Updated Branches: refs/heads/3.1.x-fixes 7aa054206 -> 064e245e5 Enabling the HTTPS custom verb test Project: http://git-wip-us.apache.org/repos/asf/cxf/repo Commit: http://git-wip-us.apache.org/repos/asf/cxf/commit/064e245e Tree: http://git-wip-us.apache.org/repos/asf/cxf/tree/064e245e Diff: http://git-wip-us.apache.org/repos/asf/cxf/diff/064e245e Branch: refs/heads/3.1.x-fixes Commit: 064e245e50acc06f1d3b9c6a507edeb3845206a2 Parents: 98c52c1 Author: Sergey Beryozkin Authored: Tue Jan 24 17:04:46 2017 +0000 Committer: Sergey Beryozkin Committed: Tue Jan 24 17:07:32 2017 +0000 ---------------------------------------------------------------------- .../org/apache/cxf/transport/http/URLConnectionHTTPConduit.java | 1 - .../org/apache/cxf/systest/jaxrs/security/JAXRSHttpsBookTest.java | 3 +-- 2 files changed, 1 insertion(+), 3 deletions(-) ---------------------------------------------------------------------- http://git-wip-us.apache.org/repos/asf/cxf/blob/064e245e/rt/transports/http/src/main/java/org/apache/cxf/transport/http/URLConnectionHTTPConduit.java ---------------------------------------------------------------------- diff --git a/rt/transports/http/src/main/java/org/apache/cxf/transport/http/URLConnectionHTTPConduit.java b/rt/transports/http/src/main/java/org/apache/cxf/transport/http/URLConnectionHTTPConduit.java index 249c735..c73d110 100644 --- a/rt/transports/http/src/main/java/org/apache/cxf/transport/http/URLConnectionHTTPConduit.java +++ b/rt/transports/http/src/main/java/org/apache/cxf/transport/http/URLConnectionHTTPConduit.java @@ -148,7 +148,6 @@ public class URLConnectionHTTPConduit extends HTTPConduit { } if (b) { try { - boolean set = false; java.lang.reflect.Field f = ReflectionUtil.getDeclaredField(HttpURLConnection.class, "method"); if (connection instanceof HttpsURLConnection) { try { http://git-wip-us.apache.org/repos/asf/cxf/blob/064e245e/systests/jaxrs/src/test/java/org/apache/cxf/systest/jaxrs/security/JAXRSHttpsBookTest.java ---------------------------------------------------------------------- diff --git a/systests/jaxrs/src/test/java/org/apache/cxf/systest/jaxrs/security/JAXRSHttpsBookTest.java b/systests/jaxrs/src/test/java/org/apache/cxf/systest/jaxrs/security/JAXRSHttpsBookTest.java index 263156f..0e52a86 100644 --- a/systests/jaxrs/src/test/java/org/apache/cxf/systest/jaxrs/security/JAXRSHttpsBookTest.java +++ b/systests/jaxrs/src/test/java/org/apache/cxf/systest/jaxrs/security/JAXRSHttpsBookTest.java @@ -111,10 +111,9 @@ public class JAXRSHttpsBookTest extends AbstractBusClientServerTestBase { } @Test - @Ignore public void testCustomVerbProxyFromSpringWildcard() throws Exception { ClassPathXmlApplicationContext ctx = - new ClassPathXmlApplicationContext(new String[] {CLIENT_CONFIG_FILE4}); + new ClassPathXmlApplicationContext(new String[] {CLIENT_CONFIG_FILE3}); Object bean = ctx.getBean("bookService.proxyFactory"); assertNotNull(bean); JAXRSClientFactoryBean cfb = (JAXRSClientFactoryBean) bean;