3,878 questions
3
votes
4
answers
6k
views
Connecting to Windows Server Service Bus on AWS
I am starting work on a new project using the new Windows Server Service Bus 1.0 Beta. I am trying to set up a test environment on an AWS EC2 virtual machine.
I have installed the Service Bus on a ...
9
votes
4
answers
7k
views
Azure Service Bus BrokeredMessage has already been consumed?
I'm having an intermittent problem with the Azure Service bus. Sporadically, placing a message on the bus causes the following exception:
TYPE: InvalidOperationException
MESSAGE: The operation ...
1
vote
1
answer
3k
views
Azure Service Bus Queue: Messages are not being sent
I'm sending messages to a Service Bus Queue from a Worker Role. I noticed that randomly some messages are lost.
When I debug, I set a breakpoint after the Send method and log into my Azure Panel to ...
1
vote
1
answer
854
views
Scary BizTalk receive location bug
I just noticed a major bug (Unless im missing something) in BizTalk connected to a servicebus queue using the WCF-Custom adapter.
I noticed a message had not reached BizTalk from the queue so i ...
1
vote
3
answers
209
views
Using Windows Azure Service Bus be used from an Azure Web Site?
This guide to using Service Bus says the first step is to create a Service Namespace. I don't see how to do this in the portal for Azure Web Sites. The UI doesn't match the instructions given. I'm ...
1
vote
1
answer
329
views
SignalR.Client/Azure Service Bus MessageId issue
Just hooked SignalR.WindowsAzureServiceBus to my web project and it appears to cause a problem in the SignalR.Client library. I get the following error when I send a message:
Format Exception: Input ...
0
votes
1
answer
317
views
service bus subscription on topic don't apply filter
I try to follow the given tutorial at 1. I've created one topic with 2 subscriptions on the topics, respectively with the sqlFilter (user_age < 50) and (user_age>= 50). I've a custom property ...
2
votes
1
answer
830
views
Azure Service Bus Hosting REST Service
I am trying to host a REST service that can be relayed from the Azure Service Bus
I saw this blog which looks like it would answer my question but unfortunately, I get the same result.
This is the ...
0
votes
2
answers
659
views
How do I change the Duplicate Detection Window on an existing Windows Azure Service Bus topic?
Is it possible to change the Duplicate Detection Window on an existing Windows Azure Service Bus topic?
I am using C# to interact with Service Bus.
34
votes
9
answers
59k
views
Clearing azure service bus queue in one go
We are using a service bus queue in our project. We are in need of a functionality to remove all the messages from the queue when the administrator chooses to clear the queue. I searched on the net ...
2
votes
1
answer
672
views
F# method pointers "not accessible from this code location"
Listing Script.fsx:
#load "AccountDetails.fs"
#r @"..\packages\FSharpx.Core.1.4.120207\lib\FSharpx.Async.dll"
#r @"C:\Program Files\Windows Azure SDK\v1.6\ServiceBus\ref\Microsoft.ServiceBus.dll"
...
2
votes
4
answers
4k
views
Connecting to on-premises SQL Server through Azure Service Bus
Is this possible through some tcp redirection? If so, how?
Edit: I'd like to connect to on-premises SQL from a worker role to do some custom ATS-SQL synchronization.
0
votes
1
answer
1k
views
Send a list of objects over Azure service bus
I'm trying to send a list of objects over the Azure service bus, and want to check this is the correct way to do it. Intially I tried sending:
IEnumerable<Product>
The Listener endpoint had ...
9
votes
2
answers
5k
views
Enterprise Service Bus real world usage or examples
I'm looking into the ESB thing with .net like NServiceBus etc , can someone highlight what kind of real world business problems can be solved (forget the technical edge) ? And is this used to ...