I have a binary file containing C# serialized objects.
I can read the contents with python, but get results similar to:
'T\x00\x00\x00Test.Jobs.GenerateJobRequest, POC.Server\xca\x02-\xa2\x02\t\x82\x01\x06\x1a\x04myahR\x1d\x08\xfe\xff\xff\xff\xff\xff\xff\xff\xff\x01\x12\x10Data Lite Exportp\t\n\x16Do_Ko_Change-Job__ID_23\x10\x0c\x18\xa7\xb9\x18(\x012\x00:\x00H\xbc\x08')
Is there a way to deserialize this object in python?
I agree this is not an optimal solution and JSON, XML would be better. However, I do not have control of the process that serializes the data, I am only the consumer.