Re: Disable advisory for ActiveMQ broker

2014-03-25 Thread Richard Kettelerij
Hi, You'll need to adjust your broker url. Adding advisorySupport="false" is not enough to completely disable advisory messages. You'll need to change the broker url in your ConnectionFactory to: tcp://localhost:61616 ?jms.watchTopicAdvisories=false Regards, Richard http://richardlog.com On Sat

Re: Disable advisory for ActiveMQ broker

2014-03-24 Thread json
Hi. Sorry. i need help please I am using ActiveMQ and Spring JMS template. follow your steps, but do not work my setting. show it my conf. advisorySupport="false">

Re: Disable advisory for ActiveMQ broker

2014-02-28 Thread Christian Posta
No. You have to disable advisory support, and the jms.watchTopicAdvisories=false needs to go on the client (or you can setWatchTopicAdvisories(false) on the connectionFactory). You may also want to disable creation of advisory topics via ActiveMQ authorization security to enforce this policy (alth

Re: Disable advisory for ActiveMQ broker

2014-02-25 Thread khandelwalanuj
Hi, I tried setting connection URI in broker config as: * * but still it is creating advisories for tmp topics. But when I changed configuration on client side and make "watchTopicAdvisories=false" in client consiguration, I can avoid tmp advisories. Is there a way to di

Re: Disable advisory for ActiveMQ broker

2014-02-12 Thread khandelwalanuj
Okay.. So I need to do :* advisorySupport="false" * as well as *tcp://localhost:61616?jms.watchTopicAdvisories=false* to get rid of advisories completely. Just one thing that if i use above configuration, is there any side effect/ impact on other things of broker ? (I am basically doing it to im

Re: Disable advisory for ActiveMQ broker

2014-02-12 Thread Dejan Bosanac
That's where the settings for watchTopicAdvisories on the connection comes into the play. By default connection subscribers to temp topics advisories, so it knows if valid temporary destination exists on the broker (without making rpc calls by some other mechanism). If you don't use temps, it safe

Re: Disable advisory for ActiveMQ broker

2014-02-12 Thread khandelwalanuj
I saw the page you specified but not found any information for "topic://ActiveMQ.Advisory.TempQueue_Advisory.TempTopic". What is the relation between temp destinations and advisories ? Thanks, Anuj -- View this message in context: http://activemq.2283324.n4.nabble.com/Disable-advisory-for-Act

Re: Disable advisory for ActiveMQ broker

2014-02-12 Thread Dejan Bosanac
Hi Anuj, you can find more info here http://activemq.apache.org/advisory-message.html#AdvisoryMessage-Disablingadvisorymessages the only side effect is that dynamic broker networks will not work. You should set connection property for that last advisory to not be used. Regards -- Dejan Bosanac