19
votes
9answers
3k views
XML Serialization and Inherited Types
Hi Guys, following on from my previous question I have been working on getting my object model to serialize to XML. But I have now run into a problem (quelle surprise!).
The problem I have is that I …
15
votes
6answers
850 views
GUI tool to browse Java serialized objects
Is there a GUI application that can open serialized Java object files (both binary and XML format) and display them in browsable fashion (maybe like the Eclipse debugger displays the state of …
15
votes
7answers
975 views
What is the correct way to make a custom .NET Exception serializable?
More specifically, when the exception contains custom objects which may or may not themselves be serializable.
Take this example:
public class MyException : Exception
{
private readonly string …
14
votes
12answers
844 views
Simple way to do Xml in Java
Is there is Simple way to read and write Xml in Java?
I've used a SAX parser before but I remember it being unintuitive, I've looked at a couple of tutorials for JAXB and it just looks complicated.
…
13
votes
12answers
2k views
What is the most flexible serialization for .NET objects, yet simple to implement?
I would like to serialize and deserialize objects without having to worry about the entire class graph.
Flexibility is key. I would like to be able to serialize any object passed to me without …
12
votes
8answers
7k views
XmlSerializer - There was an error reflecting type
Using csharp Dotnet 2.0, I have a composite data class that does have the [Serializable] attribute on it. I am creating an XMLSerializer class and passing that into the constructor:
XmlSerializer …
11
votes
8answers
850 views
Is java object serialization compatible between 1.5 and 1.6
I am wondering whether it is safe to mix jdk 1.5 and 1.6 (Java 6) object serialization (biderctional communication). I searched for an explicit statement from sun concerning this question but did not …
11
votes
9answers
1k views
Use the serialVersionUID or suppress warnings?
Dear all,
first thing to note is the serialVersionUID of a class implementing Interface Serializable
is not in question. What if we create a class that for example extends HttpServlet? It also should …
10
votes
7answers
916 views
How to store a hash table in a file?
How can I store a hash table with separate chaining in a file on disk?
Generating the data stored in the hash table at runtime is expensive, it would be faster to just load the HT from disk...if only …
9
votes
4answers
457 views
Is it possible to programmatically construct a Python stack frame and start execution at an arbitrary point in the code?
Is it possible to programmatically construct a stack (one or more stack frames) in CPython and start execution at an arbitrary code point? Imagine the following scenario:
You have a workflow engine …
9
votes
6answers
1k views
Serializing anonymous delegates in C#
I am trying to determine what issues could be caused by using the following serialization surrogate to enable serialization of anonymous functions/delegate/lambdas.
// see …
9
votes
15answers
1k views
Homemade vs. Java Serialization
I have a certain POJO which needs to be persisted on a database, current design specifies its field as a single string column, and adding additional fields to the table is not an option.
Meaning, the …
9
votes
16answers
520 views
What are good alternative data formats to XML?
XML, granted, is very useful, but can be quite verbose. What alternatives are there and are they specialised for any particular purpose? Library support to interrogate the contents easily is a big …
8
votes
5answers
114 views
Possible Solutions to Poor Serialization Performance
I recently did some performance testing and analysis of an ASP.NET application using out-of-process session state - this is necessary when using session state on a web farm so that state can be …
8
votes
4answers
122 views
How do I deserialize old data for a type that has changed?
I have data that has been stored using binary serialization for the following class:
[Serializable]
public abstract class BaseBusinessObject
{
private NameValueCollection _fieldErrors = new …
