Using .Net what limitations (if any) are there in using the XmlSerializer? For example, can you serialize Images to XML?
|
4
|
|||
|
|
|
The XmlSerializer has a few drawbacks.
I (stupidly) wrote my own serializer to get around some of these problems. Don't do that; it is a lot of work and you will find subtle bugs in it months down the road. The only thing I gained in writing my own serializer and formatter was a greater appreciation of the minutia involved in object graph serialization. I found the NetDataContractSerializer when WCF came out. It does all the stuff from above that XmlSerializer doesn't do. It drives the serialization in a similar fashion to the XmlSerializer. One decorates various properties or fields with attributes to inform the serializer what to serialize. I replaced the custom serializer I had written with the NetDataContractSerializer and was very happy with the results. I would highly recommend it. |
||
|
|
|
I generally find the XmlSerializer to be a poor choice for any POCO that's more than just a DTO. If you require specific XML, you can go the Xml*Attribute and/or IXmlSerializable route - but you're left with an object pretty mangled. For some purposes, it still an obvious choice - even with it's limitations. But, for simply storing and reloading data, I've found BinaryFormatter to be a much easier choice with less pitfalls. Here's a list of some annoyances with XmlSerializer - most I've been bitten by at one point or another, others I found over at MSDN:
|
||
|
|
|
|
Another problem is that calling the constructor of XmlSerializer will compile code at runtime and will generate a temp DLL (in the %temp% folder) with the code to do the de/serialization. You can watch the code if you add the following lines to app.config:
This takes a lot of time the first time you serialize a class and needs code with permissions for compiling and writing to disk. A way to get around that is to precompile these DLL using the sGen.exe tool that comes with VS 2005+. |
||
|
|
|
|
Any class you write can theoretically be fed through XmlSerializer. Howerver, it only has access to the public fields, and the classes need to be marked with the correct attributes (e.g. XmlAttribute). Even in the basic framework, not everything supports XmlSerializer. System.Collections.Generic.Dictionary<> for instance. |
||
|
|
|
|
The one limitation that I can think of is that XmlSerialization is opt-out; meaning any properties of a class that you don't want serialized MUST be decorated with [XmlIgnore]. Contrast that to DataContractSerializer where all properties are opt-in, you must explicitly declare inclusion attributes. Here's a good write-up. Images or their binary arrays are serialized as base64 encoded text by XmlSerializer. |
|||
|
|
|
|
For example, you can't serialize classes implementing IDictionary interface. |
||
|
|
|
|
For collections they need to have an Add method taking a single argument. If you just need a text format and not specifically xml you might try JSON. I've developed one for .NET, JsonExSerializer, and there are others available as well at http://www.json.org. |
||
|
|
|
|
Not sure if there's any limitation.. But there was a memory leak bug in XmlSerialization in .NET 1.1, you sort of had to create a cache serializer object to get around with this issue... In fact, Im not sure if this issue has been fixed in .net 2.0 or newer... |
||
|
|
