Nair
Nair

Reputation: 21

Can we use MSMQ in .NET6

In.NET 6 (C# 10), I'm creating a console/worker service. In order to store and retrieve messages, I intend to use Microsoft Message Queuing. Like when one service queues up a message and another service retrieves it from the queue. Recently, I read that MSMQ would no longer be supported in.net core. Is it real? any additional service we might utilize for the same purpose (other than Azure).

Upvotes: 1

Views: 3607

Answers (1)

Spencer
Spencer

Reputation: 271

System.Messaging (MSMQ) is not supported in the .net ecosystem. You will have to use an alternative message broked such as:

If you're locked in to MSMQ, I think there are experimental MSMQ bridges out there for .net but they won't have official support.

Upvotes: 1

Related Questions