Hello we migrated activemq from < 5.5 version to 5.12.3. below is code snippet for to create n/w connector
NetworkConnector networkConnector = new DiscoveryNetworkConnector(uri); networkConnector.addDynamicallyIncludedDestination(...) networkConnector.addExcludedDestination(...) we are using Camel request/reply pattern with tempQueue. so our n/w connector working only when we are removing => networkConnector.addDynamicallyIncludedDestination(...) so either we need to remove or we need to provide this for TempQueue also. TempQueue is starting with ID_ so, what pattern I need to give ? I tried different patterns like below ID.> ID> ID.* ID* but none of these above are working. we need exact pattern to specify for addDynamicallyIncludedDestination for tmpQueue also then only we will get response otherwise we need to remove this addDynamicallyIncludedDestination. so please suggest pattern & do we need to add it as new ActiveMQTempQueue("ID PATTERN") or new ActiveMQQueue("ID PATTERN") ? bcz if we add ActiveMQTempQueue I am thinking this will not consider in n/w bridge. -- Sent from: http://activemq.2283324.n4.nabble.com/ActiveMQ-User-f2341805.html