Re: How to catch javax.jms.InvalidClientIDException from AMQ

2011-05-23 Thread Gary Tully
Have a peek at http://svn.apache.org/viewvc/activemq/trunk/activemq-core/src/main/java/org/apache/activemq/plugin/DiscardingDLQBrokerPlugin.java?view=markup or at some of the plugins in http://svn.apache.org/viewvc/activemq/trunk/activemq-core/src/main/java/org/apache/activemq/broker/util/ On 20

Re: How to catch javax.jms.InvalidClientIDException from AMQ

2011-05-20 Thread teapot
Gary: Is there any code example I can reference to add a plugin with overridden addConnection() method? Thanks. -- View this message in context: http://activemq.2283324.n4.nabble.com/How-to-catch-javax-jms-InvalidClientIDException-from-AMQ-tp3458347p3539348.html Sent from the ActiveMQ - User mai

Re: How to catch javax.jms.InvalidClientIDException from AMQ

2011-04-22 Thread Gary Tully
You could use a broker plugin nd override the addconnection method, to do a different check. That exception implements part of the jms spec so it may be better to understand nd tackle the root cause. If you really need to change behaviour the broker plugin is the way to go. On 21 Apr 2011 19:43, "t

Re: How to catch javax.jms.InvalidClientIDException from AMQ

2011-04-21 Thread teapot
Gary: We already have code on the client site(where connection is initiated) to handle the exception. But the same message also showed up on server log and we would like to filter it out. Our AMQ broker is configured and started via spring bean(org.apache.activemq.xbean.BrokerFactoryBean). Is th

Re: How to catch javax.jms.InvalidClientIDException from AMQ

2011-04-19 Thread Gary Tully
There is org.apache.activemq.ActiveMQConnection#setExceptionListener You may be better dealing with the root cause of the exception. Either properly close a connection or use the failover transport such that that exception is avoided b/c a new connection with the same id is treated as a reconnect

How to catch javax.jms.InvalidClientIDException from AMQ

2011-04-18 Thread teapot
Hi: I am using ActiveMQ 5.4.2. I used spring bean to configure ActiveMQ broker and run the application on Tomcat. Is there any way to plug in an exception handler for javax.jms.InvalidClientIDException from the broker? The handler is to deal with the exception the broker output to the Tomcat serve