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

Temporarily hiding a message in azure service bus queue/topic

I have a scenario where some of the messages depend no the completion of another messages to be completed. So there is a precondition for a set of messages to be processed that another message should be processed first. The precondition message is a…
Ovais
  • 276
  • 1
  • 16
0
votes
1 answer

Azure worker role + number of message queue consumer

I am trying to understand the best practice when hosting a message queue consumer in a azure worker role. I have many different type of message consumers that subscribe to different azure service bus subscriptions (or queue if you like to call it).…
Eatdoku
  • 6,569
  • 13
  • 63
  • 98
0
votes
1 answer

How to send messages to Azure Service Bus over Port 80?

As per I know Azure Service bus uses port 9350, 9353 etc. to send messages. In my organization because of firewall policy we can't open these ports. So whenever I try to send messages to my queue in Azure I get error saying No DNS entries exist…
rajcool111
  • 657
  • 4
  • 14
  • 36
0
votes
2 answers

Dynamics CRM Online - push data when a contact is created

We are trying to push data to Azure Service Bus Queue when a contact is created in "Dynamics CRM Online". We have implemented it using a plugin by registering it with Plugin Registration Tool. But somehow its throwing an error while saving the…
0
votes
1 answer

Windows Azure worker role create report at specific TimeZoneInfo

I have a worker role in Azure that needs to create specific reports at specific hour (using user timezoneinfo). As we know, azure worker and web roles run on UTC time right? Well, my users are located in different locations around the world. Users…
David Dury
  • 5,537
  • 12
  • 56
  • 94
0
votes
1 answer

Use Hybrid API in Azure Service Bus Queues

Is i possible to use Messaging API to send message to the Queue and Receive using WCF integration (NetMessagingBtinding) and if so how to do it ? what is the service contract ? Thanks Offir
oshvartz
  • 153
  • 1
  • 5
0
votes
1 answer

How to control NServiceBus queue name when hosted on Azure?

For some reason the queue hosted on windows azure is not respecting the .DefineEndpointName() configuration. The queue name on Azure Bus is always named after the worker role that's hosting it. While this is fine, in general, I'd feel a lot better…
Alwyn
  • 8,079
  • 12
  • 59
  • 107
0
votes
1 answer

Can perform getQueue() for nonexistent Azure SerivceBus Queue using JAVA sdk

In the last 26 or so hours calls to ServiceBusConstract.getQueue(path) where path is a non-existent queue are throwing a ServiceException whose ultimate cause is a binding issue. Caused by: javax.xml.bind.UnmarshalException: unexpected element…
WillD
  • 875
  • 1
  • 7
  • 14
0
votes
2 answers

How to send messages between web role and worker role other than Service Bus?

I have been using azure service bus to send messages to and fro between web role and worker role and i really thought that it was a really good solution but lately i have found that service bus is very erratic, sometimes it works and sometimes the…
0
votes
4 answers

Cannot get a message on the service bus queue

I've a small java web app in which I send messages on a service bus queue when a user click on a button. I want to display the messages on my jsp page. But when I make the call resultQM = service.receiveQueueMessage(queueName, opts); I get the…
orleant
  • 33
  • 3
-1
votes
1 answer

No option to enable duplicate message detection

I'm trying to create a new Azure Service Bus Queue in Azure Portal. I also need to enable duplicate message detection, while creating I don't see any such option. Am i missing anything here?
sandy
  • 616
  • 2
  • 9
  • 20
-1
votes
1 answer

Azure web job to just peak/"react on" and not process service bus queue message

I've created an azure web job which gets trigger on service bus queue messages. When i run the web job it processes the messages from the service bus queue, som my simple question is as follows; Is there a way to make the web job just trigger on the…
-1
votes
1 answer

How to connect Service bus queue in a logic app workflow using Azure CLI?

I have a scenario where in i want to create a CLI Command so that i can create a Logic app with "When_a_message_is_received_in_a_queue_(auto-complete)" but not sure how to pass the connection string to connect to the Queue which i created earlier.…
-1
votes
1 answer

Throttling requests in Azure Function Cosmos DB output binding

I am building an Azure function that retrieves delta updates from Service Bus and should create/update documents based on that in Cosmos DB. Currently I am only using the output binding to achieve this, but I am running into 429 errors when I have a…
mp1990
  • 9,699
  • 3
  • 13
  • 17
-1
votes
1 answer

Are there any limitation on the number of partitions in a Azure Service Bus Queue or Topics?

I understand there are only a max of 100 partition queues allowed per namespace from the official document. But are there any max number of partitions are allowed in a queue? Thank you
1 2 3
67
68