Hi. Is there a way to specify the serialization to use when using MessagingBridge?
Many thanks.
Hi. Is there a way to specify the serialization to use when using MessagingBridge?
Many thanks.
Welcome back, @antmeehan.
No, there is no way to specify the serialization format in the bridge because no deserialization is happening. The bridge shovels raw messages from one side to the other without doing anything with the message payload.
What is your need that leads you to look into bridge serialization options?
.m
Ahh that makes sense. Thanks.
The issue we had is our new SQL Transport endpoints were using JSON serialization, but our MSMQ endpoints are using XML.
The easy fix is to use XML also in our new SQL Transport endpoints
Hi Anthony!
Since json is the preferred serialization format these days I would recommend that you look into adding the XmlSerializer as an additional deserializer to your SQL endpoints as described here
Cheers,
Andreas
Thanks Andreas. In our case we’ll add the JSON deserializer to our MSMQ endpoints so they can receive the new fancy messages from the SQL endpoints (via the bridge).