I develop below code for establish SSL connection with AMQ server:
string url = "ssl://:"
ITransportFactory sslTransportFactory = new
SslTransportFactory();
SslTransportFactory ssl = new SslTransportFactory();
ssl.ClientCertSubject = ;
There is example code here in Java for multiple queues for one
session(producer)
https://stackoverflow.com/questions/43537444/activemq-producer-multiple-queues-one-session
Is there a way to do this for CPP?
I've basically tried to replicate the functionality with AMQ CMS but when I
use the send
Hi
How temp queue life cycle is handled by the broker? It is documented that
temp queue exists for the life of the Connection. I use a single shared
connection among all threads in my app and create a session and a temp queue
for every user request in some method to handle user request. Does it me
Hi
I got a question about message ordering in a queue with two consumers using
selectors to filter messages. Suppose producer P sends a message with
selector “region=A” (message A) and another one with “region=B” (message B)
to the queue. Now, consumer with selector “region=B” (consB) is registere