Return-Path: X-Original-To: apmail-cxf-issues-archive@www.apache.org Delivered-To: apmail-cxf-issues-archive@www.apache.org Received: from mail.apache.org (hermes.apache.org [140.211.11.3]) by minotaur.apache.org (Postfix) with SMTP id 08D1217E3A for ; Mon, 10 Nov 2014 14:52:36 +0000 (UTC) Received: (qmail 47594 invoked by uid 500); 10 Nov 2014 14:52:35 -0000 Delivered-To: apmail-cxf-issues-archive@cxf.apache.org Received: (qmail 47558 invoked by uid 500); 10 Nov 2014 14:52:35 -0000 Mailing-List: contact issues-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 issues@cxf.apache.org Received: (qmail 47497 invoked by uid 99); 10 Nov 2014 14:52:35 -0000 Received: from arcas.apache.org (HELO arcas.apache.org) (140.211.11.28) by apache.org (qpsmtpd/0.29) with ESMTP; Mon, 10 Nov 2014 14:52:35 +0000 Date: Mon, 10 Nov 2014 14:52:35 +0000 (UTC) From: "Benson Margulies (JIRA)" To: issues@cxf.apache.org Message-ID: In-Reply-To: References: Subject: [jira] [Created] (CXF-6096) http components transport is missing a dependency on commons-logging MIME-Version: 1.0 Content-Type: text/plain; charset=utf-8 Content-Transfer-Encoding: 7bit X-JIRA-FingerPrint: 30527f35849b9dde25b450d4833f0394 Benson Margulies created CXF-6096: ------------------------------------- Summary: http components transport is missing a dependency on commons-logging Key: CXF-6096 URL: https://issues.apache.org/jira/browse/CXF-6096 Project: CXF Issue Type: Bug Components: Transports Affects Versions: 3.0.2 Reporter: Benson Margulies If I have these maven dependencies: {code} org.apache.cxf cxf-rt-rs-client 3.0.2 org.apache.cxf cxf-rt-transports-http-hc 3.0.2 {code} And I do: {code} Bus bus = BusFactory.getDefaultBus(); // insist on the async connector to use PATCH. bus.setProperty(AsyncHTTPConduit.USE_ASYNC, Boolean.TRUE); {code} I get rewarded with: {noformat} aused by: java.lang.NoClassDefFoundError: org/apache/commons/logging/LogFactory at org.apache.http.conn.ssl.AbstractVerifier.(AbstractVerifier.java:82) at org.apache.http.conn.ssl.AllowAllHostnameVerifier.(AllowAllHostnameVerifier.java:40) at org.apache.http.nio.conn.ssl.SSLIOSessionStrategy.(SSLIOSessionStrategy.java:61) at org.apache.cxf.transport.http.asyncclient.AsyncHTTPConduit$AsyncWrappedOutputStream.connect(AsyncHTTPConduit.java:514) at org.apache.cxf.transport.http.asyncclient.AsyncHTTPConduit$AsyncWrappedOutputStream.handleNoOutput(AsyncHTTPConduit.java:336) at org.apache.cxf.transport.http.HTTPConduit$WrappedOutputStream.handleHeadersTrustCaching(HTTPConduit.java:1294) at org.apache.cxf.transport.http.HTTPConduit$WrappedOutputStream.close(HTTPConduit.java:1319) at org.apache.cxf.transport.http.asyncclient.AsyncHTTPConduit$AsyncWrappedOutputStream.close(AsyncHTTPConduit.java:406) at org.apache.cxf.transport.AbstractConduit.close(AbstractConduit.java:56) at org.apache.cxf.transport.http.HTTPConduit.close(HTTPConduit.java:638) {noformat} -- This message was sent by Atlassian JIRA (v6.3.4#6332)