You are viewing a plain text version of this content. The canonical link for it is here.
Posted to issues@camel.apache.org by "Claus Ibsen (JIRA)" <ji...@apache.org> on 2015/07/17 09:40:05 UTC

[jira] [Resolved] (CAMEL-8754) camel-kafka prevents sending anything other than String

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

Claus Ibsen resolved CAMEL-8754.
--------------------------------
    Resolution: Duplicate

Duplicate of CAMEL-8790

> camel-kafka prevents sending anything other than String
> -------------------------------------------------------
>
>                 Key: CAMEL-8754
>                 URL: https://issues.apache.org/jira/browse/CAMEL-8754
>             Project: Camel
>          Issue Type: Improvement
>          Components: camel-kafka
>    Affects Versions: 2.15.2
>            Reporter: Valentin Mayamsin
>            Assignee: Willem Jiang
>             Fix For: 2.16.0
>
>
> Due to incorrect camel-kafka Producer implementation, it prevents sending anything other than String. See https://github.com/apache/camel/blob/a7dfc45097a610dca1a39c86f481182efc20e152/components/camel-kafka/src/main/java/org/apache/camel/component/kafka/KafkaProducer.java#L72
> {code}
> String msg = exchange.getIn().getBody(String.class);
> {code}
> Apparently it should be something like
> {code}
> Object msg = exchange.getIn().getBody();
> {code}



--
This message was sent by Atlassian JIRA
(v6.3.4#6332)