Tagged Questions

2
votes
3answers
43 views

C# DataContract Serialization, how to deserialize to already existing instance

I have a class, which holds a static dictionary of all existing instances, which are defined at compile time. Basically it looks like this: [DataContract] class Foo { private static …
2
votes
8answers
123 views

casting byte[] to user defined class in java

i want to cast byte[] which i got from socket a class which I write it (Message). I tried byte[] data=new btyte[100]; . . . Message m=(Message)data; but it did not work and give me error what …
1
vote
5answers
56 views

How to XmlSerialize System.Drawing.Font class

The classSystem.Drawing.Font is not XML Serializable since it doesn't have a default (empty) constructor. Is there some work around or alternative way to serialize Font nevertheless?
3
votes
1answer
62 views

Parallel Binary DeSerialization?

I have a solution where I need to read objects into memory very quickly, however the binary stream might be cached compressed in memory to save time on disk io. I've tinkered around with different …
3
votes
4answers
164 views

Sending an object over the Internet

I define a class, and then I instate an object of that class type. I want to send this object to another Java application running on a different computer transparently. What is the best technology to …
1
vote
1answer
14 views

XmlSerialization and List

I have the following class public class Notifications : List<Notification> { } Unfortunately, when it's serialized it looks like <ArrayOfNotification> <Notification> ... …
0
votes
4answers
93 views

What is the value of static variables after deserializing an object?

Let's say that I create an instance of class B, which has an static variable x, assigned with a value of 3 in the class B declaration. In the main() method, I do this: B b = new B(); b.x = 7; …
1
vote
2answers
59 views

serialization and versionId

please help clarifying the doubt : While doing serialization, if we have defined the version id as static final long serialVersionUID = 2L;, and since this being static it should not get serialize …
0
votes
2answers
54 views

Why does double brace initialization asks for SerialVersionUID?

public static List<Long> abc = new ArrayList<Long>(){{ //Asks for SerialVersionUID abc.add(5L); abc.add(7L); }}; public static List<Long> abc = new …
0
votes
1answer
14 views

Including Join Model Attributes in Serialization

Imagine a service where a User :has_many Events :through an Interest join model, and that there is an Interest#attending flag to indicate whether the user plans on being at the event. If I want to …
2
votes
1answer
50 views

XML serialization and LINQ

I've currently got an XML element in my database that maps to an object (Long story short the XML is complicated and dynamic enough to defy a conventional relational data structure without massive …
0
votes
2answers
97 views

Why is this class not Serializable?

I was using the Mersenne-Twister implementation at http://www.math.sci.hiroshima-u.ac.jp/~m-mat/MT/VERSIONS/JAVA/MTRandom.java as a drop-in replacement for the default java.util.Random class. However, …
0
votes
1answer
22 views

Binary stream ‘NN’ does not contain a valid BinaryHeader. Possible causes are invalid stream or object version change between serialization and deserialization

I am passing user defined classes over sockets. The SendObject code is below. It works on my local machine, but when I publish to the WebServer which is then communicating with the App Server on my …
1
vote
2answers
49 views

.Net Binary Serialization inheritance

In a C# Context, I have a Class B which is marked as Serializable and who's inheriting form a Class A who's not marked as this. Can i find a way to serialize instance of B without marking A as …
5
votes
9answers
195 views

What’s the fastest way to deserialize a tree in C++

I'm working with a not so small tree structure (it's a Burkhard-Keller-Tree, > 100 MB in memory) implemented in C++. The pointers to the children of each node are stored in a QHash. Each node x has …

1 2 3 4 5 73 next
15 30 50 per page