[ 
https://issues.apache.org/jira/browse/CAMEL-8754?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=14533946#comment-14533946
 ] 

Willem Jiang commented on CAMEL-8754:
-------------------------------------

OK, the example just shows a way to send messages of Avro type to Kafka.  
As we have camel-avro data format, we can consider sending the more generic 
message to Kafka by default. 


> camel-kafka prevents sending anything other than String
> -------------------------------------------------------
>
>                 Key: CAMEL-8754
>                 URL: https://issues.apache.org/jira/browse/CAMEL-8754
>             Project: Camel
>          Issue Type: Bug
>          Components: camel-kafka
>    Affects Versions: 2.15.2
>            Reporter: Valentin Mayamsin
>            Assignee: Willem Jiang
>
> 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)

Reply via email to