Top "Deserialization" questions

Deserialization is the process by which an object is recreated from its serialized state.

Deserialize Xml with empty elements

Consider the following XML: <a> <b>2</b> <c></c> </…

c# deserialization xml-deserialization
.NET Deserializing JSON to multiple types

Possible Duplicate: Deserializing JSON into one of several C# subclasses I have read-only access following JSON schema: { items: [{ type: "cat", …

.net json deserialization
serialize/deserialize a list of objects using BinaryFormatter

I know there were already many discussions on that topic, like this one: BinaryFormatter and Deserialization Complex objects but this …

c# object serialization deserialization binaryformatter
Redis Serialization and Deserialization

I have noticed that some of my serialized objects stored in Redis have problems deserializing. This typically occurs when I …

redis deserialization spring-data serializable spring-data-redis
How to resolve deserialization error in delayed job?

I am trying to use DelayedJob and the job is failing, giving the following error in the database: {Delayed::DeserializationError /…

ruby-on-rails delayed-job deserialization
Expecting element 'root' from namespace ''.. Encountered 'None' with name '', namespace ''

I've been searching for the past 4 hours for ways on how to tackle this problem, and I've not yet found …

c# json serialization deserialization datacontractjsonserializer
RestSharp deserialize JSON content(represent an object contains an byte array) error

The Client side receives a formal JSON content "{\"Id\":[1,2,3],\"Size\":56}", but get an error in deserialization the byte array. 1 Error …

json bytearray deserialization restsharp
How to deserialize an object with PyYAML using safe_load?

Having a snippet like this: import yaml class User(object): def __init__(self, name, surname): self.name= name self.surname= …

python deserialization pyyaml
Deserializing heterogenous JSON array into covariant List<> using Json.NET

I have a JSON-array containing objects of different types with different properties. One of the properties is called "type" and …

c# json json.net deserialization
Custom JodaTime serializer using Play Framework's JSON library?

How do I implement a custom JodaTime's DateTime serializer/deserializer for JSON? I'm inclined to use the Play Framework's JSON …

json scala serialization deserialization playframework-2.1