Sending StreamMessage from CMS to JMS
I am trying to send an ActiveMQ StreamMessage
from a C++ (CMS) client to a Java (JMS) client. However, the Java client is unable to correctly read the values from the incoming message - most fields are extracted as null
, and the fields that do have values associated with them just seem to contain garbage.
I can send BytesMessages
and TextMessages
from our C++ client to our Java client just fine, so the BytesMessage
is our fallback for now.
StreamMessage
is making us suspect something is wrong/incompatible between our two开发者_如何学C clients.
We are using ActiveMQ 5.4.2 on the Java side, and activemq-cpp 3.0.1 on the C++ side.
Are there any known incompatibilities between the JMS and CMS implementations, or are there any other obvious pitfalls I should look for?
I think there were some issues that I fixed somewhere between 3.0.1 and the latest 3.2.4 that fixed some issues with stream message. I'd really recommend that you update to v3.2.4 of CMS as there's been a large number of bugs fixed, along with some great new features.
The CMS issue tracker is here if you want to review to issues fixed since the version you are using:
Edit: Found the issue that fixed it, its here.
-Tim
www.fusesource.com
精彩评论