Re: Using SSL with Apache NMS on a windows machine

2019-10-17 Thread vit
I develop below code for establish SSL connection with AMQ server: string url = "ssl://:" ITransportFactory sslTransportFactory = new SslTransportFactory(); SslTransportFactory ssl = new SslTransportFactory(); ssl.ClientCertSubject = ;

AMQ CPP - How do you set up multiple destination for one producer

2019-10-17 Thread JackOfAllTrades
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

temp queue life cycle

2019-10-17 Thread ferez
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

message ordering in a queue with consumers using selectors

2019-10-17 Thread ferez
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