3,878 questions
- Bountied 0
- Unanswered
- Frequent
- Score
- Trending
- Week
- Month
- Unanswered (my tags)
0
votes
1
answer
81
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
45
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
96
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
96
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
80
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
52
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
49
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
139
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
45
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/...
0
votes
1
answer
232
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
98
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 Studio2022円\Community\MSBuild\Current\Bin\amd64\Microsoft.Common....
-2
votes
1
answer
60
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 ...
0
votes
0
answers
54
views
Unable to add a message to service bus queue from .NET endpoint
I'm trying to send a message to my service bus queue from a .NET API endpoint, but it kind of throws connection reset error after call.
Here's what I have done so far:
public async Task<string> ...
0
votes
0
answers
65
views
Spring JMS Listener lose connection with Azure Service Bus
I have a Spring Boot 3.4.6 application with a JmsListener annotated method which receive messages from a Azure Service Bus topic.
Randomly, the connection is lost between the application and Azure ...
1
vote
1
answer
96
views
Bicep: deploy a Service Bus Queue while the Service Bus in another resource group
I have a LA deployment that require adding a SB queue. However the the SB is located in another resource group than the LA.
So, when I call the existing the SB I use the following code:
resource ...