9 questions
- Bountied 0
- Unanswered
- Frequent
- Score
- Trending
- Week
- Month
- Unanswered (my tags)
0
votes
0
answers
50
views
The sender tries to consume the recovered message instead of the consumer
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, ...
2
votes
1
answer
137
views
How to dynamically create tenants?
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:
...
2
votes
0
answers
283
views
.NET - Wolverine middleware with return value
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 ...
1
vote
0
answers
460
views
How can I configure Wolverine for publish/subscribe with more non competing subscribers using SQL Server as transport
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 ...
0
votes
1
answer
226
views
How to get IConfiguration in Wolverine/Lamar ServiceRegistry
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 ...
1
vote
0
answers
162
views
What is the prescribed methodology for integrating Wolverine framework within a HostedService?
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,...
1
vote
1
answer
402
views
Log Messages in Wolverine Indicating Possible Problem about Failed Route Determination
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 (...
2
votes
1
answer
260
views
How can I configure Wolverine for use with OrchardCore?
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 ...
2
votes
1
answer
99
views
How to pass type variable value into delegate parameter
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, ...