Questions tagged [azure-servicebus-topics]

660 questions
0
votes
1 answer

how can i calculate the time sending data to azure service bus topic

I'm trying to calculate the time between the data sending from my device to azure service bus topic. I have azure function to listen topic. Also, the data I sent to the topic has a DateTime. In azure function, I create new DateTime and minus the…
Lawrence song
  • 158
  • 1
  • 15
0
votes
2 answers

Sorting Service Bus Queue Messages

i was wondering if there is a way to implement metadata or even multiple metadata to a service bus queue message to be used later on in an application to sort on but still maintaining FIFO in the queue. So in short, what i want to do is: Maintaining…
H4p7ic
  • 1,669
  • 2
  • 32
  • 61
0
votes
1 answer

how to enable duplicate detection for a azure service bus topic which is already running

How to enable duplicate detection for a topic which is already running. There is no way to change this in portal and seems disabled in service bus explorer
0
votes
1 answer

How do i know or confirm that Azure service bus received the brokered message?

I am persisting my domain events to my db. I have a webjob which reads those events and then forwards them to the proper queue/topic and then marks the message as IsForwarded in the db. My question is does TopicClient.Send() and QueueClient.Send()…
0
votes
1 answer

Can't add Azure Service Bus Topic Subscription filter rule

I'm trying to create filter rule in service bus topic subscription. foreach(var reciver in recivers) { try { var client = SubscriptionClient.CreateFromConnectionString(ServiceBusConnectionString,…
0
votes
3 answers

Get message count from SubscriptionClient

For logging purposes, I want to get the message count of an Azure Service Bus subscription, given a subscription client. The only examples I found use the NamespaceManager, but that seems a bit redundant to me since I already have a…
Thomas Schreiter
  • 770
  • 2
  • 10
  • 25
0
votes
2 answers

How to check if a Azure Service Bus has Premium Pricing

In one of my Azure Web Apps I create an Azure Topic when it doesn't exist yet during the warmup(start) of our Azure Web App. On topic creation time I want to know whether the service bus has a premium pricing tier, when yes I want to disable…
Patrick Peters
  • 9,456
  • 7
  • 57
  • 106
0
votes
1 answer

Azure ServiceBus SqlFilter Expression Syntax error

When adding a Rule to a SubscriptionClient, I get a syntax error if I don't remove all of the whitespace. None of the numerous examples I've read have to do this. Any ideas why? // This works (whitespace stripped from expression) var rd= new…
pseabury
  • 1,615
  • 3
  • 16
  • 30
0
votes
0 answers

What is the purpose of "EnableSubscriptionPartitioning" property in an Azure Service Bus Topic?

When it comes to partitioning in an Azure Service Bus Topic, there are two properties: EnablePartitioning and EnableSubscriptionPartitioning. It is very clear to me what EnablePartitioning property does. Based on my understanding of this property,…
Gaurav Mantri
  • 128,066
  • 12
  • 206
  • 241
0
votes
1 answer

Getting "Authorization Failure (401)" when updating an Azure Service Bus Subscription using REST API

I am trying to update an Azure Service Bus Subscription using REST API. When I include "ForwardTo" property in my request XML, I am getting Authorization Failure (401) error from Service Bus. Here's my request XML looks like:
Gaurav Mantri
  • 128,066
  • 12
  • 206
  • 241
0
votes
1 answer

Durable subscription in Java (Qpid JMS) with Azure Service Bus

I am testing with pub/sub using Java and Qpid JMS 0.23. I have created a topic in SB named "test.topic". I can publish messages to the topic from test app but when trying to subscribe (dynamically creating subscription) it fails with…
4integration
  • 193
  • 1
  • 3
  • 13
0
votes
1 answer

Cannot add a rule to Azure topic subscription

It's a very basic scenario and I don't know why it does not work.. I cannot add a rule to a topic. static void Main(string[] args) { var subscriptionClient = new SubscriptionClient( nsConnString, topicName, …
Dmitry
  • 1,220
  • 2
  • 11
  • 18
0
votes
1 answer

What happens when you try to cancel a scheduled Azure service bus message that has already been enqueued?

I'm trying to come up with the best way to schedule a message for an Azure service bus queue or topic while leaving the option open for immediately sending a message instead of the scheduled message. I want to make sure I can protect myself against…
0
votes
2 answers

How to read Azure Service Bus Topic Name contains / in it. eg: xxx/t000 in PowerShell

I am using PowerShell to read the Azure Service Bus Topics. The topic name contains some special characters in it. Eg. Topic name is xxx/t000. When I use: Get-AzureRmServiceBusSubscription -ResourceGroup 'rg_name' -NamespaceName 'sbname' -TopicName…
0
votes
1 answer

Azure service bus Topic subscription, able to have multiple sql-filter properties?

Just a questions about Azure service bus topic subscriptions, is it possible to assign multiple properties to a single subscription? Also is it possible to enable null values to one of the properties? What I'm trying to do is to be able to use a…