You are viewing a plain text version of this content. The canonical link for it is here.
Posted to dev@camel.apache.org by "Willem Jiang (JIRA)" <ji...@apache.org> on 2008/06/03 11:24:00 UTC

[jira] Resolved: (CAMEL-568) CamelInvoker should set ExchangePattern according to the ServiceModel when use MESSAGE and PAYLOAD dataFormat

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

Willem Jiang resolved CAMEL-568.
--------------------------------

    Resolution: Fixed

The patch is in the trunk as Freeman pointed.

> CamelInvoker should set ExchangePattern according to the ServiceModel when use MESSAGE and PAYLOAD dataFormat
> -------------------------------------------------------------------------------------------------------------
>
>                 Key: CAMEL-568
>                 URL: https://issues.apache.org/activemq/browse/CAMEL-568
>             Project: Apache Camel
>          Issue Type: Bug
>          Components: camel-cxf
>            Reporter: Freeman Fang
>            Assignee: Willem Jiang
>             Fix For: 1.4.0
>
>         Attachments: camel-568.patch
>
>
> add code as below         
>        BindingOperationInfo bop = exchange.get(BindingOperationInfo.class);
>         
>         if (bop != null && bop.getOperationInfo().isOneWay()) {
>             cxfExchange.setPattern(ExchangePattern.InOnly);
>         } else {
>             cxfExchange.setPattern(ExchangePattern.InOut);
>         }

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