Top "Deserialization" questions

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

Polymorphism with gson

I have a problem deserializing a json string with Gson. I receive an array of commands. The command can be …

java json polymorphism gson deserialization
C# Deserialize XML to object

Having problems deserializing some xml into an object in C#. The error that I receive is... xmlns=''> was …

c# xml xml-serialization xmlserializer deserialization
Symfony - Deserialize json to an array of entities

I have a json object that I received by making a get API call. I make this call to receive …

php json symfony deserialization jmsserializerbundle
Ignore a property during xml serialization but not during deserialization

In C#, how can I make XmlSerializer ignore a property during serialization but not during deserialization? (Or how do I …

c# .net xml-serialization json.net deserialization
How do I deserialize a JSON array using Newtonsoft.Json

[ { "receiver_tax_id":"1002", "total":"6949,15", "receiver_company_name":"Das Company", "receiver_email":"[email protected]", "status":0 }, { "receiver_tax_id":"1001", "total":"39222,49", "receiver_…

c# json deserialization
Can not find a (Map) Key deserializer for type [simple type, class com.comcast.ivr.core.domain.AutoHandlingSlotKey]

I have a domain object that has a Map: private Map<AutoHandlingSlotKey, LinkedHashSet<AutoFunction>> autoHandling; When …

java json jackson deserialization
XML deserialization to POJO using Jackson XmlMapper

Using Jackson XmlMapper annotations, how would I deserialize this XML into a pojo? <?xml version="1.0" encoding="UTF-8"?> <…

java xml jackson deserialization
Is Jackson really unable to deserialize json into a generic type?

This is a duplicate question because the following questions are either messy or they are not answered at all: deserializing-a-generic-type-with-jackson …

java generics jackson deserialization
Posting array of objects with MVC Web API

I have a basic post operation that works on a single object of RecordIem. What I would like to do …

c# deserialization asp.net-web-api
How to get property from dynamic JObject programmatically

I'm parsing a JSON string using the NewtonSoft JObject. How can I get values from a dynamic object programmatically? I …

c# .net json json.net deserialization