Questions tagged [azure-servicebus-topics]
660 questions
0
votes
2 answers
Azure Service Bus Topic Subscriber lock expired exception
I have an web job that consumes message from Azure Service Bus Topic by registering a OnMessage callback . The message lock duration was set to 30 seconds and the lock renew timeout to 60 seconds. As such jobs taking more than 30 seconds to process…

imswapy
- 112
- 2
- 7
0
votes
2 answers
Azure service bus, long time to create a client
I am playing around with Azure Services Bus trying to do some Publish/Subscription. Everything works as it should but when I am trying to create a client from a connectionstring it takes really long time to do the connection. It takes around 22…

Magnus Gladh
- 1,817
- 4
- 20
- 31
0
votes
1 answer
How to use servicebus topic sessions in azure functionapp using javascript
I have an Azure Functionapp that processes some data and pushes that data into an Azure servicebus topic.
I require sessions to be enabled on my servicebus topic subscription. I cannot seem to find a way to set the session id when using the…

tensai
- 1,628
- 3
- 17
- 22
0
votes
1 answer
Minimum Permissions for Creating and Deleting Subscriptions to an Azure Service Bus Topic?
I am creating an app which needs to create and delete subscriptions to an already created topic in azure service bus.
does my share access token need manage permissions on the topic to create and delete subscriptions? I've does some preliminary…

Nathan Tregillus
- 6,006
- 3
- 52
- 91
0
votes
1 answer
How to Add/Delete topic and subscription in Azure Servicebus automatically using command line
I am trying to write simple console application which can automatically Add or Delete any Azure Service Bus Topics and subscription from
Service Bus explorer 3.0.4 but no luck so far.
Code is in C# / Visual Studio 2015 about service and messaging…

Joy1979
- 599
- 5
- 12
- 23
0
votes
2 answers
.NET class library as an Azure Function App with ServiceBusTopic trigger does not work
I created an Azure function app locally in Visual Studio 2017(Not Azure portal) by following the steps at the following URL.
https://blogs.msdn.microsoft.com/appserviceteam/2017/03/16/publishing-a-net-class-library-as-a-function-app
I followed the…

Sunil
- 31
- 7
0
votes
1 answer
Azure Service Bus MessageCountDetails.ActiveMessageCount is incorrect
I built a service that polls the queues and topics on our ASB every few minutes. The code has an intialization part which sets up the classes, and the part that runs on the cron job that calls some functions of the classes.
The problem I am facing…

biso
- 590
- 1
- 4
- 13
0
votes
2 answers
Azure Service Bus and Javascript Implementation
I have a Azure Service Bus Topic and I want to receive the messages in realtime on a web page that uses pure Javascript.
I tried this SDK…

Jorge Rosa
- 63
- 1
- 8
0
votes
2 answers
How to connect to an Azure Service Bus subscription with the Node.js SDK using SAS Keys?
Is there a way to connect to an Azure Service Bus Subscription using a Shared Access Signature Key in the Node.js SDK? We want to use the SAS Key to read the messages from the subscription.
There is something a about SAS in the documentation but…

Robert Iagar
- 155
- 2
- 13
0
votes
1 answer
How to receive JSON object from the azure service bus topic subscriptions
I have doubt about to implement azure service bus receive messages from topic subscriptions.
We are using multiple applications in our organization and we need to share data between one to other subsystems so that we are using azure service bus.…

Parthi
- 135
- 1
- 3
- 15
0
votes
1 answer
Azure Service Bus Topic: Why is message duplication caused?
I have been using Azure Service Bus Topics in a production application. My understanding is the system guarantees at least one copy of the message on the subscription end when published.
In practice, I generally see 1 message corresponding to a…

Arxo Clay
- 876
- 6
- 12
0
votes
1 answer
Reading Messages From Topic on storage blob through subscriber on Service Bus Explorer - C#
Working Scenario:
Post Msg1 to topic
Post Msg2 to topic
Read Msg1, Msg2
Not Working:
Post Msg1 to topic
Read Msg1 from topic through subscriber, but I'm not marking as complete.(Still on Queue)
Post Msg2 to topic
Read Msgs.. Actual: I read only…

OnDoubt
- 129
- 11
0
votes
2 answers
azure.servicebus Message ValueError in Python
I'm playing around with Microsoft Azure to send messages to a subscription in the Cloud via a Topic. But ran into issues with Microsofts python sdk, specifically a ValueError when deserializing a message from the cloud.
This is my code
bus_service =…

John Setter
- 175
- 1
- 17
0
votes
1 answer
Azure service bus topic receive message with session with event driven architecture model
I am using azure service bus topic. as i have large message so i am splitting large message and sending them in small- small messages with sessionid and split order. I want my receiver to have event driven architecture. as i have to receive all…

Mahesh
- 730
- 7
- 26
0
votes
1 answer
"The requested Performance Counter is not a custom counter,.." when using Azure ServiceBus TopicClient
I get the following exception message when I try to send a simple message with the TopicClient from the nuget package WindowsAzure.ServiceBus:
"The requested Performance Counter is not a custom counter, it has to be initialized as ReadOnly."
Here…

peco
- 3,890
- 1
- 20
- 27