Skip to main content
3 votes
1 answer
66 views

We have a legacy application that was originally written to connect directly to a SQL Server database using OLEDB. Since then we have introduced Azure SQL databases (but some of our clients are still ...
DinahMoeHumm's user avatar
  • 1,090
2 votes
1 answer
68 views

I'm using jackson-module-kotlin:2.21.0 and jackson-datatype-jsr310:2.21.0. I need to serialize (and then deserialize) java.time.Instant in specified format "yyyy-MM-dd HH:mm:ss" (without ...
Savanture's user avatar
0 votes
0 answers
21 views

I am using Redisson RMap as a cache and fetching data in batches using getAll(). Original code private static final int FETCH_LIMIT = 1000; private void getResponseForSubsetOfKeys(Set<Object> ...
Aryan Garg's user avatar
Advice
0 votes
2 replies
31 views

I'm working on an experimental project called NextLiber VRM, which attempts to interpret Unity scene files outside the Unity runtime. Unity stores scenes in YAML format, including transforms, ...
Akito Hayasaka's user avatar
2 votes
1 answer
125 views

I am currently working on a small financial management application and use XmlSerializer to persist my data. I maintain a main list (allRecords) holding all data, and two separate lists (incomeList ...
David's user avatar
  • 23
0 votes
0 answers
35 views

AMD Processor Programming Reference (PPR) for AMD Family 19h Model 70h, Revision A0 Processors says: MSR0000_010B [Flush Command] (Core::X86::Msr::FLUSH_CMD) Writes to this register do not execute ...
Akon's user avatar
  • 467
2 votes
1 answer
150 views

I have a couple of ISerializable classes (simplified): internal interface IBase : ISerializable { int Number { get; } } internal interface ITable : IBase { ISection Section { get; } } [...
bairog's user avatar
  • 3,593
3 votes
1 answer
171 views

I have a couple of classes (simplified): internal interface ITable { int Number { get; } ISection Section { get; } } internal class Table : ITable { public int Number { get; private init; ...
bairog's user avatar
  • 3,593
2 votes
1 answer
70 views

I am trying to get the label attached to the relevant interger for the choice field. Although the API returns the interger, I cannot seem to be able to return the actual label value. This is the ...
PhilM's user avatar
  • 439
1 vote
1 answer
287 views

I want to use polymorphic JSON for the RichText type in .NET 10 because I plan migrating from one richtext format to another and I am stuck with a problem: when the object is automatically serialized ...
Sannnekk's user avatar
  • 103
-1 votes
1 answer
58 views

I'm encountering a serialization error when building a Unity project for UWP and running it in Visual Studio: A scripted object probably BlankScene has a different serialization layout when loading (...
Gabriel Alabi's user avatar
1 vote
1 answer
268 views

After adding the dependency org.jetbrains.kotlinx:kotlinx-serialization-json:1.9.0 I tried using it like this: import kotlinx.serialization.Serializable import kotlinx.serialization.json.Json @...
SMBiggs's user avatar
  • 11.8k
0 votes
1 answer
53 views

I'm using confluent's KafkaAvroSerializer with a schema that includes a nullable timestamp-millis field. The field maps to Instant in Java, but when I send a non-null I get an UnresolvedUnionException....
John Leon's user avatar
1 vote
1 answer
126 views

I'm upgrading from protobuf-net 2.2.1.0 to 3.2.26, and I've noticed that callback methods decorated with [ProtoBeforeSerialization] and [ProtoAfterDeserialization] are no longer invoked during ...
Sudheer Kumar's user avatar
7 votes
1 answer
156 views

I stumbled upon something that got me curious. Apparently, serializing a record with a cyclic reference does not retain the cycle when deserializing it again, it becomes null. When doing the same ...
Zabuzard's user avatar
  • 26.3k

15 30 50 per page
1
2 3 4 5
2235