Replies: 2 comments
-
Sample data decoded for
|
Beta Was this translation helpful? Give feedback.
0 replies
-
I have proposed updates to the SRS for IG with the message definitions. |
Beta Was this translation helpful? Give feedback.
0 replies
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
-
We need to decide how we exchange messages with RabbitMQ and how the binary data is formatted.
Currently, I have a single exchange setup (
monaideploy
) with routing keys, such as,md.workflow.request
,md.export.complete
,md.export.request
.For binary data encoding, I have data formatted in JSON and then encode the string in UTF8:
Encode in .NET
Encoding.UTF8.GetBytes
Decode in Pyton
data.decode("utf-8")
We could also format it using BSON.
cc @joshliberty
Beta Was this translation helpful? Give feedback.
All reactions