Hi Matej,
You need to specify at least two hosts to the failover for it to work -
It works like a retry when you use the same host.
failover:(tcp://10.1.1.1:61616,tcp://10.1.1.1:61616)
However, the error you are getting is possibly a design issue in
EtaUpdateReqHandler - Never cache the connection locally in an instance
variable. Use:
void method(){
Connection con = null;
try{
con = getNewConEveryTime();
}finally{
if(null != con){
con.close();
}
}
}
Andy.
On 08/10/2014 14:57, Matej wrote:
Hello all.
Anyone with experience with TomEE and ActiveMQ in production. We seem to
have problems with connections hanging, some poolling problem. Tomee s
connection factory returns to the Producer already closed connections.
We have tried with
BrokerXmlConfig =
ServerUrl = failover:(tcp://10.1.1.1:61616)
This does not seem to be working. Anything else we can do?
BR
Matej
BR
Matej
--
Andy Gumbrecht
https://twitter.com/AndyGeeDe
http://www.tomitribe.com