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

Extend the initialVisibility Delay for an existing CloudQueueMessage for Azure Message Queue

I am trying to achieve the following flow using Azure Message Queue as illustrated in the following diagram : So, the client initially creates and adds a message in the queue with initialVisibiltiyTimeout of 5…
2
votes
1 answer

How to listen a queue all the time in azure service bus and intercept each message

I have a ServiceBus in azure with two queues: The first one is where the client send messages(I need to intercept the messages. QUEUE_IN) and the second one is the queue where the client receive the messages I sent when I finish to process the…
Allanh
  • 465
  • 1
  • 7
  • 19
2
votes
2 answers

Azure Service Bus : Amqp Idle Timeout condition = amqp:link:detach-forced

The error I get: 2019-12-09 06:39:33.189 ERROR 107132 --- [http-nio-8082-exec-5] o.a.c.c.C.[.[.[/].[dispatcherServlet] : Servlet.service() for servlet [dispatcherServlet] in context with path [] threw exception [Request processing failed; nested…
Ionut Iorga
  • 21
  • 1
  • 2
2
votes
0 answers

Unable to send messages to ASB Queue from WSO2 EI : Peer did not create remote endpoint for link, target

I am unable to send the message to ASB Queue and getting the following error. Caused by: org.apache.qpid.amqp_1_0.client.Sender$SenderCreationException: Peer did not create remote endpoint for link, target: testqueue I can see the request in ASB…
2
votes
3 answers

How to write a JSON to Azure queue from Azure Databricks

I'm trying to read a JSON file from BLOB and write that file in Azure queue. The reading part works fine but while writing it throws an error. I've already tried the URL of the queue folder in which I'm trying to write, as parameter for…
2
votes
3 answers

Why do my messages always get delivered to Dead Letter Queue in Azure Service Bus?

C# .NetCore 2.2 - Azure Service Bus 3.4.0 I have 3 queues in Azure Service Bus with same properties. While sending messages to these queues, the messages in one of the queues always get delivered to Dead letter queues, while other 2 queues receive…
2
votes
2 answers

Azure servicebus trigger queue not hitting code in local debugging

Created Azure function with service bus trigger and deployed in azure portal. Using servicebusexplorer, sending the queue to portal and working fine. But after stopped the function in azure, sending the message from explorer to local code in visual…
2
votes
1 answer

Migrating Azure Service Bus Queue to Topic and Subscription in C#

Can I migrate an Azure Service Bus Queue to a Topic and Subscription by just reconfiguring the path names? Are there any code changes needed? Will 3rd parties have to change their code if I keep the names alike?
2
votes
2 answers

MassTransit command consumer creates a topic. Is this correct?

I'm new to Azure Service Bus and MassTransit and I'm experimenting with sending a simple command to a queue and then having a consumer consume that command. I can successfully get the message sent, and then consumed by my consumer, however I've…
Daniel
  • 150
  • 1
  • 9
2
votes
0 answers

QueueClient with BackgroundService not working .NetCore2.2

OK so this is my first attempt at using a queue really and I'm confident there are some obvious issues here. This code however has been working locally for me but am having issues having deployed to my test azure environment. At best it runs once…
Simon
  • 1,966
  • 5
  • 21
  • 35
2
votes
1 answer

Code example for using Rebus with Azure Service Bus, Queue and Topic

I am new to Rebus, I am looking for code sample for using Rebus with Azure Service Bus, Queue and Topic. I cannot see it from the link below: https://github.com/rebus-org/RebusSamples Update To start off: Sample of enqueuing and dequeuing messaging…
2
votes
2 answers

Azure Service Bus multiple QueueClients

What is the best practice for creating multiple queueclients for listening to different service bus queues? There is a MessagingFactory class however Microsoft.ServiceBus.Messaging not seems to be available as a nuget package anymore (.net core…
Faizal
  • 353
  • 3
  • 16
2
votes
1 answer

How do I make sure to receive all of my messages with Azure Service Bus Queue?

I created a Service Bus Queue following the tutorial in Microsoft Documentation. I can send and receive messages, however, only half of my messages make it through. Literally half, only the even ones. I tried changing the message frequency but it…
2
votes
1 answer

Azure Service Bus trigger not firing sometimes

I created function app v1 with one function in it. The function is a service bus trigger. After publishing it to Azure i see this strange behaviour. Sometimes the function gets triggered and sometimes it's not. There are no errors in logs at that…
270F
  • 119
  • 2
  • 12
2
votes
1 answer

What controls when the MessageSession lock expires, if the client can't call Close?

Context: MSDN documentation on Service Bus queues and message sessions says "When the MessageSession object is accepted and while it is held by a client, that client holds an exclusive lock on all messages with that session's SessionId that exist in…
Craig
  • 1,890
  • 1
  • 26
  • 44