This is the main parsing class used throughout the code base: https://github.com/apache/activemq/blob/master/activemq-client/src/main/java/org/apache/activemq/util/URISupport.java
The NetworkBridgeFactory and NetworkBridgeConfiguration classes are probably good starting points to taking a peak at how the current config is done. https://github.com/apache/activemq/blob/master/activemq-broker/src/main/java/org/apache/activemq/network/NetworkBridgeConfiguration.java https://github.com/apache/activemq/blob/master/activemq-broker/src/main/java/org/apache/activemq/network/NetworkBridgeFactory.java On Thu, Feb 2, 2017 at 2:15 PM, exabrial <[email protected]> wrote: > Hey guys, I'd like to work on an enhancement for AMQ. I'd like to be able > to > configure a duplex network connector using just the URI... something like > this (which is not currently supported) > > broker:(vm://localhost,network:(static:tcp:// > localhost:61616)?duplex=true)?useJmx=false > > I imagine in AMQ there's a URI parser somewhere that would need the change. > Where would a good place to starting looking be? > > Thank you very much! > > > > -- > View this message in context: http://activemq.2283324.n4. > nabble.com/Duplex-configuration-network-connectors-with-URI- > configuration-tp4721539.html > Sent from the ActiveMQ - Dev mailing list archive at Nabble.com. >
