Top "Xmlserializer" questions

Serializes and deserializes objects into and from XML documents.

Reading from memory stream to string

I am trying to write an object to an Xml string and take that string and save it to a …

c# xml-serialization xmlserializer memorystream
Use the XmlInclude or SoapInclude attribute to specify types that are not known statically

I've got a very strange problem when working with .NET's XmlSerializer. Take the following example classes: public class Order { public …

c# .net xml xmlserializer
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 …

c# xml-serialization datacontractserializer xmlserializer
How to XML-serialize a dictionary

I have been able to serialize an IEnumerable this way: [XmlArray("TRANSACTIONS")] [XmlArrayItem("TRANSACTION", typeof(Record))] public IEnumerable<BudgetRecord&…

c# .net xml-serialization xmlserializer
XmlSerializer List Item Element Name

I have a class PersonList [XmlRoot("Persons")] PersonList : List<Human> when I serialize this to XML, by default …

c# xmlserializer
C# Deserialize XML to object

Having problems deserializing some xml into an object in C#. The error that I receive is... xmlns=''> was …

c# xml xml-serialization xmlserializer deserialization
axis2 maven example

I try to use axis2 (1.5.1) version to generate java codes from wsdl files, but I can't figure out what is …

maven-2 wsdl axis2 xmlserializer wsdl2code
XML, what is this: null or empty element?

Regarding to my other question: XML deserialize null elements? I've got elements like these from a third-party server for API …

xml xsd null dtd xmlserializer
Deserialize XML To Object using Dynamic

Is it possible Deserialize unknown XML to object like below? var xml = @"<Students><Student><Name&…

c# xml dynamic deserialization xmlserializer
WCF Error "Maximum number of items that can be serialized or deserialized in an object graph is '65536'"

I am receiving the following error on a WCF call: Maximum number of items that can be serialized or deserialized …

.net wcf datacontractserializer xmlserializer servicebehavior