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 AAF09200C04 for ; Tue, 24 Jan 2017 18:05:06 +0100 (CET) Received: by cust-asf.ponee.io (Postfix) id A99CA160B3E; Tue, 24 Jan 2017 17:05:06 +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 F0D55160B38 for ; Tue, 24 Jan 2017 18:05:05 +0100 (CET) Received: (qmail 76864 invoked by uid 500); 24 Jan 2017 17:05:05 -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 76855 invoked by uid 99); 24 Jan 2017 17:05:05 -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:05:05 +0000 Received: by git1-us-west.apache.org (ASF Mail Server at git1-us-west.apache.org, from userid 33) id 11C4ADFA6D; Tue, 24 Jan 2017 17:05:05 +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: <88add16f30d44ff382543ccbfe8a68c9@git.apache.org> X-Mailer: ASF-Git Admin Mailer Subject: cxf git commit: Enabling the HTTPS custom verb test Date: Tue, 24 Jan 2017 17:05:05 +0000 (UTC) archived-at: Tue, 24 Jan 2017 17:05:06 -0000 Repository: cxf Updated Branches: refs/heads/master 789380097 -> 60a0ab978 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/60a0ab97 Tree: http://git-wip-us.apache.org/repos/asf/cxf/tree/60a0ab97 Diff: http://git-wip-us.apache.org/repos/asf/cxf/diff/60a0ab97 Branch: refs/heads/master Commit: 60a0ab9784692a7f71ed0b20240c689e6a380bad Parents: 7893800 Author: Sergey Beryozkin Authored: Tue Jan 24 17:04:46 2017 +0000 Committer: Sergey Beryozkin Committed: Tue Jan 24 17:04:46 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/60a0ab97/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/60a0ab97/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;