Hi

Yeah that seems like a good improvement. Feel free to log a JIRA ticket
http://camel.apache.org/contributing.html

And patches is of course welcome.


On Tue, Mar 19, 2013 at 6:31 PM, Gardella juan
<gardellajuanpa...@gmail.com> wrote:
> Hi,
>
> I have a route that is processing a file. So the body is an input stream. I
> want in some part of the route do two sequential operations. So I am using
> something like that:
>
>         from("direct:foo").multicast().to(
>                 "sql:truncate table X",
>                 "direct:continue");
>
> If I do that, sql read a portion of the input stream. I can solve if I
> change the route to
>
>         from("direct:foo").streamCaching().multicast().to(
>                 "sql:truncate table X",
>                 "direct:continue");
>
> But I do not want add streamCaching() only for the reason that sql component
> can not configure to do not read the body. Is it possible configure sql
> component to does not read message body?
>
> Thanks,
> Juan
>
>
>
> --
> View this message in context: 
> http://camel.465427.n5.nabble.com/Camel-SQL-component-How-configure-sql-component-to-doesn-t-try-read-the-body-tp5729434.html
> Sent from the Camel - Users mailing list archive at Nabble.com.



-- 
Claus Ibsen
-----------------
Red Hat, Inc.
FuseSource is now part of Red Hat
Email: cib...@redhat.com
Web: http://fusesource.com
Twitter: davsclaus
Blog: http://davsclaus.com
Author of Camel in Action: http://www.manning.com/ibsen

Reply via email to