masstransit Questions
2
Solved
First of all, excuse my English, it's very bad. I am using MassTransit with Azure Service Bus for asynchronous communication between microservices. By their own definition, and to avoid generating ...
Speech asked 24/9, 2018 at 10:24
4
Solved
I've tried using MassTransit to publish a message to a topic named events in an Azure Service Bus. I have problems configuring MassTransit to use my predefined topic events, instead it creates a ne...
Patino asked 22/3, 2018 at 16:50
2
Solved
Being a new user of MassTransit and RabbitMQ I'm currently trying to make my ASP.NET core service to work with MassTransit.
Taking this documentation section to configure MassTransit and ASP.NET C...
Michale asked 27/6, 2019 at 13:14
2
Solved
I am using the default configuration on latest RabbitMQ server (guest is admin) but I get the next exception when I run the RequestResponse sample.
OperationInterruptedException: The AMQP operat...
Priestley asked 9/9, 2017 at 22:10
2
Solved
For my client we're investigating the use of MassTransit. MassTransit seems to be focussed around RabbitMQ as for message transport. Due 'intrastructural constraints' of the client, we're stuck wit...
Phage asked 18/7, 2016 at 7:49
1
Solved
I'm using .NET 8, my DbContext is null when call in primary constructor, but when call in normal constructor.
This is my DbContext:
public class DataContext(DbContextOptions<DataContext> opti...
Sopping asked 10/1 at 14:0
3
Solved
My team wants to move to microservices architecture. Currently we are using Redis Pub/Sub as message broker for some legacy parts of our system. My colleagues think that it is naturally to continue...
Militarist asked 1/10, 2018 at 13:58
0
I'm performing integrations tests on my dotnet runtime and I am using MassTransit TestHarness to simulate a message broker. Everything works great, but I can't find an easy way to lock the tests ma...
Retriever asked 2/2, 2023 at 11:7
1
I'm trying to setup MassTransit with Autofac (latest NuGet packages) but it seems that consumers cannot be registered at the ContainerBuilder level.
Has anyone managed to use MassTransit with Autof...
Lotti asked 25/8, 2019 at 17:52
2
Solved
Good day
I'm configuring Masstransit for .net6 net core application
Have added Masstransit nuget packages:
<PackageReference Include="MassTransit.Extensions.DependencyInjection" Versio...
Hie asked 1/12, 2021 at 16:1
2
I want to unit test my MassTransit consumer which does not send a response back. Currently my test does seem to be publishing a message, but the consumer is not being triggered, so my breakpoints a...
Kroll asked 9/6, 2022 at 16:30
1
Solved
in a WorkerService .Net I am trying to configure a MassTransit host with RabbitMq but I am getting this Error
Reference to type 'IBusControl' claims it is defined in 'MassTransit', but it could no...
Albarran asked 27/5, 2022 at 9:53
6
Solved
I have one .NET 4.5.2 Service Publishing messages to RabbitMq via MassTransit.
And multiple instances of a .NET Core 2.1 Service Consuming those messages.
At the moment competing instances of th...
Lazarolazaruk asked 25/7, 2019 at 20:36
3
MassTransit states that we should use interfaces for message contracts :
It is strongly suggested to use interfaces for message contracts,
based on experience over several years with varying le...
Ironstone asked 5/6, 2017 at 12:4
2
I have a simple service that accepts requests at an HTTP Endpoint. The action for the endpoint uses MassTransit to publish an event alerting consumers that an entity has been updated. My consumer f...
Extortionate asked 6/7, 2020 at 15:10
1
I have several Asp.Net Core Web APIs that use Bearer authentication and IdentityServer4.AccessTokenValidation middleware to introspect tokens, authenticate the user and create claims. This works fi...
Heloise asked 4/2, 2020 at 19:12
2
Solved
Wanting to design my test around a MassTransit Consumer where i can send the consumers messages with a variety of content. Base on the content of the message the consumer will "do work" and relay a...
Sse asked 24/10, 2017 at 12:52
1
Solved
I'm wondering if I'm doing something wrong, I expected MassTransit would automatically register ReceiveEndpoints in the EndpointConvention.
Sample code:
services.AddMassTransit(x =>
{
x.AddServ...
Heifetz asked 3/7, 2020 at 10:45
5
Solved
I'm struggling with a pros and cons list regarding NServiceBus and MassTransit.
Now I know there is already a thread in here, but it doesn't really answer my questions.
Here is what I've re...
Fearful asked 30/11, 2012 at 14:46
2
Solved
I created a microservice application that microservices using MassTransit and RabbitMQ for communication.
Each microservice developed using clean architecture, so we have MediatR inside each micros...
Oligopoly asked 29/5, 2020 at 10:49
2
I'm currently building a system using MassTransit and RabbitMQ as my messaging layer. I'm trying to find a way to have a Consumer that listens on all messages of all types on the bus. This is for o...
Allbee asked 18/12, 2015 at 15:4
0
I am implementing a library for publisher and consumers of events to communicate through Azure Service Bus and I thing MassTransit could be a good option.
I am able to work publish multiple events...
azureservicebusmasstransitazure-servicebus-queuesazure-servicebus-topicsazure-servicebus-subscriptions
Heterocercal asked 7/3, 2020 at 20:43
2
Solved
I am not able to figure out on how to specify the Exchange and Queue in my GetSendEndpoint()) task when sending / publishing messages?
As per MassTransit documentation https://masstransit-project...
Clastic asked 17/2, 2020 at 16:56
2
Solved
As pointed out [in one of my questions on SO] (Why a simple configuration in MassTransit creates 2 queues and 3 exchanges?), MassTransit for RabbitMQ creates automatically a certain number of queue...
Yseulte asked 10/5, 2019 at 9:30
1
Solved
I am using MassTransit 5.5.5 version and xunit 2.4.1
My consumer looks like this
public class StorageInformationConsumer : IConsumer<CreateStorageInformationSummary>
{
private readonly IBu...
Lonnalonnard asked 29/8, 2019 at 23:11
1 Next >
© 2022 - 2024 — McMap. All rights reserved.