Questions tagged [azure-servicebus-subscriptions]
182 questions
1
vote
1 answer
Does billing of ACI continue to happen even when my python code is waiting for messages on service bus subscription?
I am have simple python code which subscribes to a service bus subscription. I have containerized this and deployed as part of ACI on Azure.
If message arrives on service bus subscription, the code is executed, executes it logic and then waits…

Deepak Agarwal
- 458
- 1
- 4
- 18
1
vote
1 answer
Azure Service Bus Schedules Messages cancellation using the message content or message header data
I would like to cancel the scheduled messages in the service bus queue/topic using the message content.
e.g: the scheduled message in queue/topic will be like this {UserName:'Scott', Test: 'This is test msg'}
I would like to cancel the schedules…

priyanka
- 11
- 1
1
vote
1 answer
Azure Service Bus Subscription Filter Arm Template not creating $Default filter
I am trying to deploy a rule to an Azure Topic Subscription. The arm template deploys the rule "workday" without the $Default rule, however, the subscription never gets the message when I publish to the Topic. It only works when I add the $Default…

Jody
- 323
- 2
- 11
1
vote
1 answer
How to retry topic reserver loss connection on azure service bus javascript client
I am listing to a topic in azure service bus with the following javascript code.
Library and version @azure/service-bus 1.1.2
const sbClient = ServiceBusClient.createFromConnectionString(
config.merchant_event.connection_string
…

Dinusha
- 696
- 1
- 14
- 27
1
vote
1 answer
Azure bus integration with GO based application
We are trying to connect to Azure service bus entity from "GO" language application & the integration with Azure service bus entity is possible by supplying either SAS token or Azure AD OAuth2.0 token which will be obtained via security principals.…

191180rk
- 735
- 2
- 12
- 37
1
vote
0 answers
Azure Service Bus Topic Subscription REST API
How do I use Azure REST APIs to subscribe to a service bus topic? I want to create a subscription with "Enable Sessions" as the ordering of messages is very important for me. I have the below code that works now, that registers a message…

Thomas
- 1,970
- 4
- 28
- 59
1
vote
0 answers
Shared access signature support with Azure Service Bus trigger input/output for Azure Functions 2
Azure Service Bus trigger is used for Azure Functions for Topic and subscription, I wonder if Azure Service Bus trigger input and output support shared access signature…

Pingpong
- 7,681
- 21
- 83
- 209
1
vote
1 answer
Adding filter criteria to Azure Service Bus Subscriptions
I'm using Azure Service Bus Explorer in managing subscriptions for existing Azure Service Bus topics. Now we have a new Topic that will receive messages from multiple source systems. Based on the source system i need to create different…

user1941025
- 541
- 6
- 21
1
vote
1 answer
Azure Service Bus Subscription Client polling interval
I have managed to write a small console application to connect to a topic/subscription in the Azure Service Bus. I have sent messages to the subscription and registered a message handler. I see the message handler
polls every 60 seconds. Is there…

Simon
- 21
- 2
1
vote
2 answers
Using parameters in Azure Service Bus Subscription SqlFilter expression
I am using an ARM template to try and deploy a subscription to an Azure Service Bus Topic which filters messages based on the To system property. I would like to pull the value for the filter from an ARM template parameter, but I can't seem to get…

gwoody1984
- 315
- 3
- 16
1
vote
2 answers
Azure Service Bus - only one subscriber receives messages
NOTE: Following on from the responses I got, it seems that Azure Service Bus is not the right tool for this job. I'm leaving the question here in case it's of use to anyone else.
I want to set up a situation where I have one app that publishes…

Avrohom Yisroel
- 8,555
- 8
- 50
- 106
1
vote
2 answers
Unable to filter service bus topic messages using SqlFilter
I've subscribed to a topic and the sender sets two UserProperties 'Classification' and 'SubClassification'. I want to filter the messages with Classification set to 1. I tried adding the following SqlFilter.
SqlFilter("Classification='1'")
It…

vamshi s
- 11
- 1
1
vote
1 answer
Openly available azure service bus topics
we are working on an integration with service bus. We don't have an account with azure, so we can't run our own server, but our client does.
For testing purposes, are there any openly available service bus topics I can subscribe to and test our…

otmezger
- 10,410
- 21
- 64
- 90
1
vote
1 answer
Parsing JSON in an Azure Service Bus rule
I am trying to add a rule on a subscription on Azure service bus. The payload of the message looks like this:
{
header: {
// a bunch of data
},
body: {
type: "payment",
// a bunch of data
}
}
Using New-AzureRMServiceBusRule to…

Jeff Hornby
- 12,948
- 4
- 40
- 61
0
votes
0 answers
How to ensure ordered delivery of messages on a session enabled queue/subscription when dead lettering happens in Azure Service Bus
I am working on building an integration project which involves the usage of Azure Service Bus Topic subscriptions and an Azure Function app subscribing to the topic. My essential requirement is to ensure the updates related to a user(which can…

Raju Rudru
- 1,102
- 12
- 19