Return-Path: Delivered-To: apmail-activemq-camel-dev-archive@locus.apache.org Received: (qmail 43210 invoked from network); 29 Nov 2007 09:15:47 -0000 Received: from hermes.apache.org (HELO mail.apache.org) (140.211.11.2) by minotaur.apache.org with SMTP; 29 Nov 2007 09:15:47 -0000 Received: (qmail 71752 invoked by uid 500); 29 Nov 2007 09:15:35 -0000 Delivered-To: apmail-activemq-camel-dev-archive@activemq.apache.org Received: (qmail 71729 invoked by uid 500); 29 Nov 2007 09:15:35 -0000 Mailing-List: contact camel-dev-help@activemq.apache.org; run by ezmlm Precedence: bulk List-Help: List-Unsubscribe: List-Post: List-Id: Reply-To: camel-dev@activemq.apache.org Delivered-To: mailing list camel-dev@activemq.apache.org Received: (qmail 71720 invoked by uid 99); 29 Nov 2007 09:15:35 -0000 Received: from athena.apache.org (HELO athena.apache.org) (140.211.11.136) by apache.org (qpsmtpd/0.29) with ESMTP; Thu, 29 Nov 2007 01:15:35 -0800 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, 29 Nov 2007 09:15:24 +0000 Received: from brutus (localhost [127.0.0.1]) by brutus.apache.org (Postfix) with ESMTP id B992271420A for ; Thu, 29 Nov 2007 01:15:26 -0800 (PST) Message-ID: <943163.1196327726748.JavaMail.jira@brutus> Date: Thu, 29 Nov 2007 01:15:26 -0800 (PST) From: "Freeman Fang (JIRA)" To: camel-dev@activemq.apache.org Subject: [jira] Updated: (CAMEL-247) some issues with camel-cxf component In-Reply-To: <13203995.1196327366734.JavaMail.jira@brutus> MIME-Version: 1.0 Content-Type: text/plain; charset=ISO-8859-1 Content-Transfer-Encoding: 7bit X-Virus-Checked: Checked by ClamAV on apache.org [ https://issues.apache.org/activemq/browse/CAMEL-247?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel ] Freeman Fang updated CAMEL-247: ------------------------------- Attachment: CAMEL-247.patch address this issue and append test to verify it works Could anyone review and apply this patch for me? Thanks > some issues with camel-cxf component > ------------------------------------ > > Key: CAMEL-247 > URL: https://issues.apache.org/activemq/browse/CAMEL-247 > Project: Apache Camel > Issue Type: Bug > Components: camel-cxf > Affects Versions: 1.2.0 > Reporter: Freeman Fang > Fix For: 1.3.0 > > Attachments: CAMEL-247.patch > > > 1. input params List shouldn't be null, at lease it should be a empty List, > so use > List params = new ArrayList(); > instead of > List params = null; > in CamelInvoker.java > to avoid input params is null > 2. Cxf Producer should only copy back exchange when ExchangePattern is not InOnly > so use > if (exchange.getPattern() != ExchangePattern.InOnly) { > exchange.copyFrom(cxfExchange); > } > instead of > exchange.copyFrom(cxfExchange); -- This message is automatically generated by JIRA. - You can reply to this email to add a comment to the issue online.