azure-servicebus-queues

Azure Service Bus Emulator [closed]

对着背影说爱祢 提交于 2019-12-08 15:50:02
问题 Closed. This question is off-topic. It is not currently accepting answers. Want to improve this question? Update the question so it's on-topic for Stack Overflow. Closed 7 months ago . I am developing a WebJob , which uses service bus queue, but I don't have an Azure account. Does there exist some Service Bus emulator to test the webjob ? I need to take the queue input to simulate the [ServiceBusTrigger] 回答1: As far as I know, there is no Service Bus emulator. A feedback on UserVoice is open

brokeredmessage microsoft service bus queue ReceiveBatch not obtaining all dead letter messages

陌路散爱 提交于 2019-12-08 11:04:35
问题 I am testing a project with a dead letter queue with Microsoft Service Bus. I send 26 messages (representing the alphabet) and I use a program that when receiving the messages, randomly puts some of them in a dead letter queue. The messages are always read in peek mode from the dead letter queue, so once they reach there they stay there. After running a few times, all 26 messages will be in the dead letter queue, and always remain there. However, when reading them, sometimes only a few (e.g.

Service MessagingCommunication Exception - The End point is only for web socket requests

爱⌒轻易说出口 提交于 2019-12-08 06:36:13
问题 Have a service bus queue where we are polling for the messages using the ServiceBus QueueClient/ReceiveMessage. The service bus version used is 3.1.4 and the connectivity mode is https. We are getting the following exception in one of the machines: Microsoft.ServiceBus.Messaging.MessagingCommunicationException: The server rejected the upgrade request. 400 This endpoint is only for web-socket requests ---> System.ServiceModel.CommunicationException: The server rejected the upgrade request. 400

Is there anyway to bridge between Azure Service Bus queue and a WebSphere queue?

不羁岁月 提交于 2019-12-08 04:18:02
问题 Is there anyway to bridge between Azure Service Bus queue and a WebSphere queue? Preferably "something" hosted in Azure, rather than an on-premise product 回答1: There is a wiki page How to Send message from an on premise IBM MQ to Azure Service Bus queue which introduce for the needs. You can follow it to create a program, either as a continous web job on Azure if using Azure App Service, or running on Azure VM if you want. If the WebSphere MQ works on network within public IP, I think it's

How to read from multiple queues in real-world?

ぐ巨炮叔叔 提交于 2019-12-08 01:32:51
问题 Here's a theoretical question: When I'm building an application using message queueing, I'm going to need multiple queues support different data types for different purposes. Let's assume I have 20 queues (e.g. one to create new users, one to process new orders, one to edit user settings, etc.). I'm going to deploy this to Windows Azure using the 'minimum' of 1 web role and 1 worker role. How does one read from all those 20 queues in a proper way? This is what I had in mind, but I have little

Azure Service Bus keeps throwing MessageLockLostExceptions

流过昼夜 提交于 2019-12-07 14:15:18
问题 I keep getting MessageLockLostExceptions when processing messages. I am using Microsoft.Azure.ServiceBus 3.2.0 with .NET Core 2.1. I have a queue with LockDuration set to 30 seconds already containing a number of messages to be processed. I took the very basic message-receiving tutorial code from https://docs.microsoft.com/en-us/azure/service-bus-messaging/service-bus-dotnet-get-started-with-queues#receive-messages-from-the-queue, which works fine. Now I want to simulate a slightly longer

Azure Logic App service bus message content

百般思念 提交于 2019-12-07 06:42:56
问题 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 add an image - but screen shot from Azure "Insert_Entity": { "inputs": { "body": { "PartitionKey": "deviceID", "RowKey": "@variables('curDate')", "content": "@triggerBody()?['ContentData']" }, When I look at the data that I am getting for the

Is there anyway to bridge between Azure Service Bus queue and a WebSphere queue?

|▌冷眼眸甩不掉的悲伤 提交于 2019-12-06 16:29:52
Is there anyway to bridge between Azure Service Bus queue and a WebSphere queue? Preferably "something" hosted in Azure, rather than an on-premise product There is a wiki page How to Send message from an on premise IBM MQ to Azure Service Bus queue which introduce for the needs. You can follow it to create a program, either as a continous web job on Azure if using Azure App Service, or running on Azure VM if you want. If the WebSphere MQ works on network within public IP, I think it's simple without any other additional work for network configuration. If not, you can try to create an Azure VPN

How to read from multiple queues in real-world?

一曲冷凌霜 提交于 2019-12-06 11:15:14
Here's a theoretical question: When I'm building an application using message queueing, I'm going to need multiple queues support different data types for different purposes. Let's assume I have 20 queues (e.g. one to create new users, one to process new orders, one to edit user settings, etc.). I'm going to deploy this to Windows Azure using the 'minimum' of 1 web role and 1 worker role. How does one read from all those 20 queues in a proper way? This is what I had in mind, but I have little or no real-world practical experience with this: Create a class that spawns 20 threads in the worker

ServiceBus RetryExponential Property Meanings

空扰寡人 提交于 2019-12-06 05:11:43
问题 I'm having a hard time understanding the RetryExponential class that is used in conjunction with QueueClients (and I assume SubscriptionClients as well). The properties are listed here, but I don't think my interpretation of their descriptions is correct. Here's my interpretation... var minBackoff = TimeSpan.FromMinutes(5); // wait 5 minutes for the first attempt? var maxBackoff = TimeSpan.FromMinutes(15); // all attempts must be done within 15 mins? var deltaBackoff = TimeSpan.FromSeconds(30