From dev-return-7519-apmail-activemq-dev-archive=activemq.apache.org@activemq.apache.org Thu Jul 19 08:06:28 2007 Return-Path: Delivered-To: apmail-activemq-dev-archive@www.apache.org Received: (qmail 24595 invoked from network); 19 Jul 2007 08:06:27 -0000 Received: from hermes.apache.org (HELO mail.apache.org) (140.211.11.2) by minotaur.apache.org with SMTP; 19 Jul 2007 08:06:27 -0000 Received: (qmail 88884 invoked by uid 500); 19 Jul 2007 08:06:07 -0000 Delivered-To: apmail-activemq-dev-archive@activemq.apache.org Received: (qmail 88849 invoked by uid 500); 19 Jul 2007 08:06:07 -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 88840 invoked by uid 99); 19 Jul 2007 08:06:07 -0000 Received: from herse.apache.org (HELO herse.apache.org) (140.211.11.133) by apache.org (qpsmtpd/0.29) with ESMTP; Thu, 19 Jul 2007 01:06:07 -0700 X-ASF-Spam-Status: No, hits=-100.0 required=10.0 tests=ALL_TRUSTED X-Spam-Check-By: apache.org Received: from [140.211.11.4] (HELO brutus.apache.org) (140.211.11.4) by apache.org (qpsmtpd/0.29) with ESMTP; Thu, 19 Jul 2007 01:06:04 -0700 Received: from brutus (localhost [127.0.0.1]) by brutus.apache.org (Postfix) with ESMTP id 7A32971418E for ; Thu, 19 Jul 2007 01:05:44 -0700 (PDT) Message-ID: <28853037.1184832344436.JavaMail.jira@brutus> Date: Thu, 19 Jul 2007 01:05:44 -0700 (PDT) From: =?ISO-8859-1?Q?Erik_J=F5gi_=28JIRA=29?= To: dev@activemq.apache.org Subject: [jira] Created: (AMQ-1330) SslTransport doesn't set the client certificate chain as transportContext MIME-Version: 1.0 Content-Type: text/plain; charset=ISO-8859-1 Content-Transfer-Encoding: quoted-printable X-Virus-Checked: Checked by ClamAV on apache.org SslTransport doesn't set the client certificate chain as transportContext ------------------------------------------------------------------------- Key: AMQ-1330 URL: https://issues.apache.org/activemq/browse/AMQ-1330 Project: ActiveMQ Issue Type: Bug Components: Transport Affects Versions: 4.1.1 Reporter: Erik J=F5gi org.apache.activemq.transport.tcp.SslTransport is supposed to override the = doConsume() method of TransportSupport and set the client certificate chain= as transportContext.=20 However the method signature is incorrect - instead of overriding: public void doConsume(Object command) it defines a new method: public void doConsume(Command command) which is never called. So it is fixed very easily - just change Command to Object in the method si= gnature. --=20 This message is automatically generated by JIRA. - You can reply to this email to add a comment to the issue online.