Re: ActiveMQCPP--Cannot publish to a deleted destinatination: temp-queue:

2018-09-19 Thread dpatel
Thanks Tim. That worked. -- Sent from: http://activemq.2283324.n4.nabble.com/ActiveMQ-User-f2341805.html

Re: ActiveMQCPP--Cannot publish to a deleted destinatination: temp-queue:

2018-09-18 Thread Timothy Bish
On 09/18/2018 09:38 PM, dpatel wrote: I did try to connect with the ?jms.watchTopicAdvisories=false in the uri. connection.watchTopicAdvisories=false -- Tim Bish

Re: ActiveMQCPP--Cannot publish to a deleted destinatination: temp-queue:

2018-09-18 Thread dpatel
I did try to connect with the ?jms.watchTopicAdvisories=false in the uri. That didn't fix it. I ran my example with activemqcpp code. I found that that on the consumer side when I call MessageProducer->send(replyTodestination, message) ultimately it ends up calling ActiveMQSessionKernel::send()

Re: ActiveMQCPP--Cannot publish to a deleted destinatination: temp-queue:

2018-09-18 Thread artnaseef
I suspect you may be running into the problem that the client keeps track of known temporary destinations on the broker, and immediately rejects attempts to produce to temporary destinations that the client doesn't know about, even if they exist on the broker (although that's not the intent). This

Re: ActiveMQCPP--Cannot publish to a deleted destinatination: temp-queue:

2018-09-17 Thread dpatel
Can you help. Not sure how to proceed here as with advisorySupport on my broker is running out of memory. -- Sent from: http://activemq.2283324.n4.nabble.com/ActiveMQ-User-f2341805.html

Re: ActiveMQCPP--Cannot publish to a deleted destinatination: temp-queue:

2018-09-16 Thread dpatel
This is on a single broker. Here is the activemq xml again. activemq.xml -- Sent from: http://activemq.2283324.n4.nabble.com/ActiveMQ-User-f2341805.html

Re: ActiveMQCPP--Cannot publish to a deleted destinatination: temp-queue:

2018-09-16 Thread Tim Bain
Is this in a single broker or a network of brokers? If the latter, does it work for a single broker without advisory messages enabled? Also, your activemq.xml didn't make it. Tim On Sun, Sep 16, 2018, 2:06 AM dpatel wrote: > ActiveMQCPP version: 3.7.1 > AcitveMQBroker version: 5.10.0 >

ActiveMQCPP--Cannot publish to a deleted destinatination: temp-queue:

2018-09-16 Thread dpatel
ActiveMQCPP version: 3.7.1 AcitveMQBroker version: 5.10.0 Here is a simple example. The code includes both consumer and producer // START SNIPPET: demo #include #include #include #include #include #include #include #include #include #include #include #include