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
3
votes
6 answers

How to peek the deadletter messages

It is very hard to find some good documentation on getting all the messages in a deadletter queue and getting to take a peek at them. I have an Azure Servicebus Queue and everything I can find is for Azure Servicebus Topics. Can someone help me…
3
votes
1 answer

Parsing Service Bus Queue message in Logic App parameter function

I receive a error from my SharePoint Get-Item action when I try to use data from the Service Bus message triggering my Logic App (inner xml omitted): Unable to process template language expressions in action 'Get_items' inputs at line '1' and…
Filburt
  • 17,626
  • 12
  • 64
  • 115
3
votes
3 answers

ServiceBus Queue Trigger For Azure Function: Manage claim is required for this operation

EDIT This question was written in 2016 so it may not be relevant anymore I've just created a simple Function App with one function that should be triggered when a new message is added to the queue (in-portal function) I've used the…
Thomas
  • 24,234
  • 6
  • 81
  • 125
3
votes
1 answer

Azure Service Bus Topic subscription concurency

I have following requirement Message published to the Topic/Queue Multiple consumers subscribed to the Topic/Queue. So our requirement is to only one consumer should listen to the message. That means no other consumer can get the same message. I…
3
votes
3 answers

Azure Service Bus DNX Core support

UPDATE: DNX does not exist anymore. Please ignore this question. Current WindowsAzure.ServiceBus (3.0.4) nuget package (http://nuget-preprod-0-v2gallery.cloudapp.net/packages/WindowsAzure.ServiceBus/) requires .NET Framework 4.5 Full Profile and it…
Zygimantas
  • 8,547
  • 7
  • 42
  • 54
3
votes
2 answers

Azure ServiceBus OnMessage Blocking Call or Not?

We are utilizing Azure ServiceBus queues to process high volumes of client requests. However, the OnMessage call seems to be a blocking call, however the blocking on this call is incredibly inconsistent if it is indeed a blocking call. What I am…
VulgarBinary
  • 3,520
  • 4
  • 20
  • 54
3
votes
0 answers

Service integration issuer certificate not found

I am using PluginResgistration tool to create an azure service endpoint. I have Configured and saved ACS. I am using persistent queue as Contract. While I click on the "Save and Verify authentication" I am getting the above error. I am performing…
3
votes
1 answer

Recurring azure service bus queue messages

I have a windows service that listens for Azure Service Bus Queue Messages in order to distribute processing from my WebApi application. I additionally need to handle recurring tasks (nightly/weekly), which I thought might be best handled using the…
jt000
  • 3,196
  • 1
  • 18
  • 36
3
votes
2 answers

What is the order of the messages in a Azure Service Bus queue if I send them asynchronously?

If you send messages to an Azure Service bus topic/queue using SendAsync(...) is the message ordering guaranteed? For example if I had an application with one thread that was sending lots of messages using SendAsync, would the order in which the…
3
votes
1 answer

Azure Service Bus Queue, Stuck Messages or Incorrect Message Count?

I am using QueueDescription.MessageCount to get the number of messages remaining in one of my queue's how ever it is showing a positive number but i cannot receive any messages. I have checked the active and deadletter queue but there is nothing to…
Steven Yates
  • 2,400
  • 3
  • 30
  • 58
3
votes
1 answer

MessageReceiver.ReceiveBatch() not working as intended

I am trying to receive messages in batch from the ServiceBus using the ReceiveBatch method in the MessageReceiver: IEnumerable messages; var messagingfactory = MessagingFactory.CreateFromConnectionString("ConnectionString"); var…
3
votes
2 answers

Azure Service Bus AutoDeleteOnIdle

I want to make a partitioned queue and I've been reading this website: http://msdn.microsoft.com/en-us/library/azure/dn520246.aspx In its current implementation, Service Bus imposes the following limitations on partitioned queues and…
user2413912
  • 579
  • 6
  • 19
3
votes
1 answer

Does Azure client .OnMessage generate billable request for empty queues?

You can subscribe to asynchronous updates from Azure topics and queues by using SubscriptionClient/QueueClient's .OnMessage call which will presumably create a separate thread polling the topic/queue with default settings and calling a defined…
Grozz
  • 8,317
  • 4
  • 38
  • 53
3
votes
2 answers

Windows Azure: Error when deleting brokered message

I am working on a Java application that pulls messages from an Azure Service Bus queue. I am using the Java Azure API (com.microsoft.windowsazure.services). The problem that I'm experiencing is that the deletion of brokered messages after they had…
bgh
  • 1,986
  • 1
  • 27
  • 36
3
votes
2 answers

How to serialize Observables to the cloud and back

I need to split processing sequence (like in this question How to organize sequence of data processors with .net RX) into several computation units in Azure environment. The idea is to serialize Observable sequence to Azure Queues(or Service Bus)…