3,880 questions
0
votes
1
answer
90
views
Can't connect to Service Bus Emulator from Functions even though it works through API server
I'm using .NET Aspire with an ASP.NET api server, Azure service bus and Azure functions (isolated worker model), all running locally.
However, the problem is that I can't seem to connect to service ...
5
votes
1
answer
146
views
Polymorphic routing in NServiceBus's Azure Service Bus Transport version 6, how to do without enumerating all concrete types?
We are trying to upgrade from NServiceBus 8 to NServiceBus 10, and along with it comes the new topology for the Azure Service Bus transport. We are running into some issues with how to migrate from ...
0
votes
0
answers
69
views
Azure Service Bus queue listener is "missing" some messages
I've running over an issue with Service Bus queues and Azure functions lately. It got super hard to debug and at this point I've been completely stuck.
Just to give you some context:
I have a queue in ...
0
votes
1
answer
120
views
Azure Function App puts ApplicationProperties of ServiceBusMessage into the body instead of its own ApplicationProperties property
I have an Azure Function App version 4 using .NET 8. It is an isolated worker function app if that helps.
It is referencing these packages:
<PackageReference Include="Azure.Messaging....
0
votes
1
answer
77
views
Azure Service Bus message silently fails when i send to queue
I have a listener that processes a message from a queue and then sends it to my response queue.
It seems to not through any errors, but the second message seem to silently fail because it never goes ...
Best practices
0
votes
0
replies
101
views
.NET Messaging CDC - Monitoring
I have a question about messaging in our system. We have three services: Order, Cart, and Monitoring. We usually work with communication in such a way that each project has its own contracts, and ...
Best practices
1
vote
3
replies
117
views
.NET - Messaging - Where to place shared contracts
I have a question about sharing contracts between services using a message broker (more specifically, Azure Service Bus). I searched for it in various articles and asked a chatbot, but I didn't get a ...
2
votes
1
answer
92
views
Partial success scenarios in Azure Service Bus
In my application, each Azure Service Bus message contains multiple smaller “sub-messages,” which are processed individually. Some may succeed while others fail.
Normally, message handling follows the ...
0
votes
1
answer
65
views
azure service bus message not getting deleted from queue after triggering container app job and im not able to read message paylaod
I’ve set up an Azure Container Apps Job that is triggered by an Azure Service Bus queue. The job runs successfully each time a message is pushed to the queue, however the message is not removed from ...
0
votes
0
answers
54
views
Test Azure Service Bus with AmqpRetryOptions for ServiceBusSenderAsyncClient
I am trying to implement ServiceBusSenderAsyncClient with AmqpRetryOptions. However, I am unable to test it or create a mock scenario to test it. I tried mocking ServiceBusSenderAsyncClient, but the ...
2
votes
1
answer
166
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:
...
0
votes
0
answers
52
views
ServiceBusRuleManager timing out
I've got a project that's about 4 years old that uses ServiceBusRuleManager and it recently stopped working without issues.
I've created a whole new test following the guide at https://github.com/...
1
vote
1
answer
424
views
Azure Function App (Isolated) with Service Bus + Managed Identity → Getting 401 Unauthorized
We’re trying to connect an Azure Function App (Isolated process) to an Azure Service Bus Queue using a Managed Identity, but we’re constantly hitting a error when function start.
Setup
Function App (....
1
vote
0
answers
125
views
Azure Function Service Bus trigger
I get this error when I implement a Service Bus trigger and try to build/run it locally
1> C:\Program Files\Microsoft Visual Studio\2022\Community\MSBuild\Current\Bin\amd64\Microsoft.Common....
-2
votes
1
answer
80
views
Re-send dead letter message in Azure Bus [closed]
I have a topic with many subscribers (A, B, C). One of this (ex. B) failed to process a message and now, message is in dead letter for that subscriber.
Fixed the problem, i need to reprocess this ...