Serialization is the process by which an object is converted into a format that can be stored and later retrieved.

learn more… | top users | synonyms (7)

0
votes
1answer
13 views

What are good practices for class hinting in JSON?

I would like to know if there are preferred ways to exchange custom objects serialized as JSON, so that both ends can get a (rough) idea on how to deal with the values exchanged. I guess this is ...
0
votes
1answer
43 views

In andorid Difference Between parcelable and Serialization? [duplicate]

can anyone please explain me what it means by the performance issue the serialization encounters and make the Parcelable an efficient way rather than serialization in android to pass an object from ...
0
votes
1answer
64 views

Using DES to encrypt and decrypt a file in Java

I'm trying to serialize an object (in this case a simple string), encrypt it, and write it to a file. The encryption seems to work, but the decryption always fails. I've tried searching around, but I ...
0
votes
3answers
49 views

Anyone know of a .NET serialized class editor?

So I was looking at Solar 2 in dotPeek, and I noticed the saved game files are in the format of raw serialized classes. Does anyone know of a program (preferably free) that can read this format and ...
0
votes
0answers
38 views

Dynamic Form Serialization Issues

I have a form that contains a menu system. In the menu system you select which type of form you want to dynamically load. [Ex. Upload Video, Embed Video, Upload Photo, Import Image, Upload Audio, ...
0
votes
1answer
96 views

Scala deserialization: class not found

I'm trying to understand the following issue that occurs when trying to serialize/deserialize a very simple data structure: case class SimpleClass(i: Int) object SerializationDebug { def ...
0
votes
1answer
28 views

Serializing Field Objects

I've written a generic database that indexes all the fields of an instance of a class that have a specific annotation. I need to be able to write an instance of this database to a file, but the Field ...
0
votes
1answer
18 views

Visual Studio WPF Assembly and DLL solving

I'm improving an existent WPF project with a TCP/IP protocol that sends and receive small objects. I'm using Visual Studio 10 but I'm stuck. I'm using BinaryFormatter to serialize the objects and ...
0
votes
1answer
36 views

Mapping Input fields to new output fields for serialization in c#

I mention C# in my title but this is a generic programming question. I am just looking to find the best approach to do the following: I have tableA which contains the following fields ID : 1 ...
-1
votes
2answers
49 views

java Serialize Object to ByteArray

Hy guys! I've been searching for some old posts about Serialization in Java. I want to convert an Object into a ByteArray. So far I´ve done this: public class test { public static void ...
1
vote
1answer
101 views

StackOverflowError while saving and loading my object in android

I'm writing an android program and i just ran into a problem. My program serves to create graphs, run some specific algorithms on them (Dijsktra, BelmanFord, etc.), save the graphs to SD Card and ...
1
vote
1answer
42 views

Deserializing in VB Without Failing When the File Does Not Exist

I've nicked some code from msdn to write and read to an xml file to persist my data, but I need a little help with it. I have a dynamic array called darr. As I understand it, I use this code to store ...
0
votes
0answers
27 views

JavaScriptSerializer JArray deserilization

I am currently converting a JArray to string and using var foo = serializer.Deserialize<Dictionary<string, Dictionary<string, string>>>(Sign.ToString()); Will it still work if I ...
0
votes
1answer
20 views

friend class boost mongo_iarchive does not a name a type

So I had to override some functionality for the boost mongo archive types, and as a result I need these archive types to be a friend of the class I am serializing. However I am running into issues ...
0
votes
0answers
38 views

Django tastypie - long JSON output is truncated causing parsing error

I have a RESTful webservice returning large amount of JSON data implemented using django-tastypie. I noticed that JSON is suddenly truncated, the whole output is about 2.1 MB but it should be more ...
4
votes
2answers
94 views

Show internal structure of an R object

Is there a way to show the complete internal structure of an R object in an unambiguous and human readable way? The str function doesn't exactly do this, as it shows custom representations. For ...
1
vote
1answer
42 views

Writing custom java serializers for classes not in the same path

So I would like to write custom serializers for some classes I have. I need two formats, one a human readable and editable yaml format, and one just for internal use that can be binary. I know about ...
2
votes
4answers
84 views

How do you call a constructor via an expression tree on an existing object?

I'm trying to call the deserialization constructor for an object that already exists. How do I do that with expression trees? I tried: // Create an uninitialized object T graph = ...
1
vote
1answer
31 views

What is the deserialize equivalent of ISerializable.GetObjectData?

I'm writing a custom serializer, and I've just finished implementing the portion for handling ISerializable.GetObjectData. But when I go to deserialize the information and re-apply it to the graph, I ...
1
vote
3answers
63 views

Best method for robust .NET serialization

I want to save and restore some settings that are currently defined as POCO objects, and want the save/load operations to work even if a change happens in the format of the data being saved so that ...
-1
votes
4answers
62 views

Reading/writing java.util.Date to/from String

I have a need to save a java.util.Date off as a string, and then read it back from that string at a later point in time. I do not want to serialize the object to a file and read it out of the file. I ...
0
votes
1answer
38 views

How to convert an object to a 2 dimension branched string array

I have a 2 dimension branched array. This I converted to an object and write it via a serializer to a file. (The conversion to an object cause of the serializer, u know) Now I read this file and have ...
0
votes
0answers
19 views

Possible to store lists of objects in a java.util.prefs.Preferences?

In java.util.prefs.Preferences I see a bunch of getter methods, such as getDouble, getBoolean, etc., but nothing like a getObject. I'd like to be able to store a List<Widget> in a Preferences ...
0
votes
0answers
6 views

What serialization mechanism to use for a massively visited autocomplete service?

I'm architecting an autocomplete service for a massively used online portal. JSON of course is the first option came to my mind to send data from the server back to the browser. But I'm wondering ...
0
votes
0answers
27 views

Web Service Return Wrong Data

I have a WebService that returns DataSet. Below its a snippet. public DataSet Get_UserLoginCheck(string sClientID, string sUserID, string sPassword, string sEncryptedVerificationCode) { if ...
0
votes
1answer
47 views

Knockoutjs - function inside viewmodel causing undesirable recursion

In my Knockout view model I have a Save() function which sends a jQuery POST request. Inside this POST request is a call to ko.toJS(this). Whenever I call this Save function the browser becomes ...
1
vote
2answers
110 views

write list of objects to a file

I've got a class salesman in the following format: class salesman { public string name, address, email; public int sales; } I've got another class where the user inputs name, address, email ...
0
votes
2answers
37 views

Java Bean Serialization Library

This is a rather simple issue but I'm having my head against the wall on this one. I'm looking for a way to serialize/deserialize a large number of Java beans into any file format. The key though ...
0
votes
2answers
72 views

Python query objects are not serializable

When I tried to encode the query objects I get the following error: File "C:\Program File\Python27\lib\json\encoder.py", line 264, in iterencode return _iterencode(o, 0) File ...
1
vote
1answer
52 views

Why is DataTable serializable?

So here's a simple test case: [Serializable] class Base { } [Serializable] class Derived : Base { } BinaryFormatter formatter = new BinaryFormatter(); formatter.Serialize(stream, new Derived()); ...
2
votes
0answers
54 views

Boost serialization tutorial program, error after running

I just installed boost-serialization with default options and get this result ashot@ashot-desktop:~/boost_1_53_0$ sudo ./b2 install Component configuration: - atomic : not ...
4
votes
3answers
91 views

Set a maximum depth of JSON serialization in .NET Web API

Let's say I have these entitites with these relations: This is just a fictious example, and not my current entities. Course User NewsPosts Courses have many Users, Users have many Courses Courses ...
0
votes
3answers
46 views

serialize object for unit testing

Assuming in a unit test I need to have an object all of 50 fields of which are set up with some values. I don't want to manually set up all this fields, as it takes time and annoying... Somehow I ...
0
votes
2answers
59 views

Deserializing a list of objects from XML in C#

I have the following Xml which i cannot change: <myRoot> <User> <Name>James</Name> </User> <User> <Name>Jill</Name> ...
0
votes
1answer
109 views

Add binding to json using JavaScriptSerializer with list asp.net c#

I use to build my json return string by hand using vbscript and would add a binding, and then in javascript i could say something simple like data.response[0].key which would look like this in json ...
0
votes
1answer
41 views

PHP: Pulling serialized blob into an array then display

Updated Code: <?php mysql_connect(HIDDEN) or die(mysql_error()); mysqli_select_db($conn, "wow") or die(mysql_error()); $data = mysqli_query($conn, "SELECT Data FROM wa_guilds") or ...
0
votes
0answers
29 views

SOAP Deserialization - stuck with XmlNodes[]

eI have a webservice which I have no control over. For one reason or another, I cannot use a pregenerated XML Serializers assembly (I am running under MonoTouch) so I need to handle the ...
2
votes
0answers
68 views

How to control JSON.NET serialization of System.Data.Spatial.DbGeometry

I have a DB First Entity Framework 5 Data Access Layer that is mapped to a table containing a SQL geometry type field called CenterCoordinate. The resulting entity contains this: public ...
0
votes
2answers
49 views

JQuery string not parsing correctly in PHP

In a previous post, I asked about how to deserialize a JQuery string, and was told to use parse_str(). However, I didn't post my code until later. So, here is my JQuery string: ...
0
votes
1answer
69 views

jquery serialization and getting values with php

May be it would be an easy question but I did not manage it. Here is my checkboxes like this: <input name="msg_id[]" type="checkbox" id="msg3" value="3" /> <input name="msg_id[]" ...
0
votes
2answers
29 views

How to properly deserialize a string from JQuery using PHP? [duplicate]

I was wondering, does anyone know how do I properly deserialize a string from a JQuery using PHP? The string that JQuery passes into my PHP file is this: ...
4
votes
1answer
91 views

How do I get the class of java.lang.Enum in scala?

I am new to Scala and I am converting some Java code to Scala that uses the Jackson library to handle JSON serialization. I ran into a problem in a Jackson SimpleModule implementation. In Java, I ...
0
votes
2answers
35 views

Java object serialization issue while reading object

I had serialized several Data and java.lang.Integer objects but while reading Data object using stream Data objects value are not correctly read while in case of java.lang.Integer objects values read ...
-1
votes
1answer
61 views

Object Deserialization- to get back int array from serialized Object

int[] myIntArray; ByteArrayOutputStream byteArrayOutputStream = new ByteArrayOutputStream(1024); ObjectOutputStream objectOutputStream = new ObjectOutputStream(new ...
0
votes
1answer
65 views

serializing form data to a web api

is there a better way of implementing this code: public Payment SendPaymentToSagePay(Payment paymentModel) { var webClient = new WebClient() { BaseAddress = ...
6
votes
2answers
122 views

Serialization internals in .Net

The architecture in my application is somewhat like this MainUI------->WCF------->BLL------->DAL I am using Entity Framework 4.0 and .Net Framework 4.0. My data access layer returns PoCo ...
2
votes
1answer
59 views

Serialize a protoBuf-net message to a stream c# - getting error “Only data-contract classes can be processed”

I have a message in protoBuf which called "package", I generated my .proto file to classes in purpose to fill all the required fields in that "package" and it works fine. Now, I have that protoBuf ...
0
votes
1answer
41 views

Refactor of ShouldSerialize () in class… can I use IContractResolver?

I have an API that returns a big list of car features.... all are either bool or ints... and basically I only want to display the ones that return true values or >0 for the ints. I am using JSON.net ...
1
vote
0answers
37 views

Compile eror on serializing boost::unordered_set

First of all, Does boost::serialization support unordered_set now? I didn't find the header boost/serialization/unordered_set.hpp. Here is the code I tried to implement: namespace boost { namespace ...
0
votes
2answers
39 views

How to read serialized data into a set of entity classes

I've been assigned a task to import reference data from a database into a set of entity classes. Here's an example of one of the simpler entity classes: public class CountryList { public ...

1 3 4 5 6 7 201