Questions tagged [azure-servicebus-queues]

Windows Azure Service Bus Queue, questions regarding relay, topics and queues

Windows Azure Service Bus Queues are a set of cloud-based, message-oriented-middleware technologies. These “brokered” messaging capabilities can be thought of as asynchronous, or decoupled messaging features that support publish-subscribe, temporal decoupling, and load balancing scenarios using the Service Bus messaging fabric. Decoupled communication has many advantages; for example, clients and servers can connect as needed and perform their operations in an asynchronous fashion.

Service Bus Relay offers the ability to publish a WCF endpoint in the cloud, acting as a bridge to bypass firewalls, allowing duplex operations.

1015 questions
0
votes
1 answer

Subscribe to Queue for a set length of time

I am using .Net Core 2.1 and I have a Web Api project that subscribes to a queue using a MessageReceiver. What I want is for this subscriber to stay "alive" for x minutes. Now I must admit that I actually thought that the Timeout actually worked…
DazedandConfused
  • 357
  • 5
  • 16
0
votes
1 answer

Mule-Microsoft Service Bus : Azure Service BUS queue issue

I need to connect to Microsoft Service Bus queue from Mulesoft application. My configuration and everything looks fine. I can see the Test Connection was successful. But, after application is deployed, the folloing warning message keeps on coning…
Balwant Kumar Singh
  • 1,158
  • 4
  • 24
  • 48
0
votes
1 answer

High number of Azure service bus incoming and successful requests

I'm testing placing scheduled messages onto my Azure service bus queues. No more then 10 or so in total but it seems like the statistics in my dashboard show otherwise! It looks like it's showing thousands of incoming requests! Question - am I not…
chuckd
  • 13,460
  • 29
  • 152
  • 331
0
votes
1 answer

Adding a message to my Azure service bus queue doesn't return any value

I'm adding a message to my Azure service bus queue and returning its Guid to save in a db, but for some reason I either modified something or it never worked correctly in the first place. Question - can I have multiple message id's with the same id…
chuckd
  • 13,460
  • 29
  • 152
  • 331
0
votes
1 answer

Azure Service Bus queue partitioned Queue AutoRenewTimeout

I want to understand if AutoRenewTimeout in case of a partitioned queue is different from not partitioned one. I have two reasons to ask this here: 1) They seem to have different explanation in documentation: Partitioned Queue - link Gets or sets…
Minhaz
  • 937
  • 1
  • 10
  • 25
0
votes
1 answer

Continous listening of Messages from Azure Service Bus Queues via REST possible?

I am able to perform REST DELETE operation to receive and delete messages from Azure service bus queues.To perform this we need to externally call the REST api. Is there any feature to perform polling,as soon as the message is available in the queue…
user3796942
  • 163
  • 1
  • 1
  • 6
0
votes
1 answer

What is requesting my azure servicebus queue

I am using a service bus queue that uses sessions, and currently, something is receiving and deleting my messages. The problem is that I don't know what is requesting the service bus queue. Is there someway for me to see what/who is requesting my…
Mike
  • 850
  • 10
  • 33
0
votes
2 answers

Azure Service Bus Queue delete specific queued message

I know I can call up the scheduled message in c#/code and delete a scheduled message like this Scheduled messages can be removed by calling CancelScheduledMessageAsync(sequenceNumber) But I can't seem to figure out how to do it with Service Bus…
chuckd
  • 13,460
  • 29
  • 152
  • 331
0
votes
1 answer

In an Azure Web Job, when is an item in the Azure queue removed?

I have created a triggered web job using the Azure queue. For brevity, my function looks like this: public static void ProcessQueueMessage([QueueTrigger("myqueue")] string message, TextWriter log) { log.WriteLine(message); …
Matt Spinks
  • 6,380
  • 3
  • 28
  • 47
0
votes
2 answers

SSIS Script Task accessing Azure Service Bus queue throws X.509 certificate error

I have an SSIS package with a Script Task that places a message on an Azure Service Bus. The SSIS package is running on MS SQL Server 2014, on an Azure VM with Windows Server 2012. This works fine on my development machine, and in a Testing Azure…
Scott Duncan
  • 1,041
  • 1
  • 12
  • 22
0
votes
1 answer

c# sharp proejct .net 4.5 dependency, should interact with a azure message queue

I am currently working on a project that depends on .net 4.5, which I am why forced to use Microsoft.Servicebus - and thus message factory Creating a messagefactory object, doesn't seem to be problem, but creating the message sender seem to be the…
nano
  • 75
  • 1
  • 12
0
votes
2 answers

Azure service bus not receiving messages

I'm using Azure service bus to send messages across containers in my K8s setup. Implementation of service that receives message is done in Node.js.From the doc page, here is the code I'm using to receive the…
0
votes
0 answers

Does logic app's azure service bus standard connector makes a brokered connection with service bus (or is it non-brokered)?

In azure service bus queue (standard tier), any brokered connections above 1,000 are billed extra. Now, I'm using logic apps to send messages to service bus queue using service bus (standard) connector available out of the box in logic apps. Will…
0
votes
1 answer

Dequeue request in Azure Service Bus when queue length < 10 frequently returns null

I have been experimenting with Azure Service Bus queues in NodeJS. I have built the sender.js and listener.js based on their code sample in the documentation. Building a queue works fine. Dequeuing and deleting messages from the queue works fine…
0
votes
1 answer

How to get queue size of the Azure Service Bus using .NET API in C#

I am working on a .NET Core project. I am trying to connect to the service bus queue using a connection string. I am able access the service bus with QueueClient using the API function 'new QueueClient(< connection string >, < queue name >). However…