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

Unable to read message from Service bus. it is returning null

I am trying to read the stream that is on Azure Service bus. But I am getting null bytes. File size that is getting created is same as the size of the bytes that are being sent, but it contains all nulls. I have added the code that is used for…
0
votes
1 answer

Azure stream analytics doesn't list custom endpoints in IoT Hub Source Input

I have an IoT Hub with custom endpoints which sink data into service bus queues. Since i implemented custom routing through custom endpoints in IoT Hub & Service bus queues. When i try to create Azure Stream Analytics (ASA) job, the input panel in…
0
votes
1 answer

What happens when you try to cancel a scheduled Azure service bus message that has already been enqueued?

I'm trying to come up with the best way to schedule a message for an Azure service bus queue or topic while leaving the option open for immediately sending a message instead of the scheduled message. I want to make sure I can protect myself against…
0
votes
0 answers

How to forward a message from Azure estate to NodeJS app?

I'm creating an IoT solution. On my web app i want to have a table on the dashboard that updates alert events in realtime. I currently have an API, written in NodeJS that receives the JSON and invokes sockets.io to update the table. This solution…
0
votes
1 answer

how to send/receive xml data to service bus queue using service bus REST API in C#?

I followed this link, to send xml data to service bus queue successfully using service bus RESTAPI from advance rest API client and postman. This is the XML data I want to send to…
Pradeep
  • 5,101
  • 14
  • 68
  • 140
0
votes
1 answer

Using ActiveMQ instead of microsoft service bus

I have tried to use ActiveMQ as Microsoft Service Bus. I configured ssl layer on activemq and also $cbs queue has been already created by an c# application using azure servicebus SDK. But when I tried to use azure IotHub SDK C for my device, it…
0
votes
2 answers

Resubmitting dead letter queue message inside a transaction scope

How can I read a message from a dead letter queue and put it back on the parent queue inside a transaction scope given the restriction of only one top level entity being able to participate in a transaction? Ordinarily I'd use a transfer queue to…
0
votes
2 answers

Mechanism to scheduling a message to Azure queue

Let us consider an device(s) which continuously send its activity message to a azure queue as Q1 .On that each message,i have 2 properties one is MessageContent and another one is time when we need to push that MessageContent into another queue as…
0
votes
1 answer

Delay Queue for amount of time per session

I'd like to create a system that 'appends' mails to each other. Situation: Everytime an entity is changed I'd like to send a mail to subscribers of that entity. But when the entity is changed 10 times on a small time (like 5 / 10 minutes) the…
0
votes
1 answer

AMQP 1.0 and transactions

I am evaluating AMQP 1.0 together with Azure Service Bus and currently looking into transaction support - 2 phase commit coordinating a database insert/update/delete with read/write of messages to the bus). Using "Amqp.Net Lite" for .Net in my…
4integration
  • 193
  • 1
  • 3
  • 13
0
votes
1 answer

how to Orchestrate an event from azure service bus queue to multiple topics?

in my application I have a scenario where there are events are continuously generated, each event is associated with a type. For every event multiple sub actions depending on the type need to be performed which are totally independent. So for this…
0
votes
1 answer

can we be able to pass webrequest object into servicebus queue?

can we be able to pass webrequest object into servicebus queue? var WebRequest = WebRequest.Create("http://test.com/test"); var connectionString = "xxx"; var queueName = "xxx"; var client =…
Skull
  • 1,204
  • 16
  • 28
0
votes
1 answer

how to send whole xml file with data in azure service bus

If I am trying to send xml file it is giving 'System.Runtime.Serialization.InvalidDataContractException' exception.Is there any other way to send xml file name with data in azure service bus. foreach (string file in…
0
votes
1 answer

how to read xml file data from azure service bus queue

I just want to read XML file data that i have sent in azure service bus from queue. My code is while (client.Peek() != null) { BrokeredMessage orderOutMsg = client.Receive(); if (orderOutMsg != null) { // Deserialize the message…
0
votes
1 answer

Implementation of a queue in Azure service bus using python

I am an absolute beginner with Service Bus. I want to understand the implementation of a queue using python. The documentation tells me to install Azure Python SDK. I've done that.I made the python file as per instructions, yet I am getting syntax…