c++ - ActiveMQ CPP brokers URI problem -


i'm using activemq cpp 5.2.3.

i'm trying add transport.commandtracingenabled=true tcp transport layer:

failover://(tcp://10.10.10.1:61616transport.commandtracingenabled=true,tcp://10.10.10.2:61616?transport.commandtracingenabled=true)?randomize=true 

activemq doesn't accept it.

hovewer 1 tcp transport works fine:

failover://(tcp://10.10.10.1:61616transport.commandtracingenabled=true)?randomize=true 

i think mean version 3.2.3.

can expand on "activemq doesn't accept it" means?

looks you're missing '?' character after first ip/port

failover://(tcp://10.10.10.1:61616transport.commandtracingenabled=true,tcp://10.10.10.2:61616?transport.commandtracingenabled=true)?randomize=true 

there uri fixes coming in v3.2.5 might also.


Comments

Popular posts from this blog

c# - How to set Z index when using WPF DrawingContext? -

razor - Is this a bug in WebMatrix PageData? -

android - layout with fragment and framelayout replaced by another fragment and framelayout -