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
-1
votes
1 answer

Bulk sessionzed message retrieval using MessageReceiver.ReceiveAsync

How does one use the MessageReceiver.ReceiveAsync to retrieve sessionized messages in bulk?. My messages are written to the queue with SessionId. However I dont see any examples on how and where I should specify sessionid when I read messages in…
Codecrasher99
  • 351
  • 3
  • 17
-1
votes
1 answer

Azure Service Bus Queue Performance

I am using the Azure service bus queue for one of my requirements. The requirement is simple, an azure function will act as an API and creates multiple jobs in the queue. The function is scalable and on-demand new instance creation. The job which…
-1
votes
1 answer

How can we push data from Azure Service Bus to Sales Force

How can we push data from Azure Service Bus to Sales Force. I need to send data to sales force when new message received on azure topic.
-1
votes
1 answer

REST call to Azure service bus queues

Can we perform REST call to publish and consume messages from Azure service bus queues.
-1
votes
1 answer

TryReceive method on IMessageReceiver interface

Please provide the following methods in IMessageReceiver: bool TryReceive(out Message msg, TimeSpan timeout) Task TryReceiveAsync(out Message msg, TimeSpan timeout) So that we can use these like: if (TryReceive(out Message msg,…
-1
votes
1 answer

PeekBatch in python azure

Is there a python API for reading all message present in a queue at that time? I found the api for…
kiran
  • 445
  • 1
  • 5
  • 11
-1
votes
1 answer

send message to Azure service bus by Azure scheduler using post

i want to send message to Azure service bus by Azure scheduler using post like demo in this page http://www.prasadthinks.com/ but i don't know how to set 'authorization' property in Http Header.
arthur
  • 3
  • 1
-2
votes
2 answers

Azure Function App with no function and Running background threads

Is it possible to run an Azure Function app that has no function, but running threads that will read messages from Azure Service Bus? It seems the thread is not reading mesasge from ASB. Update My Function app (has no functions) works locally, but…
-2
votes
1 answer

Azure Service Bus: Read messages with offset

I'm reading messages from Azure Service Bus in my C# application. I'm reading them from Dead Letter Queue but I suppose it doesn't matter here. I need to read a block of messages of a given size, starting at a given offset (aka a page of…
Dušan Rychnovský
  • 11,699
  • 8
  • 41
  • 65
1 2 3
67
68