I'm upgrading Active MQ from 5.4.2 to 5.6.0 (latest available in Maven
repository)
All our Unit test cases and Build goes well, however,
... on deployment we find it creating Random URL connections to
tcp://127.0.0.1:
We create a ConnectionFactory in Spring that uses the following adapter
where
ok,. .. turns out this is generated by the Borker
..and is not the URL the client is sending on but the Broker indicating the
connection was abruptly broken by the client.
See: https://issues.apache.org/jira/browse/AMQ-2730
..however am still not sure how to Mute this?
The messages are sent usi
..we had a Check to test i a Connection is available before allowing the user
to enter a message.
In earlier verison (and yet to verify) , "con =
template.getConnectionFactory().createConnection();" was not relibale to
state if the Broker was up or not. ... not sure if there is a better way for
the