Questions tagged [easynetq]

EasyNetQ is a simple to use, opinionated, .NET API for RabbitMQ.

[EasyNetQ] (easynetq.com) is the leading client API for RabbitMQ on .NET, with over 100,000 downloads on NuGet.org. It is an open source project originally sponsored by 15below the travel industry experts.

QuickStart can be found here

Documentation can be found here

183 questions
0
votes
1 answer

FIFO queue to guarantee ordered "processing" of messages (multiple consumers)?

I got asked this question today and the answer seem to divide opinion among my team. Scenario You have multiple publishers sending events (messages) to RabbitMQ (via EasyNetQ) about certain topics. They said they guarantee FIFO. They want to…
Dasith Wijes
  • 1,328
  • 12
  • 22
0
votes
1 answer

EasyNETQ cluster - IClusterHostSelectionStrategy not working when publishing message

I added new RabbitMQ Server & configured my Publisher connections string to with "host=PC1:5672,PC2:5672" var bus = RabbitHutch.CreateBus(connectionString, x => x.Register,…
liormk1
  • 3
  • 2
0
votes
1 answer

EasyNetQ debug issue

We have RabbitMQ working for us for some time now but recently we starting getting below error EasyNetQ.EasyNetQException: No handler found for message type To look what happening, i download EasyNetQ from Git and now when i try to debug, i get…
Jay
  • 1,037
  • 5
  • 23
  • 41
0
votes
0 answers

EasyNetQ Exclusive queue disposing

I'm using EasyNetQ / Rabbitmq i'm creating 10 exclusives queues, that's wait for a message, unfortunatly all theses queues are disposed before the end for my prog. I'm suspecting a BasicCancel event. But i can't even know why did i received it. What…
A.Caillet
  • 101
  • 6
0
votes
1 answer

rabbitmq queue latency with easynetq

i have written a simple publish\subscribe tool for rabbitmq using easynetq driver. However the possible seems to be horrible. i send messages with a Datetime field on it and measure the time it reaches to be received by the subscriber. Queue…
TrustyCoder
  • 4,749
  • 10
  • 66
  • 119
0
votes
1 answer

error connecting to rabbitmq using easynetq driver

I was connecting to RabbitMQ with easynetQ driver without any issues when all of a sudden. I started getting this error System.ArgumentException occurred Message: Exception thrown: 'System.ArgumentException' in System.dll Additional information:…
TrustyCoder
  • 4,749
  • 10
  • 66
  • 119
0
votes
1 answer

EasyNetQ Windows Service messaging architecture not quite working

So I am trying to experiment (based on this EasyNetQ toturial: Quick Start - EasyNetQ) with a simple EasyNetQ messaging architecture involving a Publisher and a Subscriber and it doesn't seem to be working quite as expected. Both my Publisher and…
lukegf
  • 2,147
  • 3
  • 26
  • 39
0
votes
1 answer

implementing work queue pattern with easynetq driver on rabbit mq

How to implement work queue in rabbit mq using easynetq driver? Also acknowledgement in both publisher and subscriber is desirable. The idea is that one message will be processed only by a single subscriber. Is this a default behavior or the…
TrustyCoder
  • 4,749
  • 10
  • 66
  • 119
0
votes
0 answers

System.BadImageFormatException: Could not resolve field token 0x0400000b

I'm getting an error when running this F# Script in the Xamarin Studio (Mac OS X) F# Interactive window: #r @"../../packages/RabbitMQ.Client/lib/net45/RabbitMQ.Client.dll" #r @"../../packages/EasyNetQ/lib/net45/EasyNetQ.dll" open System open…
Márcio Azevedo
  • 123
  • 1
  • 4
  • 8
0
votes
0 answers

Change EasyNetQ connection on the fly

I store my RabbitMQ connection string in database so that I can change it on the fly but considering that EasyNetQ services are designed to be set up and IoC register as singleton during app bootstrapping it seems almost impossible to switch…
Evan
  • 31
  • 2
0
votes
1 answer

My asp.net mvc 4 application does not send/publish to rabbitmq

I have an application, an asp.net mvc 4 application. I want to use rabbitmq with easynetq. In my local computer, it works perfectly. But in the production environment which is windows server 2012, it does not send any message. I could not…
iknowitwasyoufredo
  • 605
  • 1
  • 10
  • 19
0
votes
3 answers

Does EasyNetQ support nack?

What I'm really trying to do is leave the message on the queue in the case where it is rejected by the current consumer. In RabbitMQ I could send a NACK to accomplish this. Is NACK supported in EasyNetQ? Is there another way to achieve the behavior…
BitMask777
  • 2,543
  • 26
  • 36
0
votes
1 answer

RabbitMq Clustering

I am new to RabbitMq. I am not able to understand the concept here. Please find the scenario. I have two machines (RMQ1, RMQ2) where I have installed rabbitmq in both the machines which are running. Again I clustered RMQ2 to join RMQ1 cmd:/>…
DSam
  • 51
  • 1
  • 7
0
votes
1 answer

Getting ninject Kernel in a module with topshelf.ninject

I am writing a new service, and am using Topshelf and EasyNetQ for the first time. I am not using MVC or WebAPI (which most ninject tutorials/blog posts seem to assume). the key dependencies are Topshelf, Ninject (the mono build version not the…
Mark Jones
  • 1,461
  • 1
  • 14
  • 23
0
votes
1 answer

Cannot implement Multiple Handler for a Consumer in RabbitMQ using EasynetQ Client for .Net

I'm using Rabbitmq Queue solution and i have 4 queues and one consumer. i want my consumer consume all of these queues and provide separate Handler for each one. I googled this and found that Rabbitmq and EasyNetQ (.Net Client for RabbitMQ),…
Javad Norouzi
  • 327
  • 4
  • 11