Top "Xml-serialization" questions

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

How do I serialize all properties of an NHibernate-mapped object?

I have some web methods that return my objects back as serialized XML. It is only serializing the NHibernate-mapped properties …

c# web-services nhibernate xml-serialization proxy-classes
Serialization third-party classes with Simple XML (org.simpleframework.xml)

I have decided to use Simple XML serialization and was stucked with basic problem. I am trying to serialize java.…

java xml-serialization simple-framework
How to serialize dynamic object to xml c#

I have a object {System.Collections.Generic.List<object>} that contains 1000 object {DynamicData} inside of it, each one …

c# xml xml-serialization xmlserializer dynamicobject
Modify the xml array element name in serialized ASP.NET WebAPI object

I have been struggling with outputting a custom root xml element when returning a list of objects in my WebAPI …

c# asp.net xml-serialization asp.net-web-api netdatacontractserializer
Serialize/deserialize objects - order of fields matters?

Is it possible that DataContractSerializer wrongly deserializes an object if the fields are not in the "correct" (whatever that means) …

c# .net serialization xml-serialization datacontractserializer
Overriding XML deserialization to use base deserialization and adding functionality

I have a class which should be serialized and deserialzed. But every time after deserilization I need to call a …

c# xml serialization xml-serialization xmlserializer
Should I make this XmlSerializer static?

I've got a class which uses an XmlSerializer in its Read/WriteXml methods. The Serializer is currently private readonly. public …

c# static xml-serialization instance
Cloning objects without Serialization

I've found numerous solutions here at SO and elsewere that deal with deep clone of object via serialization/deserialization (into …

c# xml-serialization clone datacontractserializer
Linq to Xml VS XmlSerializer VS DataContractSerializer

In my web method, I get an object of some third party C# entity class. The entity class is nothing …

serialization .net-4.0 xml-serialization linq-to-xml datacontractserializer
Generic XML Deserialization into Undefined Objects

I have a very long, very varied XML file that I am attempting to store portions of into a database. …

c# .net xml-parsing xml-serialization xml-deserialization