azure-servicebus-topics Questions
2
Solved
I'm using the GitHub example to process the messages of a topic:
private void RegisterSubscriptionClientMessageHandler()
{
_subscriptionClient.RegisterMessageHandler(
async (message, token) =&g...
Sinistrality asked 4/9, 2018 at 14:58
1
I have been looking at lockdurations and renewlock mechanisms for service bus queue and topics. However it is not clear about what exactly does lock duration mean for topic subscriptions.
For exam...
Millett asked 1/2, 2018 at 7:13
1
Solved
We are using Azure SDK to publish message to Service Bus.
In Web API call we're doing these tasks repeatedly for each incoming request
MessagingFactory factory = MessagingFactory.CreateFromConnect...
Appleby asked 9/8, 2017 at 15:35
1
I would like to read subscription messages from service bus. I am using qpid-proton library for python. I am following this link to receive messages Proton-Python-Example-Simple-Receive. I am passi...
Duroc asked 19/7, 2017 at 8:38
2
Solved
Here's the scenario:
Publisher #1 ═══╗ ╔═══ Round Robin ═══╦═══ Subscriber #1 (Service 1)
║ ║ ╚═══ Subscriber #2 (Service 1)
╠═══ Topic ═══╣
║ ║ ╔═══ Subscriber #3 (Service 2)
Publisher #2 ═══╝...
Expropriate asked 26/3, 2017 at 0:33
1
I am using code snippet to send message into the service bus topic.
try
{
// sb is instance of ServiceBusConfig.GetServiceBusForChannel
await sb.SendAsync(message);
}
catch (Exception ex)
{...
Individuate asked 29/7, 2016 at 7:38
3
Solved
I'm just starting to use Azure ServiceBus. One thing is not fully clear to me, and I'm having a hard time finding an answer.
If I call message.Complete() on a subscription message, does that mean ...
Ankylosaur asked 18/2, 2017 at 15:23
1
Solved
As per this article: https://azure.microsoft.com/en..., Service Bus can process upto 2000 messages per second per queue/topic. This article: https://azure.microsoft.com/en... says 'This means that ...
Margarethe asked 23/8, 2016 at 3:13
1
So we've been looking into the Azure Service Bus recently and we're a bit confused as to whether we should use an infinite loop to poll the queue/subscription or whether we should use the OnMessage...
Organometallic asked 28/1, 2016 at 11:45
1
Solved
If the body of a BrokeredMessage is JSON text, is it possible to setup a Topic Subscription with a filter on properties within that JSON?
Arbitration asked 13/1, 2016 at 22:6
0
I'm looking to have an async workflow, which looks like this:
Azure API App sends message to Azure ServiceBus Topic
receive message on Azure LogicApp ServiceBus connector
call into different Azur...
Abandoned asked 20/10, 2015 at 8:22
© 2022 - 2024 — McMap. All rights reserved.