ssl « activemq « Java Enterprise Q&A





1. ActiveMQ over SSL to a .Net client    stackoverflow.com

Does anyone know if it's possible to connect a c# client to an ActiveMQ instance over SSL using the Spring.Messaging.Nms library? Or if not using Nms then some other library? Many ...

2. importing an existing x509 certificate and private key in Java keystore to use in ActiveMQ ssl context    stackoverflow.com

I have this in activemq config

<sslContext>
        <sslContext keyStore="file:/home/alex/work/amq/broker.ks"  
 keyStorePassword="password" trustStore="file:${activemq.base}/conf/broker.ts" 
 trustStorePassword="password"/>
</sslContext>
I have a pair of x509 cert and a key file How ...

3. "Error: UNKNOWN STOMP FRAME" while using stomp over ssl connection    stackoverflow.com

I have set up ActiveMq server to use STOMP over ssl connection by using the following in activemq.xml:- I have generated the keystore and truststore required and set up SSL_OPTS ...

4. SSL connection with Apache Active MQ    stackoverflow.com

I am trying to use SSL for Apache Active MQ - but it fails. My example works fine with "tcp://localhost:61616" - but fails with "ssl://localhost:61616"

    BrokerService broker = ...

5. "unable to find valid certification path to requested target" after adding new Keystore to ActiveMQ    stackoverflow.com

We use ActiveMQ to queue up messages from remote clients. The clients use the following URL to connect to ActiveMQ on our server;

ssl://www.mydomain.com:61616
This worked fine in the past and was set up ...