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

Azure Service Bus returning just one message

I Have 9 messages in my currente Queue, I wish to get all messages and return in a List, I also tried the code below: List messages = new List(); MessageHandler _message = new MessageHandler(); …
0
votes
1 answer

Azure Service bus queues have a URL, do they also have an IP-Adress or even Range?

I was wondering if there is any possibility of Service Buses or even their queues have an IP-address or even Ranges? I have been searching both in the documentation and also in azure but I couldn't find anything. What are the possibilities here when…
H4p7ic
  • 1,669
  • 2
  • 32
  • 61
0
votes
1 answer

Service bus queue trigger with Azure function calling multiple times for same message

I am having two azure function one is http function and another one is queue trigger function. In http function i am adding a messasge to queue and in queue trigger processing it. When i log the message in queue trigger sometimes its triggering…
0
votes
2 answers

How to generate Shared Access Signature Token in C#

For Create Registration on azure notification hub We want authorization token for below rest api https://{namespace}.servicebus.windows.net/{NotificationHub}/registrations/?api-version=2015-01 please see follwing…
Samadhan
  • 389
  • 1
  • 5
  • 18
0
votes
1 answer

Azure functions to Azure Servicebus connection

I am trying to write an Azure function that calls a webapi every time a new message is added to an azure service bus queue. However in the connections section I am only able to connect to an Azure Storage queue and not a Service Bus queue. Can…
w2olves
  • 2,229
  • 10
  • 33
  • 60
0
votes
1 answer

Service Fabric cluster. Statefull service. Service Bus queue usage

Full disclosure: I am new to the Service Fabric development. Here is my situation. We have Service Fabric Cluster. We deployed stateful service there. Service has designated Service Bus queue, which it listens to. So all service instances on all…
fatherOfWine
  • 1,191
  • 16
  • 39
0
votes
1 answer

Azure Service Bus MessageCountDetails.ActiveMessageCount is incorrect

I built a service that polls the queues and topics on our ASB every few minutes. The code has an intialization part which sets up the classes, and the part that runs on the cron job that calls some functions of the classes. The problem I am facing…
0
votes
1 answer

SharedAccessAuthorizationRule and GetQueues are crossing "Queue Boundaries"

I have Service Bus 1.1. On Premise. But that part may not matter. I've setup SharedAccess security for my Queues. Each queue is assigned a SharedAccessKey Code looks something like this: /*…
granadaCoder
  • 26,328
  • 10
  • 113
  • 146
0
votes
1 answer

Does the Logic App Service Bus connector support paired namespaces?

Does the Logic App Service Bus connector support paired namespaces? I've read through the notes on Service Bus, and can't see anything on paired namespaces And especially the siphoning process for pulling back messages from the secondary backlog…
SteveC
  • 15,808
  • 23
  • 102
  • 173
0
votes
1 answer

Azure spring boot connection Timeout Exception

I have created an application which connects to Azure queue and consumes the message. Issue is after 240000 ms connection is closed automatically and I am getting the exception "org.apache.qpid.amqp_1_0.jms.MessageConsumerException: The connection…
anonymous
  • 483
  • 2
  • 8
  • 24
0
votes
0 answers

System.InvalidOperationException: Failed with error code 0xe" at "Microsoft.ServiceBus.Tracing.EventProviderClone.Register"

While running my client code in Azure I am getting this exception: System.InvalidOperationException: Failed with error code 0xe. at Microsoft.ServiceBus.Tracing.EventProviderClone.Register (Microsoft.ServiceBus, Version=3.0.0.0, Culture=neutral,…
0
votes
3 answers

Crm to Azure ServiceBus Event Receiver, cant find what property that has been updated

This is a compact version, please ask if you need clarifications: I have managed to register an endpoint so that when I update a property (for example phone number) in Dynamics CRM Online a message is sent to Azure Service Bus (topic and/or queue,…
Cowborg
  • 2,645
  • 3
  • 34
  • 51
0
votes
1 answer

Azure Service Bus SessionHandler issue with partitioned queue

I got into an issue with IMessageSessionAsyncHandlerFactory where new instances of IMessageSessionAsyncHandler are not created when the volume of writing goes to 0 and then up to a normal level. To be more precise, I'm using SessionHandlerOptions…
Horia Toma
  • 1,099
  • 2
  • 17
  • 29
0
votes
0 answers

Simulate Autocomplete in Service Bus Queue

I'm using a custom implementation of IMessageSessionAsyncHandler in order to read from a partitioned service bus queue. The number of partitions is rather large and so is the volume of messages written in the queue. The MaxConcurrentSessions is set…
Horia Toma
  • 1,099
  • 2
  • 17
  • 29
0
votes
1 answer

Azure service bus dead letter

I am trying to resubmit all the deadletter messages back to its original queue. When I resubmit the message, it's again moving to deadletter. This time I thought there might be some problem with the message. When I debugged it, it was having no…
Amit
  • 167
  • 1
  • 2
  • 14