Problem:- ActiveMQ is installed on a linux machine which can be reachable by ping6. When broker URL is given as hostname, the messages are consumed. However, as soon as I specify broker URL in IPV6 format, I get connection timeout error.
Broker URL:- tcp://[fe80::XXX:XXXX:XXXX:XXXX]:61616?wireFormat.maxInactivityDuration=1000 Error:- javax.jms.JMSException: Could not connect to broker URL: tcp://[fe80::XXX:XXXX:XXXX:XXXX]:61616?wireFormat.maxInactivityDuration=1000. Reason: java.net.SocketTimeoutException: connect timed out Broker.xml:- <transportConnectors> <transportConnector name="openwire" uri="tcp://0.0.0.0:61616"/> </transportConnectors> Code segment where I get error:- connectionFactory = new ActiveMQConnectionFactory(user, password, url); connection = connectionFactory.createConnection(); Can anyone please point out if any parameters need to be set for dealing with IPV6 address. Any help would be very much appreciated. I am using ActiveMQ 5.3.0. -- View this message in context: http://old.nabble.com/ActiveMQ-connection-time-out-IPV6-address-tp29546895p29546895.html Sent from the ActiveMQ - User mailing list archive at Nabble.com.