Benny
Benny

Reputation: 8815

What kind of message can be transported through ActiveMQ?

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

Answers (1)

MP24
MP24

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

Related Questions