Tagged Questions

This tag refers to serialization technologies which use XML as a data format.

learn more… | top users | synonyms (1)

72
votes
19answers
32k views

.NET XML serialization gotchas?

I've run into a few gotchas when doing C# XML serialization that I thought I'd share: You can't serialize items that are read-only (like KeyValuePairs) You can't serialize a generic dictionary. ...
53
votes
3answers
17k views

Proper way to implement IXmlSerializable?

Once a programmer decides to implement IXmlSerializable, what are the rules and best practices for implementing it? I've heard that GetSchema() should return null and ReadXml should move to the next ...
42
votes
8answers
15k views

XML Serialization and Inherited Types

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 have a ...
30
votes
6answers
14k views

Why isn't there an XML-serializable dictionary in .NET?

I need an XML-serializable dictionary. Actually, I now have two quite different programs that need one. I was rather surprised to see that .NET doesn't have one. I asked the question elsewhere and ...
30
votes
2answers
9k views

XmlSerializer: remove unnecessary xsi and xsd namespaces

Is there a way to configure the XmlSerializer so that it doesn't write default namespaces in the root element? What I get is this: <?xml ...> <rootelement xmlns:xsi="..." ...
29
votes
6answers
17k views

Generating an Xml Serialization assembly as part of my build

This code produces a FileNotFoundException, but ultimately runs without issue: void ReadXml() { XmlSerializer serializer = new XmlSerializer(typeof(MyClass)); //... } Here is the exception: ...
28
votes
3answers
22k views

Why XML-Serializable class need a parameterless constructor

I'm writing code to do Xml serialization. With below function. public static string SerializeToXml(object obj) { XmlSerializer serializer = new XmlSerializer(obj.GetType()); using ...
26
votes
5answers
10k views

What is MyAssembly.XmlSerializers.dll generated for?

I am working on a project which generates an assembly. I just noticed that an additional assembly *.XmlSerializers.dll is being generated. Why this file is auto generated and what it is used for?
21
votes
5answers
12k views

Is it possible to deserialize XML into List<T>?

Given the following XML: <?xml version="1.0"?> <user_list> <user> <id>1</id> <name>Joe</name> </user> <user> ...
20
votes
10answers
8k views

XmlSerializer giving FileNotFoundException at constructor

An application I've been working with is failing when i try to serialize types. A statement like this: XmlSerializer lizer = new XmlSerializer(typeof(MyType)); Produces: ...
20
votes
2answers
6k views

How to serialize an object to XML without getting xmlns=“…”?

Is there a way for me to serialize an object in .NET without the XML Namespaces automatically serializing also? It seems that by default .NET believes the XSI and XSD namespaces should be included, ...
18
votes
4answers
7k views

Deciding on when to use XmlDocument vs XmlReader

I'm optimizing a custom object -> XML serialization utility, and it's all done and working and that's not the issue. It worked by loading a file into an XmlDocument object, then recursively going ...
15
votes
5answers
22k views

Ruby on Rails Advanced JSON Serialization

I'm looking to render an index of all articles along with a full article via json in my rails app, but I'm having a little trouble figuring out how to do it. Here is my controller now: if ...
15
votes
5answers
8k views

How do I serialize an enum value as an int?

I want to serialize my enum-value as an int, but i only get the name. Here is my (sample) class and enum: public class Request { public RequestType request; } public enum RequestType { Booking = ...
15
votes
8answers
16k views

PHP Object as XML Document

What is the best way to take a given PHP object and serialize it as XML? I am looking at simple_xml and I have used it to parse XML into objects, but it isn't clear to me how it works the other way ...
14
votes
1answer
5k views

Suppress Null Value Types from Being Emitted by XmlSerializer

Please consider the following Amount value type property which is marked as a nullable XmlElement: [XmlElement(IsNullable=true)] public double? Amount { get ; set ; } When a nullable value type ...
14
votes
5answers
3k views

What are the differences between the XmlSerializer and BinaryFormatter

I spent a good portion of time last week working on serialization. During that time I found many examples utilizing either the BinaryFormatter or XmlSerializer. Unfortunately, what I did not find were ...
14
votes
4answers
6k views

What's the best serialization method for objects in memcached?

My Python application currently uses the python-memcached API to set and get objects in memcached. This API uses Python's native pickle module to serialize and de-serialize Python objects. This API ...
14
votes
4answers
4k views

Slow SoapHttpClientProtocol constructor

I'm doing some experiments with Microsoft Dynamics CRM. You interact with it through web services and I have added a Web Reference to my project. The web service interface is very rich, and the ...
13
votes
2answers
4k views

Serializing object with no namespaces using DataContractSerializer

How do I remove XML namespaces from an object's XML representation serialized using DataContractSerializer? That object needs to be serialized to a very simple output XML. Latest & greatest - ...
12
votes
9answers
4k views

Which is the best alternative for Java Serialization?

I'm currently working on a project which needs to persist any kind of objects (of which implementation we don't have any control) so these objects could be recovered afterwards. We can't implement a ...
11
votes
2answers
6k views

How do you serialize a string as CDATA using XmlSerializer?

Is it possible via an attribute of some sort to serialize a string as CDATA using the .Net XmlSerializer?
11
votes
3answers
4k views

What is an object graph and how do I serialize one

I've been reading lately about serialization. I've read that when I use XmlSerialization I cannot serialize object graphs. What is an object graph and why I cannot serialize it simply? Kind Regards ...
11
votes
1answer
7k views

De/Serialize directly To/From XML Linq

Is there any way to de/serialize an object without round-tripping a XmlDocument/temp string? I am looking for something like the following: class Program { static void Main(string[] args) { ...
11
votes
3answers
30k views

JAXB: How to ignore namespace during unmarshalling XML document?

My schema specifies a namespace, but the documents don't. What's the simplest way to ignore namespace during JAXB unmarshalling (XML -> object)? In other words, I have ...
11
votes
12answers
11k views

Passing PHP associative arrays to and from XML

Is there an easy way to marshal a PHP associative array to and from XML? For example, I have the following array: $items = array("1", "2", array( "item3.1" => "3.1", "item3.2" ...
10
votes
1answer
3k views

using XmlArrayItem attribute without XmlArray on Serializable C# class

I want XML in the following format: <configuration><!-- Only one configuration node --> <logging>...</logging><!-- Only one logging node --> ...
10
votes
5answers
2k views

Replacement for XML Serialization

I have code using XmlSerializer to serialize/deserialize a data structure for persistance. I've read and heard in several places here on StackOverflow that XmlSerializer is one or more of: Bad ...
10
votes
3answers
2k views

XmlSerialize a custom collection with an Attribute

I've got a simple class that inherits from Collection and adds a couple of properties. I need to serialize this class to XML, but the XMLSerializer ignores my additional properties. I assume this is ...
10
votes
10answers
24k views

How do I map XML to C# objects

I have an XML that I want to load to objects, manipulate those objects (set values, read values) and then save those XMLs back. It is important for me to have the XML in the structure (xsd) that I ...
9
votes
2answers
223 views

Serialization of unprintable character

The following code; var c = (char) 1; var serializer = new XmlSerializer(typeof (string)); var writer = new StringWriter(); serializer.Serialize(writer, c.ToString()); var serialized = ...
9
votes
1answer
3k views

XML Serialization and namespace prefixes

I'm looking for a way with C# which I can serialize a class into XML and add a namespace, but define the prefix which that namespace will use. Ultimately I'm trying to generate the following XML: ...
9
votes
3answers
9k views

Using StringWriter for XML Serialization

I'm currently searching for an easy way to serialize objects (in C# 3). I googled some examples and came up with something like: MemoryStream memoryStream = new MemoryStream ( ); XmlSerializer xs = ...
9
votes
6answers
6k views

How to make a value type nullable with .NET XmlSerializer?

Let's suppose I have this object: [Serializable] public class MyClass { public int Age { get; set; } public int MyClassB { get; set; } } [Serializable] public class MyClassB { public int ...
8
votes
2answers
57 views

XmlSerialize an Enum Flag field

I have this : [Flags] public enum InfoAbonne{civilite,name,firstname,email,adress,country } public class Formulaire { private InfoAbonne _infoAbonne{ get; set;} public ...
8
votes
3answers
520 views

Serialization of generic properties

Can someone explain to me why this first example will serialize into XML, and the second will throw runtime errors about trying to convert all of the types to each other? If I remove the XmlElement ...
8
votes
1answer
329 views

XML Serialization: object not serialized

I'm getting an "Unspecified error" when I try to call a particular web-service method. Using XMLSpy I discover that the parameter object just hasn't been serialized. In the generated serializer ...
8
votes
1answer
427 views

Serialize an object to string

I have the following method to save an Object to a file: // Save an object out to the disk public static void SerializeObject<T>(this T toSerialize, String filename) { XmlSerializer ...
8
votes
1answer
897 views

Why doesn't boost::serialization check for tag names in XML archives?

I'm starting to use boost::serialization on XML archives. I can produce and read data, but when I hand-modify the XML and interchange two tags, it "fails to fail" (i.e. it proceeds happily). Here's a ...
8
votes
4answers
3k views

Serializing a Nullable<DateTime> in to XML

I am trying to serialize a class several of the data-members are Nullable objects, here is a example [XmlAttribute("AccountExpirationDate")] public Nullable<DateTime> AccountExpirationDate { ...
8
votes
13answers
1k views

Is there any point Unit testing serialization?

I have a class that serializes a set of objects (using XML serialization) that I want to unit test. My problem is it feels like I will be testing the .NET implementation of XML serialization, instead ...
8
votes
3answers
8k views

Serialize Python dictionary to XML

There is simple JSON serialization module with name "simplejson" which easily serializes Python objects to JSON. I'm looking for similar module which can serialize to XML. Thank you
8
votes
2answers
657 views

Use XML serialization to serialize a collection without the parent node

Let's say I have a class; public class Car { public List<Passenger> Passengers {get; set;} } I want to serialize this to XML such that Passengers are child nodes of Car and there is no ...
8
votes
3answers
8k views

Omitting all xsi and xsd namespaces when serializing an object in .NET?

The code looks like this: StringBuilder builder = new StringBuilder(); XmlWriterSettings settings = new XmlWriterSettings(); settings.OmitXmlDeclaration = true; using (XmlWriter xmlWriter = ...
7
votes
1answer
64 views

Xml Serialize List of Descendants

I am trying to serialize a list of descendants. This is what I have now, that works fine: class Animal {} class Zebra:Animal{} class Hippo:Animal{} [XmlRootAttribute("Zoo")] class Zoo { ...
7
votes
2answers
141 views

How to cause XmlSerializer to generate attributes instead of elements by default

Is there a way to cause XmlSerializer to serialize primitive class members (e.g. string properties) as XML attributes, not as XML elements, without having to write [XmlAttribute] in front of each ...
7
votes
1answer
223 views

XML serialization of objects with envelope in C#

I need to serialize objects to XML in C#. The objects should be wrapped in an envelope. For that, I've created the following Envelope class: [XmlInclude(typeof(Person))] public class Envelope { ...
7
votes
3answers
865 views

Serialize string property as attribute, even if string is empty

public class Hat { [XmlTextAttribute] public string Name { get; set; } [XmlAttribute("Color")] public string Color { get; set; } } var hat1 = new Hat {Name="Cool Hat", Color="Red"}; ...
7
votes
3answers
987 views

Intermittent errors while de-serializing object from XML

I have a program that takes objects stored as XML in a database (basicly a message queue) and de-serializes them. Intermittently, I will get one of the following errors: ...
7
votes
2answers
366 views

How to add a line break when using XmlSerializer

I am wondering how to add a line break for each element when using XmlSerializer? Sample code: XmlSerializer serializer = new XmlSerializer(typeof(xxx)); using (XmlWriter xmlWriter = ...

1 2 3 4 5 41