[ 
https://issues.apache.org/activemq/browse/CAMEL-243?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel
 ]

James Strachan resolved CAMEL-243.
----------------------------------

       Resolution: Fixed
    Fix Version/s: 1.3.0

Patch applied with thanks!

> small issues of CxfProducer and CxfConsunmer
> --------------------------------------------
>
>                 Key: CAMEL-243
>                 URL: https://issues.apache.org/activemq/browse/CAMEL-243
>             Project: Apache Camel
>          Issue Type: Bug
>            Reporter: Freeman Fang
>             Fix For: 1.3.0
>
>         Attachments: camel-243.patch
>
>
> CxfProducer didn't write back return value to the exchange, so can't get 
> return value when other kind of consumer (such as SMX consumer) work with 
> CxfProducer
> need add 
> exchange.copyFrom(cxfExchange); 
> in the public void process(Exchange exchange) method
> The CamelInvoker used for CxfConsumer didn't set correct ExchangePattern 
> after create the Exchage, 
> need add
>         if (bop.getOperationInfo().isOneWay()) {
>               cxfExchange.setPattern(ExchangePattern.InOnly);
>         } else {
>               cxfExchange.setPattern(ExchangePattern.InOut);
>         }
> to set the MEP correctly according to the Cxf ServiceModel

-- 
This message is automatically generated by JIRA.
-
You can reply to this email to add a comment to the issue online.

Reply via email to