Tagged Questions
The deserialization tag has no wiki summary.
14
votes
2answers
443 views
How to debug deserialization errors in .NET?
.NET's Deserilization errors are quite generic, for example something like this:
System.ArgumentException: Object of
type 'System.Uri' cannot be converted
to type 'System.String'.
It's clear ...
11
votes
1answer
3k views
Performant Entity Serialization: BSON vs MessagePack (vs JSON)
Recently I've found MessagePack an alternative binary serialization format to Google's Protocol Buffers and JSON which also outperforms both.
Also there's the BSON serialization format that is used ...
10
votes
2answers
56 views
Serialized array breaks on retrieval from database
I am saving data in a mysql database. This data is an array and the content is different data of the current user that is logged in to my system.
I do this when I save to the database:
$data = ...
10
votes
3answers
2k views
Deserializing JSON using C#
Finding some difficulty in sourcing information in trying to deserialize JSON in C#.
I have results from Google custom search returned in JSON format. I just want to check through my steps and ...
8
votes
2answers
120 views
Final field semantics & deserialization with setAccessible(true)
According to the Java Memory Model, a final field initialized in the object's constructor not subject to further modifications is guaranteed to have its value correctly seen by every thread reading ...
8
votes
4answers
2k views
Fastest way to serialize and deserialize .NET object
im looking for the fastest way to serialize and deserialize .NET object. Here is what i have so far...
public class TD
{
public List<CT> CTs { get; set; }
public List<TE> TEs { ...
8
votes
3answers
6k views
Deserializing JSON data to C# using JSON.NET
I'm relatively new to working with C# and JSON data and am seeking guidance. I'm using C# 3.0, with .NET3.5SP1, and JSON.NET 3.5r6.
I have a defined C# class that I need to populate from a JSON ...
7
votes
4answers
1k views
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
...
6
votes
5answers
181 views
Convert string to variable name
I have an XML file, I have a node and I read all ChildNodes. The name of the childNode match to a variable I have to set with the value of this childNode.
In the loop, I'd like set :
myvar1 to ...
6
votes
2answers
98 views
Serialize xml different elements to several properties in c#
I have next xml:
<table-display-fields>
<field name="NAME/>
<field name="DESCRIPTION" />
</table-display-fields>
I deserealize that with next code:
...
6
votes
3answers
152 views
Deserializing into a UI
I have an assembly which contains several UserControl objects that I want to be able to save/load via the application UI. To do this, each control implements the ISerializable interface to customize ...
6
votes
4answers
427 views
Can I deserialize an object when the underlying class has been changed slightly?
I've written a custom class MyClass and marked it with the <Serializable()> attribute. I have a set of binary files on my hard drive that I've serialized using BinaryFormatter that came from ...
6
votes
2answers
9k views
deserializing JSON to .net object using NewtonSoft (or linq to json maybe?)
I know there a few posts about Newtonsoft so hopefully this isn't exactly a repeat...I'm trying to convert JSON data returned by Kazaa's API into a nice object of some kind
WebClient client = new ...
6
votes
2answers
9k views
Jackson JSON + Java Generics
I am trying to deserialize/map the below JSON to List<Bill> java object using Jackson json library. (this json was generated by jackson, Iam omitting that piece for brevity)
...
5
votes
3answers
132 views
Deserializing JSON into Object
I'm deserializing a JSON string into an object. I can't use a Dictionary<string, string> because the JSON inside is complex. I know about the Dictionary<string, dynamic>, but I'm over the ...
5
votes
3answers
1k views
Rails doesn't load classes on deserializing YAML/Marshal objects
Rails: 3.0.3
Ruby: 1.9.2
Trying to deserialize a very simple object using YAML.load or Marshal.load produces a corrupted object because the class which belongs to is not required on the ...
5
votes
3answers
1k views
C# Custom Serialization/Deserialization together with DeflateStreams
I'm trying to do custom serialization/deserialization of an object as well as compressing/decompressing the serialized data with DeflateStreams. I originally did this for more complex objects but cut ...
4
votes
1answer
54 views
Serialize/deserialize via super class
Suppose I have 1 base class and a derived class.
The derived class has extra fields that the base class doesn't.
I then instantiate the derived class and assign it to a definition of the base class.
...
4
votes
5answers
148 views
How do deserialize this JSON into an object?
I'm trying to use JSON.Net to deserialize a JSON object into a C# object.
The object I want to create is MonthlyPerformance which contains a list of Type, which contains a list of Categories, which ...
4
votes
2answers
101 views
How to de-serialize XML with many child nodes
If my XML is like this:
<Item>
<Name>Jerry</Name>
<Array>
<Item>
<Name>Joe</Name>
</Item>
<Item>
...
4
votes
1answer
364 views
How to implement custom JsonConverter in JSON.NET to deserialize a List of base class objects
I am trying to extend the JSON.net example given here
http://james.newtonking.com/projects/json/help/CustomCreationConverter.html
I have another sub class deriving from base class/Interface
public ...
4
votes
3answers
175 views
Java serialization - Android deserialization
I have tried implementing cross platform serialization between Java and Android. I have used Serializable, and having my code in Android in the same package as in desktop Java.
Source: java-desktop ...
4
votes
1answer
74 views
WCF Event Order
I need to hook into an event in a slightly unusual manner in WCF.
I'm passing a model from the client to the server, and I need access to that model:
After the model has been created but
Before the ...
4
votes
2answers
289 views
Deserializing a byte array
If I wanted to fill a structure from a binary file, I would use something like this:
using (BinaryReader br = new BinaryReader(File.Open(filename, FileMode.Open)))
{
myStruct.ID = ...
4
votes
3answers
235 views
deserialize from json to javascript object
I have a string at a java server application that is accessed using AJAX. It looks something like the following.
var json = [{
"adjacencies": [
{
"nodeTo": "graphnode2",
...
4
votes
2answers
118 views
How do I parse this string: a:10:{1:0;s:7:“default”;i:1; …?
How can I read strings like that? What do they mean?
...
4
votes
2answers
614 views
Null values for object properties de-serialized by WCF
I have a WCF web service that used to work fine. Somewhere down the line it stopped and I cant tell why. The code and the interface never changed nor did the web.config (at least not in relation to ...
4
votes
2answers
476 views
jQuery form deserialization for all inputs
I've been using a simple each function for deserializing a form:
data = { key : val, ... };
form = $('#formId');
$.each(data, function(val,i) {
form.find('*[name="' + val + ...
4
votes
1answer
347 views
Deserialization of an array always gives an array of nulls
I have a custom abstract base class with sub classes that I've made serializable/deseriablizeable with ISerializable. When I do serialization/deserialization of single instances of this class' sub ...
4
votes
3answers
1k views
JSON Serialize / Deserialize generic type with google-gson
Well, I have to confess I'm not good at generic type in Java
I've written a JSON serialize/deserialize class in C# using JavaScriptSerializer
private static JavaScriptSerializer js = new ...
4
votes
6answers
474 views
How to deserialize 1GB of objects into Python faster than cPickle?
We've got a Python-based web server that unpickles a number of large data files on startup using cPickle. The data files (pickled using HIGHEST_PROTOCOL) are around 0.4 GB on disk and load into memory ...
3
votes
1answer
29 views
How avoid exception deserializing an invalid enum item?
For simplicity purposes here, I will show my sample code using fruit. In actuality I am doing something more meaningful (we hope). Let say we have an enum:
public enum FruitType
{
Apple,
...
3
votes
2answers
53 views
Elegant and efficient way to put incoming serial data into structures
Suppose we have incoming values representing table of known size like this:
- a b c
x 06 07 08
y 10 11 12
z 14 15 16
but values are arriving from stream/iterator or another serial form, in ...
3
votes
2answers
208 views
Deserialize google geocoding XML using Datacontract in C#
I have the following Google geocoding XML
<GeocodeResponse>
<status>OK</status>
<result>
<type>street_address</type>
<formatted_address>1600 ...
3
votes
2answers
43 views
Help needed with json iphone
I m receiving data from the server. Now when i m deserializing it i m getting an array with key value. Now the first object of the array is my whole NSDictionary item from which i have to extract data ...
3
votes
1answer
178 views
Ruby deserializing YAML
I'm working with DelayedJob and I need to override a method that I thought was being used when an object is deserialized from YAML: self.yaml_new (defined in in delayed/serialization/active_record)
...
3
votes
1answer
229 views
Using RPC serialization/deserialization mechanism built in GWT
I am developing GWT offline application using HTML5 Local Storage. I would like to cache/store the transfer objects using com.google.gwt.storage.client.Storage (introduced in version 2.3). But the ...
3
votes
2answers
147 views
How to update WPF UI at deserialization of “settings” object
My goal is to do this: User selects settings file, settings are read and the UI is updated correspondingly. Saving should also be possible obviously.
My program is currently not WPF/XAML and doing ...
3
votes
2answers
197 views
Exception occurs when deserializing the following XML (from REST service), for no reason!
I am having trouble finding why the following XML won't deserialize.
Message:
There is an error in XML document (23, 26).
Inner exception:
Input string was not in a correct format.
...
3
votes
3answers
148 views
Proof-of-concept: How to dynamically choose an available constructor using reflection in Java
I'm developing a proof-of-concept object (de-)serialization framework, ideally able to serialize any Object and gather information about the class itself. I started implementing it using Reflection, ...
3
votes
3answers
227 views
Force GSON to use specific constructor
public class UserAction {
private final UUID uuid;
private String userId;
/* more fields, setters and getters here */
public UserAction(){
this.uuid = UUID.fromString(new ...
3
votes
3answers
136 views
Deserializing Protected constructed object from json
I'm using newton's json.net serializer. When deserializing the json to 'TheFox'; it enters to the protected ctor and gets the default property values. But not the property values in the json string. ...
3
votes
1answer
408 views
Parsing Google calendar to DDay.iCal
I'm working on application witch parses Google Calendar via Google API to DDay.iCal
The main attributes, properties are handled easily... ev.Summary = evt.Title.Text;
The problem is when I got an ...
3
votes
3answers
222 views
Deserialize int arrays from XML file
i am writing a c# project and i am trying to deserialize an object that has a field of type int[] and i want to make the deserialization in another manner.
Say i have a class:
class Player
{
...
3
votes
3answers
396 views
simpleframework, deserializing an empty element to an empty string instead of null
I use simpleframework (http://simple.sourceforge.net/) in a project for my serializing / deserializing needs, but it doesn't work as expected (well, atleast not how I expect) when dealing with empty / ...
3
votes
2answers
174 views
C# Automatic Property Deserialization - Lists
I'm trying to use automatic deserialization in my MVC action like so:
public void CreateEntitlementEntity(EntitlementEntityModel model) {
// stuff
}
And here's the class I want to deserialize:
...
3
votes
1answer
309 views
C++/sqlite wrapper for dead-easy class serialization?
I am looking for an OO sqlite C++ wrapper which allows quasi-transparent serialization and de-serialization of classes.
The work-flow I have in mind is as follow:
define a class record with the ...
3
votes
1answer
384 views
Parsing json where field can have two diffrent types with gson or jackson
I have json with field that contains two different types.
"fields":[{"value":"ZIELONE OKO"},{"value":{"@nil":"true"}}]
I have problem with deserializing these. My class with model contains:
...
3
votes
2answers
308 views
WCF, how do I instantialize all objects in a DataContract? [OnDeserializing] does not work
So I have some code like this.
[DataContract]
public class Example
{
SomeClass _someVar;
[OnDeserializing]
public void OnDeserializing(StremingContext c)
{
_someVar = new ...
3
votes
2answers
3k views
Error Deserializing Xml to Object - xmlns='' was not expected
I am having real trouble trying to deserialize some XML and was hoping someone can offer some assistance. I have read a lot of similar posts but I am unable to resolve this.
XML I am attempting to ...