Questions tagged [azure-servicebus-subscriptions]

182 questions
0
votes
1 answer

Azure Service Bus: The connection string used for an Service Bus client must specify the Service Bus namespace host and either a Shared Access Key

Why is my RootManageSharedAccessKey Connection String Invalid? Code: When executing the code below, I receive an error about an invalid connection string: serviceBusClient <- new…
Scott Nimrod
  • 11,206
  • 11
  • 54
  • 118
0
votes
1 answer

Service Bus sending to topic but not forwarding to subscription

Whenever I send a message to the topic I am unable to receive it from the subscription. From my understand this should be possible. Not sure what in the code is currently making it unable to forward the message from the topic to the…
0
votes
1 answer

ServiceBusError: The messaging entity

I am using the @azure/service-bus library in NestJs. The code is working and I can send and receive messages. However, when I receive messages, I am getting the following error. ServiceBusError: The messaging entity…
0
votes
0 answers

Supply bindigs to SignalR that came from a mesage on the service bus

I've this scenario public async Task Run([ServiceBusTrigger("chat", "trataLikes", Connection = "ServiceBusConn")] string mySbMsg, [SignalR(HubName = "{some variable or a json value from the message}")] ICollector
0
votes
1 answer

Javascript : to explicitly send a message to dead letter queue in azure function app which is service bus triggered

I have service bus triggered azure function app. In the function app based on some condition i want to transfer the message to dead letter queue. const sbClient = new ServiceBusClient(connectionString); const receiver =…
0
votes
0 answers

Terraform throwing error while trying to create Azure service bus subscription filters

I would like to create three Azure service bus subscriptions and then two of the subscriptions need to have filters on them. My code is given below resource "azurerm_servicebus_topic" "default" { resource_group_name =…
0
votes
1 answer

Terraform plan giving error while trying to create Azure Service Bus subscriptions

I am planning to create three Azure service bus subscriptions belonging to a single topic. The three subscriptions will be having unique properties. So should i be doing this by dynamic blocks in Terraform? I have my below code, but it is throwing…
0
votes
1 answer

Azure Service Bus - Is EnableCrossEntityTransactions necessary for forwarding messages within subscriptions under the same topic?

I've read all the documentation I could find and this case is still not clear to me. When I receive a message from subscription A and then use a transaction to complete the message and send a new message to the same topic (but to a different…
0
votes
1 answer

Azure Topics and subscriptions

In case of azure service bus queues two modes of operation like a. Receive & Delete b. Peek & Lock are available. And In Peek & Lock Mode there are different message settlement options like Complete, Abandon etc. Is it possible to write filters for…
0
votes
1 answer

Azure Service Bus Topic Subscription

I have a topic that has multiple subscriptions. When one of the subscription fails the message is moved to the DLQ. Is there a way to find out which subscription failed? and if the same message is processed again then how to make sure that the…
0
votes
2 answers

Azure service bus read all messages at once using Azure.Messaging.ServiceBus

I am using Azure.Messaging.ServiceBus nuget package to work with Azure service bus. We have created a topic and a subscription. The subscription has 100+ messages. We want to read all the message and continue to read message as they…
0
votes
2 answers

Is it possible to add or define user or custom properties for service bus topic message in azure function app code in python

Currently we are working with python azure function service bus topic trigger Our case is we have one topic and in that we have 3 subscriptions , So we want to send the mgs to particular subscription that why is have add sql filter to that…
0
votes
1 answer

How to add filter for azure function service bus topic trigger using python code

I have requirement of : - I have azure function service bus topic trigger by using python code, So the service bus topic having one topic and multiple subscription with in it. I have to add a sqlfilter to the subscription so that the message which I…
0
votes
1 answer

Want to have Azure.Messaging.ServiceBus ServiceBusReceiver in the parameters of the trigger

I have a Function App (FA) with a Service Bus (SB) trigger. Previously we used the Microsoft.Azure.ServiceBus library. and we had a MessageReceiver instance between the parameters in the function trigger. Now, I want to migrate the funcion from…
0
votes
2 answers

Deleting subscriptions from Azure Service Bus Topic through C#

Is there any way to delete subscriptions from Azure Service Bus Topic, through C# code? (I know how to delete it only through the Azure portal website)