Reputation: 8815
We are building a distributed system, maybe a c# app will talk to a c++ app, and maybe some jpeg image will ben send between, is this possible with Activemq?
Upvotes: 0
Views: 806
Reputation: 3200
As far as I know, you can transport any XML message, and also binary messages (blob messages, see http://activemq.apache.org/blob-messages.html). Since ActiveMQ won't try to interpret the binary message, you can safely send JPEGs or other stuff around.
Upvotes: 2