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
8
votes
2 answers

Is there a way to delete a pending message from a Service Bus Queue in Azure?

I am currently queuing messages to be run at a future date with .scheduledEnqueueTime. Sometimes the events that the messages are relaying data about change or are deleted, and when this happens I need to delete the message. I don't see how to…
Nathan C. Tresch
  • 938
  • 10
  • 24
8
votes
2 answers

What would cause a 'could not load file or assembly' error concerning 'Microsoft.WindowsAzure.Configuration'?

I have a multi-tier Azure application I've been working on. It uses web and worker roles behind an MVC front end, as well as Azure SQL and Table storage. It has been working well for a while, both in the emulator and the cloud. I've just started…
Jude Fisher
  • 11,138
  • 7
  • 48
  • 91
7
votes
2 answers

Azure Servicebus relay performance

I'm using the service bus with nettcprelaybinding. One one side is OnPremise server that has a constant connection to the service bus. On the other end is a Azure web role that responds to incoming web requests by opening the appropriate service bus…
7
votes
2 answers

How to submit a brokeredmessage using the REST API

According to MSDN a Brokered Message can be submitted via the REST API and this brokered message can have the Properties key value pair as part of the message. I have been able to submit a Brokered message but when I recieve it the Properties field…
user599084
  • 171
  • 1
  • 2
  • 7
7
votes
1 answer

Does Service Bus Delete Topic Subscriptions with No Filters/Rules if AutoDeleteOnIdle is Set?

Good afternoon. We're using Service Bus Topics as the engine for a pub/sub system. Our logic involves our C# services hooking up to a topic with a subscription. We remove $Default (TrueFilter) and set AutoDeleteOnIdle to 5 minutes. As other parts…
Shaun
  • 667
  • 8
  • 15
7
votes
2 answers

Can I upgrade existing standard service bus namespace to premium service bus

Can I upgrade existing standard service bus namespace to premium service bus. Currently I'm using standard service bus but now I want to upgrade plan to premium service bus.
Rohit Mane
  • 169
  • 2
  • 12
7
votes
0 answers

Running ServiceBus in windows docker container

The main goal is to run the ServiceBus in a docker container for windows. Output of docker version: Client: Version: 1.13.1 API version: 1.26 Go version: go1.7.5 Git commit: 092cba3 Built: Wed Feb 8 08:47:51 2017 OS/Arch: …
7
votes
2 answers

Listen to Queue (Event Driven no polling) Service-Bus / Storage Queue

I'm trying to figure out how can I listen to an events on a queue (especially an enqueue event). Say I have a Console Application and a Service Bus Queue/Topic, how can I connect to the Queue and wait for a new message ? I'm trying to achieve this…
Ron
  • 1,744
  • 6
  • 27
  • 53
7
votes
1 answer

Where did WebJob ServiceBusTrigger disappear?

I have a WebJob that parses a ServiceBus Topic Subscription. Now I read several examples of using the WebJob binding mechanism to make the code…
Jakob Lithner
  • 4,225
  • 6
  • 38
  • 59
7
votes
8 answers

C# communication between processes

I'm working with an application, and I am able to make C# scripts to run in this environment. I can import DLLs of any kind into this environment. My problem is that I'd like to enable communication between these scripts. As the environment is…
zkwentz
  • 1,095
  • 5
  • 22
  • 44
7
votes
1 answer

Message type based routing with Azure Service Bus

What is the simplest approach to achieve strongly typed message based routing with Azure Service Bus. Assuming we only have one consumer and are using Service Bus Queues, is it easier to create a queue per message type (in our case, Event messages),…
Ben Foster
  • 34,340
  • 40
  • 176
  • 285
7
votes
1 answer

Service Bus 2.1 For Windows Server - TimeOutException on EndReceive Method

I am using Service Bus 2.1 For Windows Server and I have a method to receive message asynchronously. The body of my method is: var waitTimeout = TimeSpan.FromSeconds(10); // Declare an action acting as a callback whenever a message arrives…
Adrien
  • 307
  • 1
  • 5
  • 11
7
votes
2 answers

Azure service bus statistics/Monitoring

I want to make a dashboard which shows the status of our Azure services bus queues and displays the history for "messages added to queue", "length of queue" and "messages processed" etc. Using the Azure Management Portal, I can see that most of…
Richard Mannion
  • 289
  • 5
  • 17
7
votes
1 answer

How do you configure multiple message consumers in MassTransit?

I'm looking at using MassTransit to publish a event from one process to all other processes that care about that event. In my environment, several processes that are subscribed to that event could be running on the same box. Based on the…
Andrew Theken
  • 3,392
  • 1
  • 31
  • 54
6
votes
1 answer

relay WebHttpRelayBinding to webapi service

I have a desktop webapi server that I want to expose to clients through azure service bus's relay WebHttpRelayBinding is there a simple way to capture all the messages from the service bus and pass them as http requests to my webapi?
Aaron Fischer
  • 20,853
  • 18
  • 75
  • 116