Windows Azure class which models the messages exchanged by applications that communicate through queues and topics.
Questions tagged [brokeredmessage]
49 questions
0
votes
1 answer
Azure Servicebus queue, BrokeredMessage.SequenceNumbers are not continuous
I'm using this MessageReceiver.ReceiveBatchAsync Method to receive a batch of messages from a service bus…

KKKK
- 11
- 3
0
votes
1 answer
Is there an open specification for how to serialize to / deserialize from a BrokeredMessage?
This is directly related to this other question. When passing objects to and from a .NET Framework client, which uses BrokeredMessages, those BrokeredMessages aren't just using simple JSON or XML to serialize these objects. It seems to be a more…

Panzercrisis
- 4,590
- 6
- 46
- 85
0
votes
1 answer
Compatibility between Azure Message and BrokeredMessage
We have two projects. One with .NET FrameWork and one with .NET Core. For .NET Core, we have to use the Azure ServiceBus, and for .NET Framework, we have to use the old ServiceBus as we are still working with 5.4.
The .NET Framework receives a…

TheChosenOne
- 181
- 1
- 1
- 8
0
votes
1 answer
Azure Service Bus Brokered Message Deserialization
I am sending messages to ASB using WCF NetMessaging.
The message can contain any number of custom data contracts.
I have a Service Fabric stateless service with a custom listener for ASB delivering messages pushed onto the queue. All examples I’ve…

Will Comeaux
- 325
- 1
- 14
0
votes
1 answer
I'm getting extra string char when I use GetBody() for BrokeredMessage but works perfect with GetBody() c#
Microsoft.ServiceBus.Messaging.MessageReceiver messageReceiver = messagingFactory.CreateMessageReceiver( Microsoft.ServiceBus.Messaging.SubscriptionClient.FormatSubscriptionPath(
"TopicName",
…

Neo
- 15,491
- 59
- 215
- 405
0
votes
2 answers
Azure Service Bus - Add a message to the queue in a deferred state
I'm wondering if it is possible to send a brokered message to a queue/topic where the message is already in a deferred state?
I'm asking this because I currently have a process that does the following ...
The process starts and a brokered message…

Dazfl
- 627
- 8
- 23
0
votes
0 answers
Does logic app's azure service bus standard connector makes a brokered connection with service bus (or is it non-brokered)?
In azure service bus queue (standard tier), any brokered connections above 1,000 are billed extra. Now, I'm using logic apps to send messages to service bus queue using service bus (standard) connector available out of the box in logic apps. Will…

singh_g99
- 19
- 6
0
votes
1 answer
Azure Service Bus Queue BrokeredMessage throws “SessionLockLostException” on 'RenewLock ()'
I use Azure Service Bus Queue to receive message and start a long running activity which can last from couple of minutes to couple of hours. During the activity a separate thread renews lock each 30 secs until activity is complete. On…

naveed
- 11
- 4
0
votes
1 answer
IotHub message routed to Service Bus losing ContentType property?
I'm trying to route device messages coming to IotHub using message routing based on message properties. I'm routing them to a service bus topic. However, I'm seeing that despite setting the ContentType property of the…

Amogh Natu
- 781
- 1
- 10
- 37
0
votes
1 answer
Azure ServiceBus multiple listeners on same machine not working
I am using Azure ServiceBus to process items sent by multiple clients.
I am testing the part which receives these messages and have run 2 listeners side by side. However if I submit 2 items to the queue. Only 1 listener ever works and the second…

Danhol86
- 1,352
- 1
- 11
- 20
0
votes
0 answers
Cannot convert lambda expression to type 'System.IAsyncResult' because it is not a delegate type
Can someone help me with this? I tend to work mostly in VB, so this C# compile error is a problem:
// Copyright (c) .NET Foundation. All rights reserved.
// Licensed under the Apache License, Version 2.0. See License.txt in the project root for…

Dominic Whitham
- 119
- 11
0
votes
0 answers
Intermittent errors when complete or abandon service bus message
The request operation did not complete within the allotted timeout of 00:00:23.0285352. The time allotted to this operation may have been a portion of a longer timeout. TrackingId:24342fae-1f74-4eef-b8f6-3b05d8826835, Timestamp:8/24/2016 6:00:12…

vborutenko
- 4,323
- 5
- 28
- 48
0
votes
1 answer
(Azure) BrokeredMessage.GetBody
I'm trying to put together a 'generic' subscriber that I can (re)use with Azure ServiceBus.
But I'm stuck as follows;
my code once stripped of non essential parts looks like this.
Subscribing.Client.OnMessage((recdMessage =>
{
var msgBody =…

Steve Smith
- 43
- 3
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.

pilid
- 9
- 1
- 4
0
votes
0 answers
Best way to asynchronously receive all brokered messages from the service bus
Here is what I am trying to achieve :
On the service bus I have a topic which contains 5005 messages.
I need to peek all the messages without completing them and add them to a list (List)
Here is what I am trying…

nitinvertigo
- 1,180
- 4
- 32
- 56