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

How to get LockToken of new BrokeredMessage added Azure Service Bus Queue

After sending the BrokeredMessage to the queue, like below BrokeredMessage msg = new BrokeredMessage(content); client.Send(msg); Is there any way to get the value of this msg.LockToken?
Kim Hoang
  • 1,338
  • 9
  • 24
9
votes
1 answer

Why does WCF ignore my TokenProvider?

I have a BizTalk WCF-Custom receive location to which I have added a custom behavior: public class SasTokenProviderEndpointBehavior : BehaviorExtensionElement, IEndpointBehavior { public void AddBindingParameters(ServiceEndpoint…
Tom W
  • 5,108
  • 4
  • 30
  • 52
9
votes
1 answer

How to unit test a class which calls service bus queue client SendAsync method

I have a interface which has a method to create instance of queue client and message factory. I have created a concrete implementation of the same and now i am trying to unit test the functionality which is used for send message to queue. I have…
Sudama Tripathi
  • 349
  • 1
  • 5
  • 20
9
votes
1 answer

Communication between a WebJob and SignalR Hub

I have the following scenario: I have an azure webjob (used to send mails) and I need to check the progress of the webjob in my web application. I am using SignalR to communicate with clients from my server. When I want to send an email, I push a…
9
votes
1 answer

Windows Azure MessageLockLostException

I'm having issues with Azure Message Bus Queues. I'm having MessageLockLostException thrown and The request operation did not complete within the allotted timeout of 00:01:10. The time allotted to this operation may have been a portion of a longer…
Styles
  • 515
  • 2
  • 6
  • 16
8
votes
2 answers

C# Azure Function with multiple output to a service bus

I saw the Microsoft documentation for Azure Service Bus output binding for Azure Functions version 3. When I want to send a message to a service bus as return of the function, I can use this code: [FunctionName("ServiceBusOutput")] [return:…
Enrico
  • 3,592
  • 6
  • 45
  • 102
8
votes
1 answer

Logic Apps: Servicebus Polling trigger processes message multiple times

I have a Logic App polling a servicebus queue. With concurrency-control on the Logic App I've limited it to max 5 concurrent instances. I use the trigger "When a message is received in a queue (auto-complete)" When putting, for example, 8 messages…
8
votes
1 answer

TypeLoadException Could not load type 'WebConfigurationManager' when calling .Net Framework Library via Web API Core app

I have a Web API application created using .Net Core 2.1. A controller from within this web application calls a Business Layer Class library that I also developed using .Net Core 2.1. So far so good... The .Net Core Business Class Library…
8
votes
1 answer

qpid proton url for receiving messages from a given subscription (of a topic)

I would like to read subscription messages from service bus. I am using qpid-proton library for python. I am following this link to receive messages Proton-Python-Example-Simple-Receive. I am passing this url to receive messages from service bus -…
7
votes
1 answer

Connection string for Azure.Messaging.ServiceBus.ServiceBusClient

I'm trying to get started with Azure ServiceBus, but the Gods of Documentation are against me. I'm following this MS article, which says this code will allow me to send a message... public class Program { static string connectionString =…
7
votes
2 answers

Trying to understand Azure Service Bus Sessions

So I am trying to understand Azure service bus Session ID for creating FIFO in my queue. The idea I have is pretty straight forward but I don't know if its the right way to thing when it comes to FIFO. What i am thinking are in these steps fro…
H4p7ic
  • 1,669
  • 2
  • 32
  • 61
7
votes
2 answers

Azure Logic App service bus message content

I have logic app that is triggered by a service bus. The message content is not usable as it is just random characters. I suspect that perhaps it needs to be parsed but it is not clear how to do this. I have the following: Not enough reputation to…
7
votes
1 answer

Azure Service Bus/Service Fabric message not being removed from queue

I am moving a calculation engine from an Azure worker role into Azure Service Fabric. It works by listening for messages on a Service Bus that it then processes based on the message content. Currently, the calculation is working correctly but if the…
7
votes
1 answer

Azure Service Bus Entity Throughput

As per this article: https://azure.microsoft.com/en..., Service Bus can process upto 2000 messages per second per queue/topic. This article: https://azure.microsoft.com/en... says 'This means that the overall throughput of a partitioned queue or…
7
votes
2 answers

Using BrokeredMessage with ServiceBus Queue Trigger in Azure Function

I've created an Azure Function that is triggered any time a new message is added to an Azure ServiceBus queue. With this code it works fine: #r "Newtonsoft.Json" #load "..\shared\person.csx" using Newtonsoft.Json; using…
Thomas
  • 24,234
  • 6
  • 81
  • 125
1 2
3
67 68