Return-Path: Delivered-To: apmail-activemq-dev-archive@www.apache.org Received: (qmail 70356 invoked from network); 7 Apr 2008 16:37:18 -0000 Received: from hermes.apache.org (HELO mail.apache.org) (140.211.11.2) by minotaur.apache.org with SMTP; 7 Apr 2008 16:37:18 -0000 Received: (qmail 35683 invoked by uid 500); 7 Apr 2008 16:37:18 -0000 Delivered-To: apmail-activemq-dev-archive@activemq.apache.org Received: (qmail 35654 invoked by uid 500); 7 Apr 2008 16:37:18 -0000 Mailing-List: contact dev-help@activemq.apache.org; run by ezmlm Precedence: bulk List-Help: List-Unsubscribe: List-Post: List-Id: Reply-To: dev@activemq.apache.org Delivered-To: mailing list dev@activemq.apache.org Received: (qmail 35635 invoked by uid 99); 7 Apr 2008 16:37:18 -0000 Received: from nike.apache.org (HELO nike.apache.org) (192.87.106.230) by apache.org (qpsmtpd/0.29) with ESMTP; Mon, 07 Apr 2008 09:37:17 -0700 X-ASF-Spam-Status: No, hits=-2000.0 required=10.0 tests=ALL_TRUSTED X-Spam-Check-By: apache.org Received: from [140.211.11.140] (HELO brutus.apache.org) (140.211.11.140) by apache.org (qpsmtpd/0.29) with ESMTP; Mon, 07 Apr 2008 16:36:34 +0000 Received: from brutus (localhost [127.0.0.1]) by brutus.apache.org (Postfix) with ESMTP id 1BE82234C0C3 for ; Mon, 7 Apr 2008 09:34:34 -0700 (PDT) Message-ID: <1859806479.1207586074113.JavaMail.jira@brutus> Date: Mon, 7 Apr 2008 09:34:34 -0700 (PDT) From: "Hiram Chirino (JIRA)" To: dev@activemq.apache.org Subject: [jira] Resolved: (AMQ-1381) Client Certificates do not work due to incorrectly overriden method in SslTransport.java In-Reply-To: <19167271.1189091362157.JavaMail.jira@brutus> MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 7bit X-Virus-Checked: Checked by ClamAV on apache.org [ https://issues.apache.org/activemq/browse/AMQ-1381?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel ] Hiram Chirino resolved AMQ-1381. -------------------------------- Assignee: Hiram Chirino Fix Version/s: 5.1.0 Resolution: Fixed Patch applied fixed in rev 645599. Thanks! > Client Certificates do not work due to incorrectly overriden method in SslTransport.java > ---------------------------------------------------------------------------------------- > > Key: AMQ-1381 > URL: https://issues.apache.org/activemq/browse/AMQ-1381 > Project: ActiveMQ > Issue Type: Bug > Components: Transport > Affects Versions: 4.1.1, 5.0.0 > Environment: All > Reporter: Jon Siddle > Assignee: Hiram Chirino > Fix For: 5.1.0 > > Attachments: activemq-clientcert.patch > > > The peer certificates never get added to the {{ConnectionInfo}} ({{setTransportContext}}) > since {{doConsume()}} in {{SslTransport}} has the wrong signature. > The correct signature is: > {{doConsume(Object command)}} > but SslTransport defines a method with the following signature: > {{doConsume(Command command)}} > Which will obviously never get called. > In its current state, it is impossible for client certificates to work. > See attached patch for fix. Apply with {{patch -p0 < activemq-clientcert.patch}} or simply change {{Command}} to {{Object}} > in {{SslTransport.java}} -- This message is automatically generated by JIRA. - You can reply to this email to add a comment to the issue online.