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
14
votes
4 answers

How to get connection string to existing servicebus without old azure portal

Due to restrictions in the company I cannot use old azure portal. But I have a requirement to use ServiceBus in our project. I was able to create servicebus ns using resource.azure.com, but I cannot find the way to get the connection string to that…
Maris
  • 4,608
  • 6
  • 39
  • 68
14
votes
3 answers

WebJob processing multiple messages at a time from queue

My WebJob is processing multiple messages from a queue which I don't want it to do. My queue has dependent messages which I want to process one after the other sequentially. I have tried with configuring "BatchSize" to 1 but no luck. It is still…
14
votes
3 answers

Guidance OnMessageOptions.AutoRenewTimeout

Can someone offer some more guidance on the use of the Azure Service Bus OnMessageOptions.AutoRenewTimeout http://msdn.microsoft.com/en-us/library/microsoft.servicebus.messaging.onmessageoptions.autorenewtimeout.aspx as I haven't found much…
Lukie
  • 905
  • 1
  • 11
  • 21
13
votes
2 answers

Unit Testing ServiceBus.Message. How to set value for SystemProperties.LockToken?

I want to test a message handler callback that I have registered with a QueueClient using queueClient.RegisterMessageHandler(MyCallBack, messageHandlerOptions). public Task MyCallBack(Message msg, CancellationToken token) { // Read msg. Do…
GiriB
  • 1,244
  • 2
  • 13
  • 28
13
votes
3 answers

Difference between Lease-Based and Lock-Based exclusive access in Azure Queues

I know (reading the msdn documentation here) that Windows Azure Storage Queues use a lease-based exclusive access strategy to the messages and Azure Service Bus Queues use a lock-based one. In both I can set the maximum duration of lock/lease. So,…
12
votes
6 answers

Starting Azure Service Bus Trigger Function throws InvalidOperationException for "Host not yet started"

I have a v.2 Service Bus Trigger function which, when I attempt to start, throws the following exception: System.InvalidOperationException HResult=0x80131509 Message=The host has not yet started. Source=Microsoft.Azure.WebJobs.Host …
RobC
  • 1,303
  • 3
  • 15
  • 32
12
votes
2 answers

Azure WebJob ServiceBusTrigger for Sessions

I know it's possible to recieve messages from a service bus queue like: public static void ProcessQueueMessage([ServiceBusTrigger("inputqueue")] string message, TextWriter logger) But is there also a way to to receive a session via a trigger…
12
votes
4 answers

Azure Service Bus queue messages got stuck

I recently created some partitioned queues from where I send and receive all the time. They've run as non-partitioned in the past without any of my current issues. The problem is, I have a constant number of messages in the queue that I can not…
user2413912
  • 579
  • 6
  • 19
11
votes
3 answers

Azure function service bus trigger: How to stop batches of data from event stream and only allow one message from the queue at a time?

This is my first time using Azure functions and service bus. I'm trying to build a function app in Visual Studio and I am able to connect to the queue topic (which I don't control). The problem is that every time I enable a breakpoint, 10s of…
90abyss
  • 7,037
  • 19
  • 63
  • 94
11
votes
1 answer

Real Time Notification System using SignalR and Azure

I am trying to craft a facebook-like notification system in our ASP.NET MVC website In a scenario, the notification system works like this User1 follow User2 by clicking the follow button in the MVC site the MVC site send a NotificationItem to the…
10
votes
1 answer

How does message locking and lock renewal work in Azure Service Bus?

I'm getting a bit confused trying to nail down how peek lock works in Service Bus. In particular I'm using Microsoft.Azure.ServiceBus with Azure Functions and a ServiceBusTrigger. From what I can make out the time a message gets locked for is set on…
10
votes
1 answer

Should we use Azure Service Bus Queue built-in CorrelationId property or UserProperties?

We're developing a Web API application that will receive a correlation-id header (GUID) in the request and will trigger a backend process asynchronously by sending a message to an Azure Service Bus Queue. We'd like to pass this correlation-id around…
Jane
  • 107
  • 6
10
votes
1 answer

azure service bus monitoring on a mac

I have found service bus explorer a windows application which will allow me to connect to the Azure Service Bus and look at my topics and subscription and the messages on the subscriptions. I need to be able to do this from my mac as I am developing…
Chris Camm
  • 121
  • 1
  • 4
10
votes
2 answers

"The X.509 certificate CN=servicebus.windows.net" Azure Service Bus Queue

We use Azure Service Bus and Azure Web App which fills queue. They are in the same resource group. We use WindowsAzure.ServiceBus v2.6.5. We get this error very rarely: The X.509 certificate CN=servicebus.windows.net is not in the trusted people…
9
votes
4 answers

azure service bus queue read bulk message using nodejs

I want to fetch messages in bulk from azure service bus queues using node js azure package, Now i am able to fetch message using set-interval.is there any other way to fetch messages in bulk.
1
2
3
67 68