5
votes
2answers
199 views
Should this bug be fixed?
I found a bug in the .Net framework yesterday and found that it is a known bug that won't be fixed. In short the bug is that a class that contains a field of the type IComparable c …
1
vote
1answer
38 views
Appending to a serialized collection
I'm having a serialized array of some type.
Is there a way to append new objects to this serialized array (in a serialized form) without the need to read the already saved collecti …
2
votes
9answers
150 views
Why we should perfer to store the serialized data not the raw code to DB?
Hi:
If we have some code(a data structure) which should be stored in DB, someone always suggests us to store the serialized data not the raw code string.
So I'm not so sure why w …
0
votes
1answer
20 views
Listview Serialization !
appreciate if anyone knows how to serialize a listview using vb.net
0
votes
1answer
34 views
Boost Serializing of Object containing Map (with object values) and Multimap (with std::string values): what is needed?
See below a main() and two very simple classes. Then per Boost serialization (and what is shown) my questions are:
1) Does class B need the normal overloaded stream insertion op …
0
votes
1answer
78 views
How to do Ruby object serialization using JSON
I have a structure of simple container classes like so (in pseudo ruby):
class A
attr_reader :string_field1, :string_field2
...
end
class B
attr_reader: int_field3, :string …
0
votes
1answer
19 views
NHibernate and WCF Serialization(Unidirectional)
Object graph for type '[type]' contains cycles and cannot be serialized if reference tracking is disabled.
I have a simple class hierarchy setup using NHibernate as my persistence …
1
vote
2answers
30 views
Can silverlight serialize annonymous objects?
Can silverlight 3 serialize annonymous objects?
0
votes
1answer
35 views
LinqToXml vs LinqToSql…
Trying to "thaw" serialized objects that have been stored in an XML file:
In LinqToSQL, I can (with a suitably decorated class) do this type of thing:
[Table(Name="Plants")]
…
3
votes
3answers
53 views
Class Design: Serialize Within Domain Object or Helper Class
Lets say I have some domain objects that will need to be serialized/packed using a custom binary format so they can be sent over sockets to external processes. My first instinct w …
1
vote
3answers
38 views
Random-access data object in J2ME
Hello,
I'm planning to develop a small J2ME utility for viewing local public transport schedules using a mobile phone. The data part for those is mostly a big bunch of numbers rep …
0
votes
3answers
62 views
Java Hashtable and serialization
Hi ..
I have a problem in Java hashtable serialization that seems illogical to me but i am not able to find out the error in the logic i am using. Here is what i am doing,
Hashta …
0
votes
3answers
30 views
How do I add an XML attribute using DataContract
Hi
I have a simple class I'm serializing.
[DataContract(Name = "Test", Namespace = "")]
public class Test
{
[DataMember(Order = 0, Name = "Text")]
public string Text { …
0
votes
4answers
42 views
setAttribute: Non-serializable attribute (Java Object Serialization)
We just switched to Glassfish V2. We are now getting errors when setting a session attribute.
Error is:
java.lang.IllegalArgumentException: PWC2788: setAttribute: Non-serializab …
1
vote
1answer
23 views
.net Binary Serialization - Opt In
I am doing Binary Serilization of big nested data structure.
Whenever [Serilizable] attribute is added to class, all the members are automatically serialized.
I want to specifical …
