Tom Sebastian
Tom Sebastian

Reputation: 3433

what is open wire protocol in ActiveMQ

I noticed that in active mq connection example with tag we use name = "openwire". When I looked into that , it is a wire level protocol. Actually what is it for? Also noticed there are several such protocols it supprot. Then which one i choose?

Upvotes: 0

Views: 1067

Answers (1)

Tim Bish
Tim Bish

Reputation: 18356

Openwire is ActiveMQ's default wire level protocol. The Java, C++ and .NET clients all use this protocol. If you are using the provided ActiveMQ libraries then you don't need to worry about it. For other scripting type languages we also support the STOMP protocol and in the latest release we support both AMQP and MQTT connections.

Upvotes: 1

Related Questions