Questions tagged [azure-servicebus-queues]

Windows Azure Service Bus Queue, questions regarding relay, topics and queues

Windows Azure Service Bus Queues are a set of cloud-based, message-oriented-middleware technologies. These “brokered” messaging capabilities can be thought of as asynchronous, or decoupled messaging features that support publish-subscribe, temporal decoupling, and load balancing scenarios using the Service Bus messaging fabric. Decoupled communication has many advantages; for example, clients and servers can connect as needed and perform their operations in an asynchronous fashion.

Service Bus Relay offers the ability to publish a WCF endpoint in the cloud, acting as a bridge to bypass firewalls, allowing duplex operations.

1015 questions
0
votes
1 answer

Logging Azure Service Bus server exceptions

Is there a way to log Service Bus exceptions and errors if I don't have access to the client that submits the queue messages? As in, from the Service Bus queue itself?
Vadim Berman
  • 1,932
  • 1
  • 20
  • 39
0
votes
1 answer

Detecting queue deletion

A customer wants to flush the queue in one go. However, neither of the batch options seems to be available in Java, so they insist on deleting the queue altogether. The question is, how do I detect that a queue is no longer there? Is there some…
Vadim Berman
  • 1,932
  • 1
  • 20
  • 39
0
votes
0 answers

Configuring WCF service for reading messages from windows server service bus

I am trying to configure WCF SVC with the following configuration. Its not fetching the messages from the window server service bus topic/subscrition. when i host and configure the same dynamically through code, it works .
0
votes
1 answer

Reconnect SB-Messaging Receive Location on lost connection

Is there anyway to prevent an SB-Messaging Receive Location to not be disabled if the connection to an Azure Service Bus Queue is lost? I would like to set an 'retry to connect' property after X minutes. Is this possible or do I've to scan the…
berghallen
  • 56
  • 6
0
votes
1 answer

Azure Service Bus QueueClient RetryPolicy vs Microsoft.Practices.EnterpriseLibrary.WindowsAzure.TransientFaultHandling.RetryPolicy

I would like to know the current best practice for writing a resilient Producer / Consumer using the Service Bus QueueClient. I'm a little confused over the purpose of the Azure Service Bus QueueClient.RetryPolicy…
Lukie
  • 905
  • 1
  • 11
  • 21
0
votes
2 answers

service bus queue shared access policy connection string

I created a shared access policy with only send permission for a service bus queue. I used to send messages from web role to service bus queue using service bus connection string. Now the requirement is , instead of using service bus connection…
0
votes
2 answers

New-AzureSBAuthorizationRule error when creating authorization for a Service Bus Queue

I use New-AzureSBAuthorizationRule to create a new Shared Access Policy for an Azure Service Bus Queue. See command below... New-AzureSBAuthorizationRule -EntityName abcdef -EntityType Queue -Permission Listen -Name "abcdef_reader" -Namespace…
0
votes
2 answers

Azure Service Bus Queue - QueueClient.Receive() returning null BrokeredMessage when messages are in the queue

I have messages in an Azure Service Bus Queue that I can't receive. And I'm not getting any indicator as to what the problem is. I think it has something to do with message size. You can see from the code below that I'm using OpenFileDialog. I'm…
rharrison33
  • 1,252
  • 4
  • 18
  • 34
0
votes
1 answer

azure service bus - does it allow modifying attributes of messages in queue

I am designing a queue based system for decoupling publisher of certain messages from their consumers. I have an additional requirement - when a publisher pushes a new message and if an earlier message of similar kind is already in queue and is yet…
Aadith Ramia
  • 10,005
  • 19
  • 67
  • 86
0
votes
1 answer

Azure servicebus queue message handling

I have two consumers (different applications) connected to an Azure queue. I can either ReceiveAndDelete or PeekLock the messages and during consumption I can complete() or abandon() the message. Ref:…
Ropstah
  • 17,538
  • 24
  • 120
  • 194
0
votes
2 answers

Serialization of Azure Service Bus BrokeredMessage

I have a stateless RESTful service that will Peek & Lock off of an Azure Service Bus queue. After it gets the message, it will forward the message on to a client who will process it. The client may take longer than the lock timeout to process the…
Micah Zoltu
  • 6,764
  • 5
  • 44
  • 72
0
votes
1 answer

Messages not being received from Azure Service Bus Queue

I added a new worker role to our project to handle making outgoing phone calls. It draws the calls to make off a service bus queue. I made a little console app to throw things onto the queue so that I could check to make sure it was working.…
Kyle S
  • 441
  • 6
  • 13
0
votes
2 answers

Unhandled Exception with Azure serviceBusService

I'm trying to send a serviceBusQueue message from an API function in my Azure mobile-service and even though it successfully creates the queueService and the queue exists I get a nasty exception. Any clue how I fix this? I've attached the send code…
tillerstarr
  • 2,616
  • 1
  • 21
  • 35
0
votes
1 answer

Service Bus for Windows Server - Deferred messages with TTL behavior

When using deferred messages the time-to-live is being ignored, is it possible to have this behavior and send the messages to dead letter queues? If so, how do I achieve this?
0
votes
2 answers

How to connect to a relay service hosted on the service bus in iOS

I want to use Azure service bus in my iOS app to communicate with server i have went through the below link. its pointing to C#.Need suggestions to work on…