Questions tagged [xml-deserialization]

XML Deserialization is the process of re-creating an in-memory object from its serialized state which used XML as a data format.

1004 questions
-1
votes
1 answer

xml to complex object

I have an xml how can i structure the class so that when i serialize it, it looks like this.
DotNetBeginner
  • 412
  • 2
  • 15
  • 34
-1
votes
1 answer

xml serialisation best practices

I have been using the traditional way of serializing content with the following code private void SaveToXml(IdentifiableEntity IE) { try { XmlSerializer serializer = new XmlSerializer(IE.GetType()); TextWriter textWriter =…
-1
votes
2 answers

Create a XML Serialization and Deserialization for generic list in C# windows form application?

I tried code like this..... //Serialization private void Serialize_Click(object sender, EventArgs e) { List pdetails = new List(); Personal personals = new Personal { ID…
kasim
  • 346
  • 2
  • 5
  • 23
-1
votes
1 answer

Getting classnotfound exception error while deserializing the object

I am getting below error while deSerializing and object. 13:47:00,679 INFO [stdout] (org.springframework.scheduling.quartz.SchedulerFactoryBean#0_Worker-1) 2012-10-26 13:47:00,679 () DEBUG com.dipp.testMap - Error while reading the object to…
-1
votes
1 answer

How to access to the object array

I have an auto generated class from an xml like the following: public partial class XmlClass { private decimal num1; private ClassA[] classField; /// public decimal num1 { get; set; } } ///…
-2
votes
1 answer

Getting InvalidOperationException when Deserializing in C#

I'm using an XML based .config file for storing some records. my XML is below:
-2
votes
1 answer

How to Deserializes this XML document to generated C# class

I have tried to read XML document and i have found a method of generating XSD file into a C# class. XML Document :
Oudam San
  • 77
  • 1
  • 10
-2
votes
1 answer

Deserialize XML documents with multiple specialization / inheritance in C#

I have a XML document that several cases of specialization of entries, I managed to get a solution from here to deserialize it . I have done the exact same of the example and works as a charm, however It only works if a single specialized class…
-2
votes
2 answers

Wcf service (ajax enabled) passed XML child object is always null

I have a WCF (ajax enabled) web service, and have the following method, that accepts a object called TypeRequest. [OperationContract] [WebInvoke(Method = "POST", UriTemplate = "/XML/GetTypes", BodyStyle = WebMessageBodyStyle.Bare, ResponseFormat =…
neildt
  • 5,101
  • 10
  • 56
  • 107
-2
votes
1 answer

XML to Array without XDocument

I need to parse an XML document, but I can't use XDocument. Without going into technical details of why I can't use it, how can I accomplish this? I can, however, use XmlDocument and other methods. var restaurants = from r in…
-2
votes
1 answer

Xml Serialization and deserialization fails

I know that this question has already been asked, but I have strange problem and I can't figure out what to do: public static class XmlHelper { public static T Deserialize(string xml) { using (var sr = new StringReader(xml)) …
karaxuna
  • 26,752
  • 13
  • 82
  • 117
-2
votes
2 answers

XmlSerializer deserializing CR-LF as just LF

Possible Duplicate: XML Carriage return encoding I have a class with some simple string and int values on it that I am using the XmlSerializer to serialize to a file like so. (this is literally the code I am using) XmlSerializer xmlser = new…
anon
-3
votes
2 answers

Xml Deserialization from xml file

Possible Duplicate: How to Deserialize XML document i have got a xml file and i want make class or classes from xml file.How can i make? Sample Xml…
Özkan Selek
  • 21
  • 1
  • 4
-4
votes
2 answers

using XML deserialization in c#

how to deserialize the below xml : Need to read AdapterName,ConnectorIndex and ViewType
1 2 3
66
67