views:

184

answers:

1

Is there a SSL enabled client for C++ that can interact with HornetQ?

The only client I could find is ActiveMQ-CMS from the Apache ActiveMQ project, which can use Stomp. But this client up to now does not seam to support SSL or any other form of security/authentication.

A: 

I'm looking for the same thing, ActiveMQ-CMS is an api like JMS to easy way access brokers like activeMQ. ActiveMQ-CMS does not implemented yet his SSL support with stomp or openwire protocol... Now I think that the only way is using c libstomp, that seems that support ssl... did you find something else?

opernas
We switsched on the server side to using ActiveMQ (Java) as a broker as well, because it supports all the features we need and a stable C++ adapter was more important to us than the shiny new features of HornetQ. To be honst, while researching ActiveMQ in detail, I noticed that most of the features we wanted to use in HornetQ are available from ActiveMQ as well.
Martin C.