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

Azure WebJob process multiple service bus queues that are set in configuration

I am currently working on a solution where a webjob monitors a service bus queue. This works great but it needs to be easily adaptable to manage any number of queues just be changing a list of queues in the config. Currently I can see that I can do…
RuSs
  • 1,725
  • 1
  • 29
  • 47
0
votes
0 answers

Consuming Amazon SQS (AMQP) from Azure

The need has come in which we have to consume data coming from a 3rd party in which they have an Amazon SQS instance setup on top of the AMQP protocol. They have given us the following: queue name user name password port virtualhost host We are a…
user118190
  • 2,139
  • 7
  • 29
  • 45
0
votes
1 answer

Status as never finished by one of my Webjob while processing the message

I have a webjob which process the message only once by using the condition (DevliverCount = 1). Because I don't want other instance to process it if the locktime expired by first webjob. As other webjob try to process the message after locktime…
Bhanu Reddy
  • 205
  • 3
  • 12
0
votes
1 answer

Is it safe to host NServiceBus subscribers (message/event handlers) under IIS (including Azure Web Roles)

We are designing a system that is web based but also uses NServiceBus and Azure Service Bus to communicate. We have an on premiss server running IIS for the application and also several cloud services running web roles for communicating with…
naskew
  • 2,091
  • 1
  • 19
  • 20
0
votes
3 answers

how to peek and delete a message from deadletter in azureservicebus

I have created an azure service bus topic application which peek all messages in deadletter. Some specific messages(with particular messageid) which i peeked need to be removed from the deadletter queue. Please provide help for implementing this.
0
votes
1 answer

Decode a serialized BrokeredMessage via Rest on non-Windows

I'm building a Xamarin client that reads messages from the Azure Service Bus. My REST code can successfully pull a message off the Service Bus, but what I'm getting back appears to be binary (as in non-Text...I know it's all binary ;) ) This is the…
Iunknown
  • 347
  • 1
  • 2
  • 16
0
votes
1 answer

Managing multiple Azure Service Bus Queues concurrently

I'm using an Azure environment and developing in .NET I am running a web app (ClientApp) that takes client data to perform a series of calculations. The calculations are performance intensive, so they are running on a separate web app…
0
votes
1 answer

PHP Azure SDK Service Bus returns Malformed Response

I'm working on trace logger of sorts that pushes log message requests onto a Queue on a Service Bus, to later be picked off by a worker role which would insert them into the table store. While running on my machine, this works just fine (since I'm…
0
votes
1 answer

Azure Service Bus Queue sending a message in NodeJs to .NET client

I am sending a message from a C# worker to the Queue, then I am getting it on another C# worker and call string body = message.GetBody(); This works and I later de-serialize the string/JSON message. Now I am trying to send the same message…
Daniel Wardin
  • 1,840
  • 26
  • 48
0
votes
1 answer

WebJob Running for so long time for some messages and never finished status

For every 1000 messages 1 message is running for 20 minutes and more than that where other messages are completing in less than 1 sec. What could be the reason and I don't know whether it is going to be complete. Some messages are going to "Never…
Bhanu Reddy
  • 205
  • 3
  • 12
0
votes
1 answer

Azure Service Bus Queue Avoid Message being read across enviroment

Issue description : My development environment Service bus message are populated to my UAT or production queue and message are been processed in those environment.. To summarize my system: We have a campaign management system where emails are sent…
RajGan
  • 801
  • 3
  • 13
  • 28
0
votes
1 answer

Azure Service Bus Queue Authorization for Multiple Senders

Is there a way to authorize certain message senders of an Azure Service Bus Queue to be able to only send specific messages? E.g. sender 1 can send message type 123 but sender 2 can can send message type 456. When consume 1 tries to send a message…
Ryan
  • 4,354
  • 2
  • 42
  • 78
0
votes
1 answer

How to use AMQP 1.0 with the Service Bus .NET API (Azure)

I am trying to get a connection to an azure service bus queue 'queue1' with AMQP following the post How to use AMQP 1.0 with the Service Bus .NET API. In the azure management portal, I can see that the queue 'queue1' was successfully created and if…
timtos
  • 2,225
  • 2
  • 27
  • 39
0
votes
1 answer

How to log messages to Azure servicebus queue & read from the it using nlog?

How can I log messages to a Azure Service Bus Queue and read messages from it in application.
Umang
  • 815
  • 5
  • 17
0
votes
0 answers

"Value cannot be null.\r\nParameter name: typeName" when receiving queue messages

I have the error above "Value cannot be null.\r\nParameter name: typeName" this is the stack trace: > " at System.RuntimeType.GetType(String typeName, Boolean throwOnError, Boolean ignoreCase, Boolean reflectionOnly, > StackCrawlMark&…
Luis Valencia
  • 32,619
  • 93
  • 286
  • 506