Unlock a world of possibilities! Login now and discover the exclusive benefits awaiting you.
Hi, I also want to read the message from RabbitMQ. Can you please help here. How you achieved it. What are setting you did.
Hi, Could you please help me for the same. As I am not able to consume message from RabbitMQ
hi Vaibhav,
you can go to the rabitMQ console from browser and see what are the setting are used and corresponding parameter you have to set. I was able to consume the msg from rabbitMQ,
"rabbitmq://"+context.hostname+":"+context.port+"/"+context.exchangeName+"?vhost="+context.vhostName+"&username="+context.username+"&password="+context.password+"&exchangeType="+context.exchangeType+"&autoDelete="+context.autoDelete+"&queue="+context.queueName+"&routingKey="+context.routingKey
i used above string in cMessagingEndPoint component. you have to add rabbitmq parameter as I added above (autoDelete)
if accept the solution if you are satisfied with solution.