Questions tagged [azure-servicebus-topics]
660 questions
0
votes
1 answer
Service Bus TopicClient thread safety and client side batching
I have gone through the best practices for Service Bus mentioned in https://learn.microsoft.com/en-us/azure/service-bus-messaging/service-bus-performance-improvements
Looks like it discusses about the old Service Bus library. I am using…

Amlan
- 241
- 6
- 13
0
votes
1 answer
Azure Service bus MessageReceiver.ReceivAsync returns null
I have a azure function that is triggered every 1 minute. The function creates a MessageReceiver like this
var messageReceiver = new MessageReceiver(serviceBusConnectionString, entityPath, ReceiveMode.PeekLock, null, 0);
The subscription has a lock…

jbiversen
- 371
- 3
- 14
0
votes
1 answer
Azure ServiceBus Invalid Signature
I create a SAS TOKEN generated using the shared-access-signature npm module. When I try to connect to servicebus using the Azure SDK then I get the following error.
com.microsoft.azure.servicebus.primitives.ServiceBusException:…

jack
- 321
- 1
- 5
- 20
0
votes
0 answers
error while send message using azure servicebus topic's shared access connection string with "WindowsAzure.ServiceBus" nuget
I am using WindowsAzure.ServiceBus nuget package and try to send message on topic using topic level shared access policy(send only) but it will give me below error.
40103: Invalid authorization token signature,…

DotNet Azure User
- 23
- 8
0
votes
1 answer
Session based Filtering not happening in Receiver Azure Topic
I have been working on session enabled topic/subscription.
Used following code to create session enabled Topic/Subscription,
var subscriptionName = "TestSubscription";
var topicName = "MyPartitionTopic";
var namespaceManager =…

Mariraj R
- 79
- 1
- 8
0
votes
1 answer
Service bus topic. Is it synchronous or asynchronous write to subscriptions
Is the write to subscriptions asynchronous and success is returned before messages are written in all subscriptions.
What happens if a subscription(and all replica) is down at that time.

Nishant
- 407
- 2
- 4
- 12
0
votes
1 answer
Azure Servicebus Topic continuos Receiver message stops
I builded a Azure Service Bus Message provider to run in linux CENTOS 7 with core 2.0. I'm using the packge "Microsoft.Azure.ServiceBus 3.1.0". But when I receive
five hundred thousand(500 000) or more messages, the "RegisterMessageHandler" stop…

Davidson Dd-harlie
- 151
- 1
- 2
- 9
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
Client.CreateAsyncRule gives error for .netcore when I'm trying to add a new rule to newly created subscription
I have an acceptance project in .netcore Framework where I create a new subscription and add a new rule using support classes of Microsoft.Azure.ServiceBus reference. Later i receive message from the same subscription.
Problem statement:
Before i…

Rudra
- 1
0
votes
1 answer
Azure Service Bus event based Controlled Messaging
I have a scenario for a POC I am working. I am using Azure Service bus and using the Topic and Subscription model for my Event based message handling.
One of my Publisher publishes a message to Topic and same is ready by 3 Consumers (A, B and C). I…

Manu
- 331
- 3
- 15
0
votes
1 answer
Service Bus Explorer - Unable to see messages on Subscription Topic when added rule/filer
Service Bus Explorer - Unable to see messages on Subscription Topic when added rule/filer.
Following is a message being generated on bus;
{
"header": {
"Major": 1,
"Minor": 0,
"Patch": 0,
"MessageType": "EmployeeMessage",
},
…

manojmore
- 410
- 2
- 8
- 20
0
votes
1 answer
How to subscribe message from Azure service bus topic subscription to web api?
We have multiple webapi(microservices). To communicate between these micro services we are using Azure service bus Topic\Subscription. How webapi controller can get the message subscription so that api can process the message and insert to database.…

user2927217
- 53
- 6
0
votes
1 answer
Why Azure function been triggered by Event Grid about every 2 munites
I am learning Azure Service Bus and Functinos.
I have created a Service Bus namespace, a topic under the namespace and a subscription to the topic.
Then I bind the Event Grid of the Service Bus namespace to the EndPoint of an Azure function to…

唐Walle
- 1
- 1
0
votes
1 answer
Is it possible to put a message back to a subscription queue in azure?
I have several subscriptions that listens to different Topics for messages, and some of this messages are dependent on each other. So one message for one subscription "needs" to arrive before another messages in another subscriptions.
I could solve…

Magnus Gladh
- 1,817
- 4
- 20
- 31
0
votes
0 answers
CommunicationObjectAbortedException when using Windows Azure Service Bus topic
I got the following exception when using the Azure Service Bus.
I built my WebJob to be ServiceBusTrigger based on the subscribed topic
Is anyone familiar with this?
System.OperationCanceledException: The operation cannot be performed
because…

NyamNyam
- 320
- 1
- 3
- 13