Top "Serialization" questions

Serialization is the process by which data-structures are converted into a format that can be easily stored or transmitted and subsequently reconstructed.

NewtonSoft.Json Serialize and Deserialize class with property of type IEnumerable<ISomeInterface>

I am trying to move some code to consume ASP.NET MVC Web API generated Json data instead of SOAP …

c# json serialization json.net deserialization
XmlSerializer - There was an error reflecting type

Using C# .NET 2.0, I have a composite data class that does have the [Serializable] attribute on it. I am creating …

c# .net xml serialization .net-2.0
.NET NewtonSoft JSON deserialize map to a different property name

I have following JSON string which is received from an external party. { "team":[ { "v1":"", "attributes":{ "eighty_min_score":"", "home_or_…

json c#-4.0 serialization deserialization json.net
How do I use a custom Serializer with Jackson?

I have two Java classes that I want to serialize to JSON using Jackson: public class User { public final int …

java json serialization jackson
How to repair a serialized string which has been corrupted by an incorrect byte count length?

I am using Hotaru CMS with the Image Upload plugin, I get this error if I try to attach an …

php mysql serialization content-management-system
jQuery: serialize() form and other parameters

Is it possible to send form elements (serialized with .serialize() method) and other parameters with a single AJAX request? Example: $.…

jquery ajax forms serialization
IntelliJ IDEA generating serialVersionUID

How do generate this value in IntelliJ IDEA? I go to Settings -> Errors -> Serialization issues -&…

java serialization intellij-idea
How to serialize an object into a string

I am able to serialize an object into a file and then restore it again as is shown in the …

java serialization
How to JSON serialize sets?

I have a Python set that contains objects with __hash__ and __eq__ methods in order to make certain no duplicates …

python json serialization set
Convert an object to an XML string

I have got a class named WebserviceType I got from the tool xsd.exe from an XSD file. Now I …

c# xml serialization