Serializes and deserializes objects into and from XML documents. The XmlSerializer enables you to control how objects are encoded into XML.
2
votes
2answers
24 views
XmlSerializer is not serializing to a valid xml
Please Consider the following code:
public class Obj : IObj
{
public string Prop1{get;set;}
public string Prop2{get;set;}
public string Prop3{get;set;}
}
public static void Persist(IObj ...
0
votes
3answers
37 views
How to catch InvalidOperationException thrown by Deserialize method
I use following code to read data from XML
var temp = default(T);
var serializer = new XmlSerializer(typeof(T));
try
{
TextReader textReader = new StreamReader(fileName);
temp = ...
0
votes
1answer
28 views
C# how to deserialize an xml tag embedded in text?
I am trying to deserialize the output of .NET's XML doc comment using an XmlSerializer. For reference, the output of xml documentation looks like:
<?xml version="1.0"?>
<doc>
...
2
votes
1answer
28 views
Serializing a type created in a ScriptEngine session
Consider the following console application:
using System;
using System.IO;
using System.Text;
using System.Xml.Serialization;
using System.Reflection.Emit;
using System.Reflection;
using ...
1
vote
1answer
25 views
xml deserialization - I am getting 0 item with some node that has attribute
I have an stripped down XML sample here
<?xml version="1.0" encoding="utf-8"?>
<node1>
<items>
<item>
<displayname>planet_one</displayname>
...
1
vote
0answers
29 views
multiple controller parameters using xmlSerializer
Is there a way to pass multiple parameters to a web api controller using HttpClient.PostAsync and the XmlMediaTypeFormatter with UseXmlSerializer set to true?
I have the following controller which I ...
0
votes
0answers
10 views
How to remove XMLSerializer logging message?
Hi I using Google App Engine and always having below logging info:
06/06/2013 11:13:46 AM net.sf.json.xml.XMLSerializer getType
INFO: Using default type string
I already tried set it to off in ...
1
vote
1answer
26 views
Flatten xml for deserializing
I'm deserializing an xml and for that I use these classes
[DataContract(Name = "Validation")]
public class FieldValidationModel
{
[DataMember]
public string Annotation { get; set; }
...
0
votes
2answers
40 views
Serializing Enum type emits different element name
Working on XML serialization. When serializing enum type, xml element name of it to be changed. Any help would be appreciated.
I am using .Net xml serialization to serialize this object and that ...
1
vote
2answers
50 views
Serializing Exception - Cannot be serialized because it does not have a parameterless constructor [duplicate]
I'm getting an exception when initializing an XMLSerializer and passing it an instance of Appointment (from the EWS API):
Microsoft.Exchange.WebServices.Data.Appointment cannot be serialized ...
0
votes
1answer
30 views
Deserialize xml base on attribute name as properties of my class in C#
I have xml file like i describe below
<Root name="myRoot">
<Field name = "myField">"blabla</Field>
<List name="data">
<Row name="data">
...
0
votes
1answer
71 views
WPF C# Deserialize an observable collection <string> with XmlSerializer adds extra items
I wish to save and load a class (MeasConSettings) that contains a ObservableCollection<string> The problem is the list is initialized in my constructor so when I do the following:
XmlSerializer ...
0
votes
1answer
49 views
Using XmlAttributeOverrides on Nested Properties
I am trying to use XmlAttributeOverrides to control which class properties appear in the xml after the class has been serialized. It works on properties that are on the "root" class but not on nested ...
2
votes
1answer
59 views
xml serializing a list of base class
Consider the below class structure
[XmlInclude(typeof(DerivedClass))]
public class BaseClass
{
public string mem1;
public string mem2;
}
public class DerivedClass : List<BaseClass>
{
...
1
vote
1answer
59 views
How to deserialize different xml-tags into a single list
I have xml that looks something like this
<root>
<bosses>
<boss>..some elements..</boss>
<boss>..some elements..</boss>
</bosses>
...
0
votes
1answer
110 views
Cannot deserialize previously serialized XML with c# xmlserializer
I have to use an externally given xml structure (huge).
I use the xsd tool of visual studio to generate classes that should be (de)serialized using xmlserializer.
Since we switched from VS2010 to ...
2
votes
1answer
34 views
Why does not XmlSerializer recognize this attribute?
I have a simple class with two properties:
[XmlRoot("response")]
public class Response
{
[XmlAttribute("code")]
string Code { get; set; }
[XmlAttribute("message")]
string Message { ...
0
votes
0answers
37 views
SOAP Deserialization - stuck with XmlNodes[]
eI have a webservice which I have no control over. For one reason or another, I cannot use a pregenerated XML Serializers assembly (I am running under MonoTouch) so I need to handle the ...
0
votes
0answers
39 views
RestSharp XmlSerializer Elements with Attributes and No Child Elements
Using RestSharp, How do i create an object that when serialized (XmlSerializer) creates the following XML? I.e. How do i serialize to create an XmlElement that has value AND an XmlAttribute.
...
0
votes
1answer
53 views
Serializing object to XML
I have a class in C# setup that serializes itself to XML, and this class has a List of objects that it serializes as well.
[XmlRoot("Config")]
public class ConfigSerializer {
[XmlArray("Nodes")]
...
1
vote
0answers
66 views
How does the WSCF.Blue DataContract generation feature work?
I'm trying to figure out how the WSCF Blue DataContract generation feature works.
It's documented here: http://alexmg.com/post/2009/09/01/Data-contract-generation-is-now-available-in-WSCFblue.aspx
I ...
0
votes
0answers
19 views
Deserializing xml node's children
I'm sure this is a simple scenario ... I'm trying to use XmlSerializer to parse this XML into a data structure.
<TextureAtlas imagePath="Cards.png" width="1900" height="980">
<sprite ...
0
votes
0answers
58 views
Deserialize two types of responses using XMLSerializer
I have a service method that either returns a normal response with some element "NiceNode" as a root one and a set of other fields, or the error response with "Error" as a root element and one field ...
0
votes
0answers
117 views
How do I stop d4p1 being a required namespace prefix within my WCF service SOAP request XML
I've built my first ever WCF service designed to receive HTTP Post requests that have a message body in a strict format that I have no influence over. Here is an example:
<s:Envelope ...
0
votes
0answers
28 views
XmlSerializer - Deserializing mutliple root names to same class
I am calling to a third party xml service that returns a different xml schema based on if the request was successful or not.
When successful, it returns as
<PropertySearchResponse>
...
0
votes
2answers
33 views
XmlSerialization. Create common root for two classes
How can I create such structure using XmlSerializer:
<Files Upload="True">
<InputFiles>
<InputFile File="file.txt" ErrorCode="0" Version="0"/>
<InputFile ...
1
vote
4answers
71 views
How to properly define classes to serialize them to XML?
I'm building an app using Nondeterministic Finite Automaton which have to save it and read it from a file. I tried dozens of different methods with [XmlTags] and it still give me errors. Can You tell ...
0
votes
0answers
82 views
How to correctly serialize class derived from collection using DataContracts
In C# and .NET 4.5 I'm in the process of implementing XML generation/parsing by means of DataContract serialization which appears extremely effective.
I have, however, run into a number of problems in ...
1
vote
1answer
113 views
Add XML Attribute to serialized class property
I've seen an example that uses a wrapper class to do this, but i was wondering if there is a better (simpler) way.
My classes are as follows:
public class PartData
{
public List<PartInfo> ...
0
votes
1answer
473 views
How to remove xmlns:xsi and xmlns:xsd from Web API XML serializer
For some hours, I have battled with removing the default namespaces from the XML returned from serializing my independent objects (not MVC model) in ASP.NET Web Api. Sample codes for the application ...
1
vote
2answers
46 views
DotNet XmlSerializer of Lists with constructor
I have found some unexpected behavior in the XmlSerializer.
If you deserailze a list of objects where the list has a default constructor, the list is appended too.
Anyone know how to work around this ...
1
vote
0answers
136 views
XMLserializer does not store all properties of an object in WP8
Basically there is DrinkCategories holding an observableCollection of DrinkCategory. This nested ObservableCollection is used to provide data for a LongListSelector in WP8.
this.DrinkCategories = new ...
0
votes
1answer
41 views
Run sgen on a 5MB assembly with many classes with the same name
I'm trying to generate the XmlSerializers assembly for a project that outputs a 5MB dll. This project has many classes with different .Net namespaces but with the same name, so sgen is returning the ...
1
vote
3answers
590 views
I can't serialize a list of objects in C# with XmlSerializer
I have a list of many test implements the interface IDoTest, that I want to store in a file. I also want to read from this file.
It seemed natural to simple use the XmlSerializer to store the ...
1
vote
1answer
44 views
M-V-VM: What is the best way to handle model data that is generated dynamically from XmlSerialized data
I have both, actual user-generated data and data that depends on it (like the background color of UniformGrid cells that is used to indicate dupe values in the grid, which is calculated each time an ...
2
votes
0answers
85 views
Implementing IXmlSerializable Requires Collection Property to Have Setter
I have a collection property that is of a custom type which inherits from BindingList. Currently, this property gets serialized via XmlSerializer even though it has no Setter. I now am trying to ...
0
votes
2answers
103 views
Sending serialized data from android to java
I want to send class variables from android device to server.
In my server java program receives requests with socket connection
I want to use xml serializer . I couldn't find any xml serializer ...
1
vote
0answers
54 views
Adding missing attribute at XMLSerialzation
How do I get the IPDR node to look like this:
<ns2:IPDR xmlns:ns0="http://www.ipdr.org/namespaces/PWA" xsi:type="ns0:PublicWLANAccessUsageEntry">
instead of this:
<ns2:IPDR ...
3
votes
1answer
107 views
XmlSerializer sample from MSDN fails
I am trying to learn how to use XMLSerializer. I created a VS2010 project using the sample code on: http://msdn.microsoft.com/en-us/library/tz8csy73(v=vs.100).aspx.
The code is supposed to ...
-3
votes
1answer
59 views
XML: Writing to file is null? [closed]
I've debugged it so far, the list has the values.. however its not writing them out to the file.
I'm not sure why it's null.
The GameObjects class holds all the fields.
GameObjectData is just for ...
3
votes
1answer
153 views
XMLSerializer serialising date error : Is not a valid AllXsd
Im using the XMLSerializer to serialise objects which contain a datetime property.
This serialises fine with the following an example of the results produced:
<GuestUserLinkItemActivity>
...
1
vote
4answers
56 views
Is there a way to serialize a c# class to xml without put attributes on the class?
I would like to serialize a c# class but I do not want to put the attributes on the class.
I've found FluentXML on codeplex, but it seems to be just an idea project and is not working anyway
0
votes
1answer
70 views
Inheritance XmlSerializer C# [duplicate]
I have these 3 classes:
Class Image : Asset
Class Sound : Asset
Class Video : Asset
everything serializes ok but when i create this item:
Class Master
List<Asset> assets //property
an ...
1
vote
3answers
69 views
Serialization using c#
Why don't use serialization attribute With XMLSerializer in c#.
http://msdn.microsoft.com/en-us/library/71s92ee1.aspx
Here OrderedItem class is not serialized. What is the reason?
1
vote
2answers
120 views
Serialize a PropertyGrid (SerializeToXML) failed
I try to serialize a PropertyGrid and write the results to a XML file. At the end the XML file is almost empty; XML file
<?xml version="1.0" encoding="utf-8"?>
<MyBookCollection ...
0
votes
1answer
193 views
Error while deserializing xml string into object using XMLSerializer in C#
Here is my DTO
[XmlTypeAttribute(TypeName="XAttributes")]
public class XAttributes
{
[XmlArray(ElementName="Attributes")]
[XmlArrayItem(ElementName="Attribute")]
public ...
1
vote
1answer
128 views
Serializing IXmlSerializable Types Using XmlSerializer in WCF
Thoroughly frustrated with the DataContractSerializer, I'm trying to get up and running in WCF using IXmlSerializable types with XmlSerializer.
I've implemented IXmlSerializable and XmlSchemaProvider ...
0
votes
0answers
68 views
Oddness with XmlSerializer, WPF, and WindowsFormsHost
I have an video stream OCX from Panasonic living in a WindowsFormsHost in my WPF application. I need to same some configuration data for the app so I made a Serializable class called _Config and I ...
1
vote
1answer
108 views
Deserialize object binary to XML?
I am having some trouble deserializing an object to XML. I am trying to deserialize something which doesn't have an empty constructor thus I need to use the BinaryFormatter? I have:
A DLL which ...
0
votes
0answers
47 views
XmlSerializer constructor hangs forever when running in Debugger
I just updated from .Net Framework 3.51 to 4.0.
I have a problem now that the XmlSerializer constructor for one of my types hangs forever. Strangely, this happens only when running from the debugger. ...




