Questions tagged [servicebus]

Windows Service Bus is both an on-premises and Windows Azure hosted service. Service Bus provides brokered, durable messaging facilities with pub/sub as well as relay services connecting on-premises systems to the cloud.

Windows Service Bus is both an on-premises and Windows Azure hosted service. Service Bus provides brokered, durable messaging facilities with pub/sub as well as relay services connecting on-premises systems to the cloud.

1047 questions
6
votes
3 answers

Persistent Messaging/Service Bus - Roll my own or risk the learning curve?

We have a client application that needs to send messages to a server for various notifications. In order that the client can run occasionally connected I'm going to go with a message-queue approach. The queue processing will take messages off the…
Neil Barnwell
  • 41,080
  • 29
  • 148
  • 220
6
votes
1 answer

Service Bus - Am I being dumb?

I've been looking at Mass Transit for a couple of months now, and I'm really intrigued by the possibilities. However, I don't seem to be able to get the concepts quite right. I've looked the code, and I've gone through the documentation, but I just…
tbddeveloper
  • 2,407
  • 1
  • 23
  • 39
6
votes
4 answers

Azure Service Bus - Unauthorized access. 'Send' claim(s) are required to perform this operation

I am trying to access Azure Service Bus Queue from my Windows Service application. I am following this sample. I want to protect this Azure Service Bus using Azure Service Principal Below are the steps I have implemented Register an application…
6
votes
2 answers

How does Node.js work from a network / TCP / HTTP connection perspective? Can WCF emulate this?

My understanding is that node.js is a python app that is geared towards the Linux world. Everyone seems to be quite happy with it's speed and ability to handle many concurrent connections. I'm coming from a Microsoft background and think node.js…
makerofthings7
  • 60,103
  • 53
  • 215
  • 448
6
votes
2 answers

When to use EventGrid and when to use ServiceBus / Storage Queue?

In Azure, we have two separate messaging technologies and it's not very well documented when to use what? While EventGrid is really cool, I did not come across when to use EventGrid(scenarios) vs the Storage/ServiceBus queue? Can someone help? E.g.…
Girish Acharya
  • 235
  • 6
  • 20
6
votes
1 answer

Is there a way to programmatically create an Azure ServiceBus Topic

I am trying to create a Topic in Microsoft.Azure.ServiceBus via code. I see there was a NamespaceManager object in Microsoft.ServiceBus, but I can't find anything for the newer Azure namespace. I am using .NET Core. Has this yet to be implemented?…
Andy
  • 12,859
  • 5
  • 41
  • 56
6
votes
1 answer

How to organize queues in Masstransit/RabbitMQ?

I'd like to know best practices for consuming messages. I've read MassTransit docs and I've searching about this but I don't get to come to any conclusion. I have one api (hosting a bus instance) that is publishing messages. These messages are…
6
votes
1 answer

Why do QueueClient.PeekBatch() and MessageReceiver.PeekBatch() not pull back the number of messages you specify

Both this: queueClient.PeekBatch(Convert.ToInt32(60)); And this: messageReceiver.PeekBatch(Convert.ToInt32(60)); Do not work "completely". They return a smaller amount, And instead I have to "pump" these methods in a loop up to the number of…
brumScouse
  • 3,166
  • 1
  • 24
  • 38
6
votes
2 answers

How to set message time to live unlimited in azure service bus queue?

I am trying to create azure service bus queue using azure-sdk-for-node but not able to find the resource to set time to live unlimited . Here is my sample code : var queueOptions = { MaxSizeInMegabytes: '5120', DefaultMessageTimeToLive:…
6
votes
3 answers

Does calling Abandon on an Azure BrokeredMessage Increment the delivery count

When I abandon a BrokeredMessage does the messages delivery count increment and hence contribute to it being put in the Dead Message Queue?
Richard210363
  • 8,342
  • 6
  • 37
  • 63
6
votes
2 answers

Cannot get self host to work on NServiceBus

Using version 2.0.0.1219 I am attempting to self host both a subscriber and publisher with NServiceBus and VS2010. The programs run and initialize but I cannot get the messages to move across. The publisher acts like it is posting, no errors, but…
Steve
  • 1,557
  • 2
  • 17
  • 34
6
votes
1 answer

Azure service bus wait for response

I'm an Azure newbie so forgive me. I'm going to have client apps (web, mobile) sending requests to Azure service bus. How do these clients receive a response from the worker that pulls the message from the queue and processes it? Assuming the…
Patrick Goode
  • 1,412
  • 5
  • 20
  • 35
6
votes
2 answers

How to get events count from Microsoft Azure EventHub?

I want to get events count from Microsoft Azure EventHub. I can use EventHubReceiver.Receive(maxcount) but it is slow on big number of big events. There is NamespaceManager.GetEventHubPartition(..).EndSequenceNumber property that seems to be doing…
Val
  • 61
  • 1
  • 3
6
votes
3 answers

how do I filter Azure Service Bus Queue messages based on a message property?

I am using Azure Service Bus Queue to send emails out from my app. I have many different customers that send out emails via my app and each message gets a property that identifies that customer: CustomerID I need to write an admin area for my…
Slee
  • 27,498
  • 52
  • 145
  • 243
6
votes
1 answer

Azure Service Bus: What's a 'request' and a 'message'?

In Microsoft Azure, under service bus, you can see activity graphs for the different queues/topics etc. The graph shows various different lines, such as incoming messages, outgoing messages, successful requests etc. What is a Request? And what is a…
simbolo
  • 7,279
  • 6
  • 56
  • 96