Serialization is the process by which an object is converted into a format that can be stored and later retrieved.
-1
votes
3answers
51 views
How to use `transient` members? [closed]
I have a Serialized class with some transient members. I am not sure how to use those members.
public class ClientBeanBase extends BeanBase
{
protected REWSStubClient getServiceStub( boolean ...
1
vote
1answer
28 views
I manage to save, but not to LOAD (Serialization)
I´m making a small game and are now working with serialization. I have managed to save the current state of my battleground object, but I can not seem to load it.
This is my method that´s giving me ...
0
votes
0answers
14 views
Unable to read beyond end of stream; Serializing an ObservableCollection
I have the following save and load method in my collection class:
private void Save()
{
BinaryFormatter formatter = new BinaryFormatter();
FileStream stream = null;
...
-1
votes
0answers
33 views
how to serialize a template in a generic class in c#
I ran into a problem while converting the following java code to c#
//java
public class DataCRUD<ET, EtId extends Serializable>
while I converted it into
//c#
public class DataCRUD<ET, ...
0
votes
1answer
53 views
Rails can't find database column just created
I've just run a migration to add a :new_column to :my_table. This is a serialized column (first one in entire project), so I've added the configuration to the model:
serialize :new_column, Array
My ...
0
votes
1answer
39 views
How to handle user registration over django_rest_framework based API
How do I handle user registration over and API using django_rest_framework? Specifically, how would I set up a password field in the UserSerializer
class NewUserSerializer(serializer.Serializers):
...
0
votes
2answers
14 views
Sequentally Channel Write Sends Corrupted Data in Java.NIO
I have a Server that uses non blocking sockets, nio. Server works in a separate thread and there is another thread called Game. Game thread holds the server object and uses server.sendMessage, Server ...
0
votes
0answers
20 views
XML Serialization How to change XmlAttribute name in Derived class instance
So, I have the code below, and what I want to do is be able to change the name of the attributes and use different names for the same properties defined in the base class. For installer, in my ...
0
votes
0answers
15 views
Unable to deserialize MultiKeyMap using Jackson JSON API
I have the following piece of code that I am using to test Jackson JSON API to serialize and deserialize MultiKeyMap from Apache Collection package -
import ...
0
votes
0answers
23 views
De-Serializing Derived objects using XMLIncludeAttribute
I have a requirement to create mappers for record elements. I have a parent class and a bunch of child classes. To the parent class, I added the XmlIncludeAttribute so that whenever a list of the type ...
1
vote
1answer
34 views
Jackson: Serializing enums as interfaces
(Disclaimer: Extreme oversimplification. The actual scenario is considerably more complex.)
Say I have two systems, Producer and Consumer. Their code is completely independent, aside from a single ...
0
votes
2answers
55 views
Will serialization save the superclass fields? [duplicate]
My subclass implements Serializable, but my superclass does not.
Both subclass and superclass contain variables that need to be saved as part of the state of the subclass.
Will serialization save ...
1
vote
0answers
34 views
Passing XML data as a string parameter in the request ServiceStack
I’m using ServiceStack and every time I’m trying to pass XML string as a string parameter or “< “ symbol for the POST request I’m getting an exception: SerializationException - Could not ...
3
votes
2answers
37 views
Sharing a serialized object between applications
In application 1 I serialize and deserialize and object and it works fine. I would like however to deserialize an object from application 1 in application 2. I added the class that defines that object ...
2
votes
1answer
73 views
Why JSON DeSerialization fails in C#?
I am trying to De-serialize the string using Newtonsoft.Json dll of
RunTime Version
v2.0.50727
Version
4.5.0.0.
Target FrameWork
.Net Framework 2.0
To String:
jsonString ...
0
votes
0answers
22 views
xmlRpc java server and php Client
I have and xmlRpc server below:
package org.apache.xmlrpc.demo;
import java.util.Iterator;
import java.util.List;
import java.util.Map;
public class Calculator {
public int add(int i1, int i2) {
...
0
votes
0answers
17 views
Looping through a serialized array in a Prawn pdf
I have a Payment model, and each payment contains an array of Items.
The items are saved as a serialized array in a string column of the Payments table.
I have set up the serializing in payment.rb ...
2
votes
1answer
39 views
How to serialize into multiple models using DjangoRestFramework
I have defined a user profile model, but want to have one api endpoint that saves all of the user data into both models. By that I mean, I am using the user model and I have a userprofile model ...
1
vote
1answer
34 views
Serialization: Importance of serialVersionUID on Networking [duplicate]
In my TCP server-client implementation, all of my packets are derived from an abstract base class that implements Serializable. I am converting the class into bytes and send it through the socket, and ...
0
votes
2answers
59 views
C# Serialising/deserialising Listview
I'm trying to serialise data from a ListView as well as then deserialising it and also consequently fill the ListView with the saved data.
public List<ListViewItem> SaveListView(ListView LV)
...
0
votes
0answers
22 views
Json : Exception while serializing class having more than one this[] operator
my Json background is one day old.
As a starting point I took http://code.msdn.microsoft.com/Supporting-different-data-b0351c9a
That I changed a bit to learn.
While serializing the single ...
0
votes
0answers
38 views
Passing serialized form data to my (Laravel) controller
I have a form that asks the user to make 10 game picks and then sort the picks based on confidence. I'm using jQuery's sortable function and then populating a hidden form element (order-array) with a ...
0
votes
1answer
83 views
Serialize HTML Form in JavaScript and then Convert to a .NET Type in C#
I'm trying to take a HTML form and serialize the fields so that it can be stored as attributes against an element in JavaScript (you can use jQuery). This can later be parsed in C# and converted to a ...
1
vote
2answers
51 views
Byte array java xml serialization
I have problem with xml serialization in java. Actually I have to make a xml header to my cryptography program which should look like this:
<EncryptedFileHeader>
<Algorithm>algorithm ...
3
votes
3answers
75 views
PHP serialize() ― specification
I am searching for the specification or an exact description about how the PHP serialize() function exactly works. All I could find for that topic is that comment in the manual.
Is there anywhere out ...
3
votes
4answers
62 views
Saving objects to a file, and adding more objects to it on a later occasion
I was thinking about making a little project that would help me track my diet. My first obstacle is building a library of food type-objects and writing them to a file.
I followed this guide ...
0
votes
1answer
73 views
Serialize an array list
I would like to serialize an array list to be sure to start again where this list did stop, here is my code:
public partial class Test_auto : Form
{
ArrayList strategyFutureList = new ...
1
vote
1answer
79 views
Serializing and Deserializing Multiple Objects
I am making an error logging library which creates a file in a specified location, then saves the error information in that file, which can then be read by a separate tasker program that I intend to ...
0
votes
1answer
36 views
Serialization of structure with OPENSSL Signatures
I am doing serialization of a structure in C but I am having a problem which I can figure it out:s The code is a bit long but I think it is ok to understand.
This is the top level structure I am ...
2
votes
1answer
66 views
How to parsing a json string within an array?
I have problems with parsing JSON.
JSON
[
{
"obj" :
{
"id" : 2001,
"modified" : 1365551172.000000000,
"size" : 19,
}
},{
"obj2" :
{
"id" : 2001,
"modified" : ...
0
votes
1answer
14 views
Deserialize XML fails to connect class to elements
I'm trying to deserialize an XML document from the web into associated classes for a Windows Phone 7 environment. I've used an async to grab the document, it loads into an XmlReader as far as I can ...
0
votes
1answer
21 views
Java flexjson Serializing composed JSON objects
I have a Java class and I want to generate a JSON string from an object of the class. However, the members of the class are as follows:
/**
* The set containing the footer texts
*/
public ...
1
vote
0answers
48 views
C# - Serialization of a dynamic form - XML
I am trying to create a serialisation in a XML file, however I am too novice to understand all the point.
I have a dynamic form where if you click on add, then a new panel appear; strategy 1, if you ...
0
votes
0answers
63 views
How do I deserialize complex XML into classes?
I have an XML coming in from the server in the form of:
<resultSets>
<resultSets uid="957136">
<results uid="777402">
</results>
</resultSets>
...
0
votes
1answer
46 views
$.post serialization for file uploads
This seems to work with my dynamically changing forms that don't require uploads.
<script src="http://code.jquery.com/jquery-latest.min.js"></script>
<script type="text/javascript" ...
0
votes
1answer
52 views
Scala Getting class type from string representation
I have a class name string representation
val cls = Class.forName("clsName")
def fromJson[T: Manifest](me: String): T = {
Extraction.extract[T](net.liftweb.json.parse(me))
}
I would like to use ...
1
vote
1answer
29 views
Child objects in CouchDB with Java
UPDATE: Thanks funql/Kim. I understand the point you're making - so if you'll allow me a follow-up question, is there in fact a way of doing object persistence (as suggested by Funql for Mongo) using ...
0
votes
1answer
78 views
WCF : Multi-dimensional arrays are not supported
Different objects with multi-dimensional arrays need to go through a WCF netTcpBinding connection. WCF throws "Multi-dimensional arrays are not supported" when trying.
I can't change the interface ...
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
41 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
46 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
47 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
34 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
90 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
17 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
34 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
39 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
97 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
39 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 ...



