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
5
votes
4 answers

BrokeredMessage disposed

I have a trouble marking my BrokeredMessage as Complete. Simple code that works like expected: private void OnMessageArrived(BrokeredMessage message) { var myObj= message.GetBody(); //do things with myObj …
topolm
  • 385
  • 7
  • 13
5
votes
0 answers

Bad Request. The api-version in the query string is not supported using Service Bus Explorer 2.6.1.0

I get the following error using Service Bus Explorer 2.6.1 while I try to connect against Service Bus 1.1 installed in another server: <14:38:36> Exception: The remote server returned an error: (400) Bad Request. The api-version in the query string…
cidz0r
  • 51
  • 3
5
votes
3 answers

Best practice for ServiceBus message versioning

I am setting up a system where we will transport messages between several internal services on ServiceBus Topics. The messages will hold serialized objects. The model objects are defined as quite complex trees of classes. This means it is not…
Jakob Lithner
  • 4,225
  • 6
  • 38
  • 59
5
votes
3 answers

Error configuring using Windows Service Bus (1.1) Configuration Wizard

I am trying to configure Windows Service Bus (1.1) using Service Bus Configuration Wizard. I am getting below error when I try to configure it. Can anybody tell me what is the problem. [Error] [5/9/2014 9:32:40 AM]:…
Ziggler
  • 3,361
  • 3
  • 43
  • 61
5
votes
2 answers

How to use the MessageReceiver.Receive method by sequenceNumber on ServiceBus

I'm trying to resubmit a message from a deadletter queue. I am can replay a message on a dead letter queue, thats fine. The problem is when I want to now delete this from the deadletter queue. Here is what I am trying to do: var subscription =…
Chuen Lee
  • 353
  • 4
  • 17
5
votes
1 answer

service bus 1.0 and WCF NetMessagingBinding - token provider unable to provide security token

I am using Service Bus for Windows Service 1.0 on prem (clients are referencing Microsoft.ServiceBus.dll 1.8.0.0) I am trying to get a WCF client and service NetMessagingBinding example working. I simply want to submit a message to service bus and…
jonho
  • 1,680
  • 2
  • 19
  • 29
5
votes
1 answer

MassTransit Queue Maintenance

Is there anything built into MassTransit that can help manage the queues? I'm specifically thinking of the error queues. I saw the thread similar to this, but I'm not looking to manage it with a utility, but rather in code. Scenario: Web client -…
Rob
  • 1,983
  • 2
  • 20
  • 29
5
votes
2 answers

How can I cancel a Microsoft ServiceBus MessageReceiver Receive call?

I have a windows service written in .NET 4 that creates multiple threads that contain infinitely running while(running) loops. When I stop the service, the running boolean becomes false and we break out of the while loop and once each thread does…
AmoebaMan17
  • 722
  • 1
  • 8
  • 22
5
votes
1 answer

RPC vs. ServiceBus Style SOA

What would be the pros and cons of these architectures? By RPC I meant remote procedure call services like WCF, WebServices etc. Then on the other side, there's the more message oriented frameworks such as MSMQ, NServiceBus, ServiceStack etc. Then…
Alwyn
  • 8,079
  • 12
  • 59
  • 107
5
votes
1 answer

How to get the unprocessed message count from a Windows Service Bus Subscription?

I'm working on a system that needs to auto scale worker processes which pull messages from a service bus topic for processing. To do this I need to know the number of unprocessed messages for a given subscription. How do I do that? I had a look at…
Paul Fryer
  • 9,268
  • 14
  • 61
  • 93
5
votes
2 answers

Azure Service Bus messages not being received

I am sending a message from web role to worker role. Earlier these messages were received properly and instantly but now out of nowhere some messages are not being received, even though the content of all messages are same. Like if i send one…
Bitsian
  • 2,238
  • 5
  • 37
  • 72
5
votes
2 answers

Service Bus - "The server did not provide a meaningful reply; this might be caused by a premature session shutdown"

I'm following this implementation to receive Messages from service bus: http://msdn.microsoft.com/en-us/library/windowsazure/hh851744.aspx. The problem is that sometimes I get this error and I can't figure out what can I do to solve…
Gui Ferreira
  • 4,367
  • 6
  • 28
  • 41
5
votes
3 answers

Azure Service Bus - Two Way Communication Performance Challenge

I need to establish a two-way communication between a Publisher and a Subscriber. This is to facilitate a front-end MVC3 application defining a Subscription with a Correlation Filter, and then placing a message onto a Topic. Finally, the MVC3…
5
votes
5 answers

Detect and Delete Orphaned Queues, Topics, or Subscriptions on Azure Service Bus

If there are no longer any publishers or subscribers reading nor writing to a Queue, Topic, or Subscription, because of crashes or other abnormal terminations (instance restart, etc.), is that Queue/Topic/Subscription effectively orphaned? I tested…
Pittsburgh DBA
  • 6,672
  • 2
  • 39
  • 68
5
votes
1 answer

Scaling SignalR with Windows Azure Service Bus

I have an application that uses SignalR to connect users on my site for things like chat. If I am only first opening my site to the public, I would assume I only need one instance for the first few months of usage (as long as demand doesn't require…
anthonypliu
  • 12,179
  • 28
  • 92
  • 154