You are viewing a plain text version of this content. The canonical link for it is here.
Posted to dev@camel.apache.org by "Claus Ibsen (JIRA)" <ji...@apache.org> on 2009/03/06 10:25:44 UTC

[jira] Assigned: (CAMEL-1376) wiretap() to be able to send an InOnly message exchange with the result of an InOut request without affecting the current message exchange

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

Claus Ibsen reassigned CAMEL-1376:
----------------------------------

    Assignee: Claus Ibsen

> wiretap() to be able to send an InOnly message exchange with the result of an InOut request without affecting the current message exchange
> ------------------------------------------------------------------------------------------------------------------------------------------
>
>                 Key: CAMEL-1376
>                 URL: https://issues.apache.org/activemq/browse/CAMEL-1376
>             Project: Apache Camel
>          Issue Type: Improvement
>            Reporter: James Strachan
>            Assignee: Claus Ibsen
>             Fix For: 2.0.0
>
>
> we should be able to do something like this...
> {code}
> from("jetty:http://localhost:8585/cxf/HelloWorld")
>   .to("http://localhost:8080/cxf/HelloWorld")
>    .wiretap("seda:cheese");
> {code}
> such that the *seda:cheese* gets the output of the HelloWorld service as an InOut - but the response is returned fine to the HTTP client. i.e. the presence of the wiretap() does not in any way affect the exchange - it appears to work exactly the same as
> {code}
> from("jetty:http://localhost:8585/cxf/HelloWorld")
>   .to("http://localhost:8080/cxf/HelloWorld");
> {code}
> and any output of the seda:cheese does not affect the response to the HTTP client.

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