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 BrokeredMessage, and .NET Core sends an Azure Message. How can I make this compatible? Do I have to write my own serializer?
Compatibility between Azure Message and BrokeredMessage
940 Views Asked by TheChosenOne At
1
There are 1 best solutions below
Related Questions in AZURESERVICEBUS
- Inject AsyncCollector into a service
- Producer Batching Service Bus Vs Kafka
- Azure Queue Functions | Trigger when multiple queue functions executions with a specific message property ends
- Azure service bus - processing multiple messages in parallel (MaxConcurrentCallsPerSession)
- Value cannot be null ( parameter envolope)
- Error indexing method 'IntegrationFunction' Can't convert from type 'Microsoft.Azure.EventHubs.EventData
- Handling multiple return values in an Azure function
- Adding custom message properties when creating Service Bus Topic messages with Node.js
- Throttling consumption of Servicebus messages with azure functions
- Azure Service Bus With Spring Integration Executor Channel Error Handling
- Resubmitting messages from deadletter on Azure service bus on Topic queue with partitioning and duplicate detection enabled
- How to maintain control of numerous event racing scenarios in a platform of growing complexity?
- Exception is ocurring while Implementing Azure Service bus at Receiver End
- Azure - What causes a ServiceBus Topic to be "partitioned"
- Recommended way to Limit Azure Function Service bus Trigger Concurrent message processing when using App Service Plan
Related Questions in SERVICEBUS
- Producer Batching Service Bus Vs Kafka
- Local Azure Function Service Bus Trigger doesnt pick up messages but no information
- Azure ServiceBus: created Shared Access Policy for queue programmatically
- .Net communication between API and Azure functions app
- ServiceBus Processor - Dont concurrently process messages for the same session
- .NET - How share data between service and azure function
- Azure Service Bus access error: System.Net.WebSockets.Client: Unable to connect to the remote server
- Reconfiguring Service Bus and Workflow Manager to use the new certificate
- How to write an Azure function trigger for a new Azure service bus entry in JavaScript?
- How to exit application when C# ServiceBusClient can't connect to Service Bus
- Can ApplicationProperties/CustomProperties be set on the ServiceBusMessage when working with ServiceBusOutput-outputbinding in C#?
- Need to set up alert if messages not consumed in service bus queue?
- Difficulty in Identifying Working Messages Amidst Unknown Message Types in ServiceInsight
- Azure Service Bus Subscription filter not working
- I want to consume two bus service topics
Related Questions in BROKEREDMESSAGE
- Azure Servicebus queue, BrokeredMessage.SequenceNumbers are not continuous
- Is there an open specification for how to serialize to / deserialize from a BrokeredMessage?
- Are .NET Standard Messages effectively incompatible with .NET Framework BrokeredMessages for general-purpose message sending?
- Azure service bus Message deserialize broken in core conversion
- System.Runtime.Serialization.SerializationException while receiving message from Azure Service Bus
- Compatibility between Azure Message and BrokeredMessage
- Azure Service Bus Brokered Message Deserialization
- Microsoft Azure Service Bus Message completed
- I'm getting extra string char when I use GetBody<System.IO.Stream>() for BrokeredMessage but works perfect with GetBody<string>() c#
- Azure Service Bus - Add a message to the queue in a deferred state
- Consuming Azure Queue message in Java using BrokeredMessage message . getBody() retruns some header information, How to get rid of it?
- Does logic app's azure service bus standard connector makes a brokered connection with service bus (or is it non-brokered)?
- Azure service bus unique sessions for unique clients' messages & how to make non-brokered connections?
- Azure Service Bus Queue BrokeredMessage throws “SessionLockLostException” on 'RenewLock ()'
- Is it a good practice to re-create a Topic Client before sending a message to Azure Topic
Trending Questions
- UIImageView Frame Doesn't Reflect Constraints
- Is it possible to use adb commands to click on a view by finding its ID?
- How to create a new web character symbol recognizable by html/javascript?
- Why isn't my CSS3 animation smooth in Google Chrome (but very smooth on other browsers)?
- Heap Gives Page Fault
- Connect ffmpeg to Visual Studio 2008
- Both Object- and ValueAnimator jumps when Duration is set above API LvL 24
- How to avoid default initialization of objects in std::vector?
- second argument of the command line arguments in a format other than char** argv or char* argv[]
- How to improve efficiency of algorithm which generates next lexicographic permutation?
- Navigating to the another actvity app getting crash in android
- How to read the particular message format in android and store in sqlite database?
- Resetting inventory status after order is cancelled
- Efficiently compute powers of X in SSE/AVX
- Insert into an external database using ajax and php : POST 500 (Internal Server Error)
Popular # Hahtags
Popular Questions
- How do I undo the most recent local commits in Git?
- How can I remove a specific item from an array in JavaScript?
- How do I delete a Git branch locally and remotely?
- Find all files containing a specific text (string) on Linux?
- How do I revert a Git repository to a previous commit?
- How do I create an HTML button that acts like a link?
- How do I check out a remote Git branch?
- How do I force "git pull" to overwrite local files?
- How do I list all files of a directory?
- How to check whether a string contains a substring in JavaScript?
- How do I redirect to another webpage?
- How can I iterate over rows in a Pandas DataFrame?
- How do I convert a String to an int in Java?
- Does Python have a string 'contains' substring method?
- How do I check if a string contains a specific word?
This topic has been covered a few times. In your case, if it's truly uni-directional the way you describe it, to process messages of type
Messagesent from the Standard Service Bus library, you will need to receive those message using the old client and process as aStream. The stream will provide you with the bytes, which you'll be able to deserialize utilizing the same method used to serialize the content. More on this topic in the (now decommissioned) Service Bus client issue here.In case you cannot modify how
BrokeredMessagesare handled, this Stack Overflow question has an answer to handle interop the other way around.