Skip to main content
0 votes
0 answers
88 views

I'm a newbie in Message Queues, so, for my current task I choose WolverineFX framework. So, the task: I have one service which produces orders (simple algotrading strategy based on state machine) and ...
Dmitriy's user avatar
  • 977
Advice
0 votes
0 replies
155 views

I have .NET 10 Background worker service that I'm looking into using Wolverine with now that MediatR has changed to a commercial license. Here's my Program.cs: var builder = Host....
Mark's user avatar
  • 2,482
0 votes
0 answers
63 views

I have two applications: one acts as the publisher and the other as the consumer. I’m using Wolverine with PostgreSQL as the message broker. Everything works correctly — the publisher sends messages, ...
Farshad Shahsavari's user avatar
2 votes
1 answer
166 views

We recently decided to move from MassTransit to Wolverine for sending messages using Azure Service Bus. However, we’ve run into some issues with our multi-tenant setup. Our setup looks as follows: ...
WillemCoding's user avatar
4 votes
1 answer
567 views

I'm switching from MediatR to Wolverine. It's handy to use. However, I have run into one problem. I want to add middleware to check authorization before using the handler. Which is not a problem ...
Petr Klekner's user avatar
1 vote
0 answers
505 views

I would like to configure Wolverine for publish/subscribe pattern with more non-competing subscribers using SQL Server as transport. I can manage to set it up, but only with competing subscribers. I ...
CHMaagaard's user avatar
0 votes
1 answer
248 views

I am using Wolverine as my framework of choice. Wolverine comes with Lamar as IoC Container. I have split my container registrations into ServiceRegistries. Now I need to access IConfiguration ...
Luka's user avatar
  • 4,211
1 vote
0 answers
177 views

So far I have been using MediatR.Courier for subscribing to messages in my background services / asp.net hosted services. Why, because Hosted services are singletons, and NotificationHandler are not,...
Luka's user avatar
  • 4,211
1 vote
1 answer
518 views

I'm very new to Wolverine and noticed a bunch of INF level log messages when processing a request: [17:41:55 INF] No routes can be determined for Envelope #018d971d-986c-486f-9d65-5eaa449fa40b (...
onefootswill's user avatar
  • 4,206
2 votes
1 answer
294 views

I am trying to configure Wolverine in a .NET 7 application that is leveraging the OrchardCore framework. The problem arises from Wolverine swapping out the IoC container, but specifically that it ...
Mark Clark's user avatar
2 votes
1 answer
101 views

I am creating an dotnet core C# Web API app using wolverine (probably not important) Each Command is configured in program like so by Mapping a Post. public record CreateIssue(Guid OriginatorId, ...
4imble's user avatar
  • 14.5k