I am working on the messaging framework that listem and publish to the Rabbitmqserver in java following is the code
ConnectionFactory factory = new ConnectionFactory();
factory.setHost(hostName);
factory.setPort(portNumber);
factory.setVirtualHost(virtualHost);
factory.setUsername(username);
factory.setPassword(password);
return factory.newConnection();
Is there any limit on how many connection I could make ? I am not able to find our any limit in the rabbit documentation . when i try to make more than 137 connection it looks like it does not work. I am not able to find ny error in the Rabbitmq logs or in the application logs.when I try to debug it looks like last line just wait. my next step to go and figure out what is going on in the RABBITMQ java client code.
Any help or direction would be helpful and greatly appreciated.