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

addTemporaryDestination() not called on the client side when advisorySupport="False"

2018-09-18 Thread dpatel
In my effort to debug why I keep getting the "Cannot publish to a delete queue", 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() in which

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-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

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

Re: AMQCPP -- Cannot publish to a delete Destination: temp-queue

2013-10-11 Thread dpatel
Hey Tim, AdvisoryMessages are disabled. I added a call to set watchTopicAdvisors to false on my client side. amqConnFactory = new ActiveMQConnectionFactory(CONN); amqConnFactory.setWatchTopicAdvisories(false); conn = amqConnFactory.createConnection(); conn.start(); However tha

AMQCPP -- Cannot publish to a delete Destination: temp-queue

2013-10-10 Thread dpatel
In my application I am creating a TempararyQueue queue and I set it in MapMessage as my ReplyTo queue. My listener is written in C++ and uses activemq-cpp. In version 3.6 everything works fine. My response from the listener makes it back to MapMessage. However when I upgraded to 3.8 (even 3.7) w

ActiveMQ CPP Issue with createCMSConnectionFactory

2013-07-24 Thread dpatel
I just upgraded from activemqcpp version 3.6 to 3.7.0. After the upgrade when I try to execute the following line in release config the dll crashes. cms::ConnectionFactory *conn_factory = cms::ConnectionFactory::createCMSConnectionFactory(conn_str); This works just fine in debug mode. Is anyone e