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

Alex Ford commented on CAMEL-9506:
----------------------------------

Great! I looked at the change you made and replicated it in my dev environment. 
Confirmed that this fixes the problem! :)

I assume this will get rolled into a 2.16.2 release of Apache Camel? Any idea 
when that would be released?

> STOMP component does not handle stream objects
> ----------------------------------------------
>
>                 Key: CAMEL-9506
>                 URL: https://issues.apache.org/jira/browse/CAMEL-9506
>             Project: Camel
>          Issue Type: Bug
>          Components: camel-stomp
>    Affects Versions: 2.16.1
>            Reporter: Alex Ford
>            Assignee: Willem Jiang
>
> The STOMP component only performs a very simple toString() on the body of the 
> incoming exchange when it creates a STOMP message. This does not work when 
> the body does not support a toString() which gives some reasonable human 
> readable representation of the object. This is exactly the case if you try to 
> do the following:
> {code}
> from("direct:a").marshal().json(JsonLibrary.Gson).to("stomp:topic:foobar")
> {code}
> The result of the JSON serialization is a Stream, and the toString() on a 
> Stream results in an object hash (e.g. "[B@30479402"). A more appropriate 
> thing to do here is similar to what the File component does. (Basically, read 
> the stream for the data.)



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

Reply via email to