To allow the ActiveMQ client and broker to tunnel over HTTP, I'm following the reference documentation http-and-https-transports-reference and I add in activemq.xml
file:
<transportConnector name="http" uri="http://0.0.0.0:8081"/>
Starting activemq broker, and when consuming message, the error log is as follows:
Caused by: java.io.IOException: Failed to perform GET on: http://10.128.64.2:8081 Reason: Read timed out
at org.apache.activemq.util.IOExceptionSupport.create(IOExceptionSupport.java:34) ~[activemq-client-5.14.5.jar!/:5.14.5]
... 2 more
Caused by: java.net.SocketTimeoutException: Read timed out
Any help
Thanks