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

Azure Service Bus Queue grouped messages

I have a web api application which performs different type of actions an a Domain entity, called Application. Actions like "Copy", "Update", "Recycle", "Restore" etc. This actions needs to be executed, per Application, in First In First Out order,…
Catalin
  • 11,503
  • 19
  • 74
  • 147
0
votes
0 answers

Windows server service bus 1.1 in server explorer Connection string error

I installed service bus in my Windows server 2012, using the Service bus Power shell. After that while trying to connect via the VS2012, its throwing an error " The underlying connection was closed.Cannot establish trust relationship for the SSL/TLS…
0
votes
1 answer

Worker Role consuming a Session Partitioned Queue - MessageSessionHandler or AcceptMessageSessionAsync

I have a Service Bus Queue with several sessions, that I use as way to enforce order per entity. And I need a worker role to read messages from this Queue, and read messages from any session, in a way that when it's reading a message from a session…
0
votes
1 answer

What is Issuer secret?? What should be its input.?

I am using PersistentQueueListener from SDK to receive messages from Service Bus. While I run the PersistentQueueListener Project it expects few imputs like Service NameSpace Issuer name Issuer secret. I don't have a clue of Issuer secret here.…
0
votes
1 answer

Receiving messages from azure service bus

One can receive messages in azure service bus using either of the the two methods.. queueClient.BeginReceiveBatch OR messageReceiver.ReceiveBatchAsync Is there any difference between these two methods speedwise or in any other way. Thanks
Arnab
  • 2,324
  • 6
  • 36
  • 60
0
votes
0 answers

How to use Azure service bus topics & Subscriptions to load balance messages

In reading many MSDN pages about the Azure Service Bus, it alludes to the ability to set up a "Load Balancing" pattern with the "Topic/Subscription" model, but never says how this is done. My question is, is this possible. Essentially, we are…
0
votes
1 answer

Worker role with service bus queue keeps on receiving the same message exactly 10 times

Worker role with service bus queue keeps on receiving the same message exactly 10 times... Looking likes message the queue is not being deleted or whats happening as the repetition count is exactly 10. I am using configs.QClient.OnMessage to…
user3904654
  • 133
  • 1
  • 1
  • 5
0
votes
1 answer

Azure Service Bus Queue Endpoint not found error

I have created a Service bus queue. The URL for this is: https://ns-eventqueue.servicebus.windows.net/eventqueue I have also created a Shared Access Policy for this. The Policy name is EventPolicy. When I try to use this policy and URL to connect…
Yasir
  • 1,595
  • 5
  • 23
  • 42
0
votes
1 answer

How to long poll the Azure service bus topic/subscription

I cannot find clarification whether or not it's possible to use the long poll option with the topic/subscription model. It is possible with service bus queues but I'd have to create thousands of separate queues to enable each client to receive their…
stephen
  • 385
  • 3
  • 24
0
votes
1 answer

Accessing Azure Service Bus Queue from Azure Website

I can't access Azure Service Bus Queue from Azure Website once deployed to the cloud. While running on localhost, if works fine, I can send a message to the queue, but if I deploy the application, on the remote server I am getting an exception while…
0
votes
1 answer

Running out of Connection with WCF service in Azure with SQL Azure

We have Multi-instance WCF Service (more than 2) which receives requests from ServiceBus Topics (Can have more than 10000 request in subscription). The nature of the request is that we mainly do inserts in out database. Very minimal processing. Our…
Umang
  • 815
  • 5
  • 17
0
votes
1 answer

brokeredmessage microsoft service bus queue ReceiveBatch not obtaining all dead letter messages

I am testing a project with a dead letter queue with Microsoft Service Bus. I send 26 messages (representing the alphabet) and I use a program that when receiving the messages, randomly puts some of them in a dead letter queue. The messages are…
JosephDoggie
  • 1,514
  • 4
  • 27
  • 57
0
votes
1 answer

Azure Service Bus issue

I'm working on a project where we would like to use ServiceBus like a classical queue, for messaging. Very often I see messages in queue that I can't get. These messages are active (not dead letters). I don't receive any exceptions, it waits for…
AChudov
  • 214
  • 1
  • 4
0
votes
1 answer

Azure Storage and Service Bus - One Connection per Asp.Net Application or per Request?

I was wondering whether anyone knows specifically what the best practice is for using and potentially sharing or creating new connections from an Asp.Net Web Application to Azure Storage and -ServiceBus? Basically the Asp.Net application receives…
0
votes
2 answers

Bad request when trying to delete from the dead-letter queue

I am trying to delete messages from the dead-letter queue using this code: QueueDescription qd = _queueManager.GetQueue(queueID); QueueClient qc = _senderFactory.CreateQueueClient(queueID, ReceiveMode.ReceiveAndDelete); received =…
Vadim Berman
  • 1,932
  • 1
  • 20
  • 39