1
vote
5answers
77 views
Does Java Serialization work for cyclic references?
For example: Object A contains Object B that contains Object C that contains Object A.
Will Object A serialize properly?
Comment #9 here indicates that it does not work .
In co …
0
votes
2answers
26 views
Serializable exception and WCF
if i made my exception Serializable like this article from msdn , so can my exception serialized over WCF ?
1
vote
1answer
139 views
How to generate web service proxy code with wsdl.exe that is serializable
I am using wsdl.exe to auto generate the web service proxy code from a huge wsdl file. I then take the .cs file it generates compile it to a dll and use it in my program to make we …
0
votes
4answers
195 views
android: problem with Serializable object put into intent
Hi i have problem with a class i want to pass in an intent by putting it into the putExtras()
Its serializable and the code looks like this:
public abstract class ObjectA extends …
0
votes
2answers
126 views
Python serializable objects json
class gpagelet:
"""
Holds 1) the pagelet xpath, which is a string
2) the list of pagelet shingles, list
"""
def __init__(self, parent):
if not …
4
votes
2answers
110 views
Does adding [Serializable] to the class have any performance implications?
I need to add the [Serializable] attribute to a class that is extremely performance sensitive.
Will this attribute have any performance implications on the operation of the clas …
4
votes
8answers
212 views
What is a serializable object ?
What is a serializable object in C#?
I guess the word serializable is throwing me off more than "serializable object".
0
votes
4answers
90 views
re: design of custom exceptions: must I implement the default constructor? the “inner exception” constructor?
The answer to What is the correct way to make exceptions serializable? says that the "correct" base implementation for a custom exception includes 4 ctors:
[Serializable]
public …
2
votes
3answers
146 views
Why should I always make my Exceptions [serializable]? (.NET)
Referring to What is the correct way to make a custom .NET Exception serializable?
and Are all .NET Exceptions serializable? ...
Why should my exceptions be serializable?
Someon …
0
votes
3answers
199 views
Will adding a method change the java-calculated serialVersionUid on my class?
Hi All,
If I have a class like this:
public class Name implements Serializable {
private final String firstName;
private final String lastName;
public Name(String fir …
4
votes
6answers
484 views
Who actually implements serializable methods?
I've been learning how to use Serializable.
I know if I create a class 'A' with different variables who implements Serializable and I add Serializable to my class, it's also Seria …
4
votes
4answers
172 views
How can I add a type constraint to include anything serializable in a generic method?
My generic method needs to serialize the object passed to it, however just insisting that it implements ISerializable doesn't seem to work. For example, I have a struct returned fr …
2
votes
4answers
870 views
What is the point of the ISerializable interface?
It seems like I can serialize classes that don't have that interface, so I am unclear on its purpose.
4
votes
4answers
554 views
Serializing private member data
I'm trying to serialize an object to XML that has a number of properties, some of which are readonly.
public Guid Id { get; private set; }
I have marked the class [Serializable] …
1
vote
1answer
112 views
Exception, Return, Serializable,
How does (throw Exception) and (return value) is implemented in a Language such as Java or C#? I want to know the mechanism how its support is included in a Language and not just t …
