I double checked just to make sure: There is this code in org.apache.activemq.network.NetworkBridgeFactory
public static DemandForwardingBridge createBridge(NetworkBridgeConfiguration configuration, Transport localTransport, Transport remoteTransport, final NetworkBridgeListener listener) { DemandForwardingBridge result = null; if (configuration.isConduitSubscriptions()) { // dynamicOnly determines whether durables are auto bridged result = new DurableConduitBridge(configuration, localTransport, remoteTransport); } else { result = new DemandForwardingBridge(configuration, localTransport, remoteTransport); } if (listener != null) { result.setNetworkBridgeListener(listener); } return result; } I put a breakpoint in and made it display the result of configuration.isConduitSubscriptions(), it shows as true for every call for every end point. Can you think of any other place that I may have missed that could change the conduitSubscribers behavior? -- View this message in context: http://activemq.2283324.n4.nabble.com/Duplicate-messages-received-with-ActiveMQ-5-13-2-tp4728627p4728931.html Sent from the ActiveMQ - User mailing list archive at Nabble.com.