Relative Content

Tag Archive for asp.netasp.net-corerabbitmq

Why rabbitmq not declaring Queue?

var factory = new ConnectionFactory { HostName = “localhost” }; var connection = factory.CreateConnection(); using var channel = connection.CreateModel(); channel.QueueDeclare(queue: “ecommerce”, durable: false, exclusive: false, autoDelete: false, arguments: null); var json = JsonConvert.SerializeObject(@event); var body = Encoding.UTF8.GetBytes(json); channel.BasicPublish(exchange: “”, routingKey: “ecommerce”, basicProperties: null, body: body); this is my code to DeclareQueue and send the message […]