Questions tagged [azure-servicebus-subscriptions]
182 questions
0
votes
1 answer
How can I see configured rules for a Azure Service Bus topic subscription on Mac (or online)?
I have a forwarding subscription already configured/defined in Azure Service Bus and it has a filter rule which I want to see but the Azure Portal doesn't show filter, it doesn't even show what is 'forwardTo' property of the subscription is. I am…

mehran
- 1,314
- 4
- 19
- 33
0
votes
1 answer
Azure topic subscription filter / Subscription Rule
I have created a sample client which listens to a subscription that is attached to a Service-Bus topic. Now whenever a message is posted in that topic, its being captured by the client listening to subscriber. (as documented…

Amit
- 465
- 2
- 6
- 20
0
votes
1 answer
Unable to set TimeSpan based parameter on an Azure Service Bus subscription filter using Microsoft.Azure.ServiceBus library
Using the older "Windows.Azure.ServiceBus" library, I am able to setup a SqlFilter that takes as its parameters a TimeSpan, but when I try the same using the "Microsoft.Azure.ServiceBus" library it fails with the following error:
Object is not of…

Raj Rao
- 8,872
- 12
- 69
- 83
0
votes
1 answer
How to specify the sender subscription in a message in azure service bus topic subscription?
In azure servicebus I have a topic with a subscription. When this topic recieved a message, the subscription must forward the message to a logging-queue. How can I specify that the forwarded message is from this topic?
I need the name of topic in…

milan-W
- 65
- 1
- 9
0
votes
1 answer
Creating Topic Filter rule via CorrelationFilter with Azure Functions App
I want to create filter rule via CorrelationFilter for subscriptions associated with a Topic, as it is faster than SQLFilter.
The rule: any message that contains a header that equals to a string will go to one subscription, another string will go to…

Pingpong
- 7,681
- 21
- 83
- 209
0
votes
1 answer
Message ordering delivery for Queues and Topics/Subscriptions with Azure Service Bus
I am confused with whether or not message ordering delivery is supported by default for Queue and Topic.
It said below FIFO message delivery is supported for Queue. I assume this is the same as message ordering delivery.
Queues offer First In,…

Pingpong
- 7,681
- 21
- 83
- 209
0
votes
1 answer
pass action-sql-expression to a topic subscription
I want to do action-sql-expression command on a subscription. I have this:
az servicebus topic subscription rule create ^
--resource-group %resourcegroup_name% ^
--namespace %namespace_name% ^
--topic-name %topic_name% ^
--subscription-name…

milan-W
- 65
- 1
- 9
0
votes
1 answer
How to read messages from topic using multiple subscribers at a time?
I am working on Azure ServiceBus Topic-Subscriptions. I created one topic and two subscriptions in Service Bus Namespace. In my current application, I am able to send messages to topic after that I receive messages by using subscribers.
But…

Pradeep
- 5,101
- 14
- 68
- 140
0
votes
2 answers
Azure service bus functions. Receive messages in batch
I would like to receive messages from a Azure ServiceBus Topic in batch mode.
Reading https://learn.microsoft.com/en-us/azure/azure-functions/functions-best-practices it states:
For C# functions you can change the type to a strongly-typed array.…

Dennis
- 1,810
- 3
- 22
- 42
0
votes
0 answers
Finding Azure Servicebus Rogue Subscription Consumer
I've got a very weird problem on our development environment. Some of our developers have created some workers to test out code that connects to an azure servicebus topic subscription consuming the incoming events.
However, after cleaning up all…

CloudNativeL
- 41
- 3
0
votes
1 answer
Getting next message in an Azure Service Bus Subscription with an Azure Function, with an HTTP Trigger
I want to create an Azure Function that will fulfill the following requirements:
Trigger upon an HTTP request
Looks at an Azure Service Bus Subscription and gets the next message based on a set of filters specified in the HTTP Request.

Neko
- 21
- 6
0
votes
1 answer
What happened to CompleteAsync and AbandonAsync method for ServiceBusTriggers in Azure Functions 2.0
I could implement something similar to the following in Azure Functions 1.0, but now it seems with 2.0 CompleteAsync() and AbandonAsync() are no longer available.
[FunctionName("Process")]
public static async System.Threading.Tasks.Task RunAsync(
…

scottrudy
- 1,633
- 1
- 14
- 24
0
votes
1 answer
comparing with current date in Service bus topic subscription rule/filter
In my current project I have an idea of using filters/rules on topic's subscription for a custom retry policy.
I get a message from a topic in an Azure Function and try to send it to a remote service. If the service throws a Timeout exception, I…

Ekaterina
- 117
- 1
- 9
0
votes
1 answer
How can I use the cancellation token Azure Service Bus (SubscriptionClient)
Regarding the cancellation token, how does one use it to cancel a message?
If I do not complete the message, does it get cancelled automatically (e.g. retried later when there is a connection)?
Do I need to abandon it?
Is the cancellation token only…

Puzzle
- 23
- 1
- 4
0
votes
1 answer
SubscriptionClient with Sessions issue: java.lang.UnsupportedOperationException
Using Azure Service Message Bus Topics and Subscriptions.
Created a Topic aaaa and Subscription zzzsubscription - session aware.
Using the below code to send messages to Topic with Session IDs:
String…

Ashok Goli
- 5,043
- 8
- 38
- 68