2
votes
2answers
32 views
Best way to serialize a range of hours to meaningful data
A part of my web app involves creating 'appointments' (shifts) using a drag-and-drop selector for each day. Currently, this data is serialized to something like this:
…
0
votes
6answers
33 views
XmlSerializer Deserializing Array/List of Multiple Objects at Root
I'm trying to deserialize the following XML output:
<?xml version="1.0" encoding="ISO-8859-1"?>
<Foo>
<Val>Data1</Val>
</Foo>
<Foo>
…
1
vote
5answers
58 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?
2
votes
8answers
124 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 …
2
votes
3answers
51 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 …
3
votes
2answers
68 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
165 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 …
5
votes
9answers
197 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
vote
2answers
60 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
4answers
94 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; …
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, …
1
vote
1answer
15 views
XmlSerialization and List
I have the following class
public class Notifications : List<Notification> { }
Unfortunately, when it's serialized it looks like
<ArrayOfNotification>
<Notification>
...
…
2
votes
2answers
67 views
Service - client interface, architecture advice
Hi,
I have a Windows WCF serivce and Web client. My service has one method
[OperationContract]
SubmitOrder(OrderInfo info)....
// class used to pass all relevant data
[DataContract]
class OrderInfo
…
0
votes
3answers
40 views
What is the advantage of using DataContractAttribute over SerializableAttribute?
I have found that my WCF services work normally when the data types involved doesn't have the [DataContract], but the [Serializable] instead.
But all the WCF tutorials shows the first one instead of …
