You are viewing a plain text version of this content. The canonical link for it is here.
Posted to dev@servicemix.apache.org by "Gianfranco Boccalon (JIRA)" <ji...@apache.org> on 2008/02/26 15:43:18 UTC

[jira] Created: (SM-1250) CXF BC provider doesn't manage DONE messages

CXF BC provider doesn't manage DONE messages
--------------------------------------------

                 Key: SM-1250
                 URL: https://issues.apache.org/activemq/browse/SM-1250
             Project: ServiceMix
          Issue Type: Bug
          Components: servicemix-cxf-bc
    Affects Versions: 3.2.1
            Reporter: Gianfranco Boccalon


The problem arises when the component is used within a pipeline.
I simply added the following lines at the beginning of the method CxfBcProvider.process :

        // Skip done exchanges
        if (exchange.getStatus() == ExchangeStatus.DONE) {
            return;
        }


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


[jira] Resolved: (SM-1250) CXF BC provider doesn't manage DONE messages

Posted by "Freeman Fang (JIRA)" <ji...@apache.org>.
     [ https://issues.apache.org/activemq/browse/SM-1250?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel ]

Freeman Fang resolved SM-1250.
------------------------------

      Assignee: Freeman Fang
    Resolution: Duplicate

> CXF BC provider doesn't manage DONE messages
> --------------------------------------------
>
>                 Key: SM-1250
>                 URL: https://issues.apache.org/activemq/browse/SM-1250
>             Project: ServiceMix
>          Issue Type: Bug
>          Components: servicemix-cxf-bc
>    Affects Versions: 3.2.1
>            Reporter: Gianfranco Boccalon
>            Assignee: Freeman Fang
>
> The problem arises when the component is used within a pipeline.
> I simply added the following lines at the beginning of the method CxfBcProvider.process :
>         // Skip done exchanges
>         if (exchange.getStatus() == ExchangeStatus.DONE) {
>             return;
>         }

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


[jira] Commented: (SM-1250) CXF BC provider doesn't manage DONE messages

Posted by "Freeman Fang (JIRA)" <ji...@apache.org>.
    [ https://issues.apache.org/activemq/browse/SM-1250?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=41433#action_41433 ] 

Freeman Fang commented on SM-1250:
----------------------------------

I believe this issue already get fix in 3.2.2 snapshot  
[1] is the related one
we already add the status check  now
             if (messageExchange.getStatus() != ExchangeStatus.ACTIVE) {
                return;
            }

so I will close it now
[1]https://issues.apache.org/activemq/browse/SM-1159



> CXF BC provider doesn't manage DONE messages
> --------------------------------------------
>
>                 Key: SM-1250
>                 URL: https://issues.apache.org/activemq/browse/SM-1250
>             Project: ServiceMix
>          Issue Type: Bug
>          Components: servicemix-cxf-bc
>    Affects Versions: 3.2.1
>            Reporter: Gianfranco Boccalon
>
> The problem arises when the component is used within a pipeline.
> I simply added the following lines at the beginning of the method CxfBcProvider.process :
>         // Skip done exchanges
>         if (exchange.getStatus() == ExchangeStatus.DONE) {
>             return;
>         }

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