Closed ashuthinks closed 6 years ago
I expect you're having a version conflict with Newtonsoft.Json. Microsoft.Hadoop.Avro2 uses 9.0.1 but ASP.NET Core uses 11.0.2.
You'll want to find the owners of Microsoft.Hadoop.Avro2, it's unclear if that package will work with later versions of Newtonsoft.Json.
i have tried using other version nuget also now i do not get any error but when I pass Jobject it is not creating message properly :( like when i use RootObject I can verify data using this statement. string avAvro = encoding.GetString(avroBytes);
Please file your issue here: https://github.com/Azure/azure-sdk-for-net/tree/master/src/ServiceManagement/HDInsight/Microsoft.Hadoop.Avro
This is not related to ASP.NET.
I'm using nuget Microsoft.Hadoop.Avro2 for avro serialization.
I'm using below code -
i'm passing simple json data into obj data is - {"id": "Demo123","count": 2}
i'm getting exception at this line -
using (var avroWriter = AvroContainer.CreateWriter(stream, Codec.Deflate))
Error- Could not find any matching known type for 'Newtonsoft.Json.Linq.JToken'
I checked like if I create a c# class out of this input json and mark it as DataContract it works as expected .
i did it like below -
and execute the method like below its works but i cant create a class as i'm getting json input and it may not have same properties to create a class :( -
RootObject test = JsonConvert.DeserializeObject(obj.ToString());
byte[] avroBytes = ReadAsAvro(test).ToArray();
any work around to use json message as it is like "obj.ToString()" ?