Serializes and deserializes objects into and from XML documents. The XmlSerializer enables you to control how objects are encoded into XML.
0
votes
1answer
21 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
41 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
24 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
43 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
41 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
81 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
31 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
29 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
29 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
43 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
36 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
13 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
48 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
84 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
22 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
30 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
63 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
59 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
79 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
307 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
42 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
94 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
37 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
270 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
37 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
75 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
102 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
47 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
61 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
56 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
132 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
52 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
59 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
65 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
85 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
176 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
124 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
59 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
96 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
43 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. ...
2
votes
2answers
122 views
Serialize a polymorphic List with the same type name
I have an object I'm trying to serialize into XML. Inside this object is a list of a generic type (abstract class). Each item in this list could be a different class, but all are inheriting from the ...
1
vote
1answer
52 views
C# magic double value parse
Currently I am working with numbers with high precisions in complex calculations.
Some of results and source data should be stored in serialized form.
Everything was good till I get magic double ...
2
votes
1answer
527 views
C# XML Serialization - How to Serialize attribute in Class that inherits List<Object>?
I need to create an XML file using C#.
I am using a class that inherits List that represents a list of computers and later initialize it with values but the serializer doesn't get the attributes for ...
0
votes
1answer
83 views
Why is this attribute not serialized with its namespace?
I have these two classes
[XmlRoot(ElementName="XMI", Namespace = XmiStrings.XmiNamespace)]
public class XMIElement
{
[XmlAttribute("version", Namespace = XmiStrings.XmiNamespace)]
public ...
4
votes
2answers
173 views
Deserializing XML returns null for collection property
I'm trying to deserialize the following XML:
<?xml version="1.0" encoding="utf-8" ?>
<mf:somedata xmlns:mf="urn:somedata">
<CurrentAccount>
...
1
vote
0answers
50 views
Using browser XMLSerializer() to produce XML without XHTML entities
I'm using XMLSerializer() to output an in-memory XML document, however it seems to 'entitizing' elements using XHTML standard entities like   ; . I want to produce an XML document without ...
1
vote
2answers
74 views
C# Xml Deserialize plus design suggestions
In my project I need to build a generic deserializer that should be backward compatible.
Example: The XML looks like
<PolicyDef name = "sample" type="type1">
<Options ......>
...
1
vote
0answers
59 views
The type [MyClass] may not be used in this context
I have a WebMethod that returns an object with dozens of classes in using stock serialization and some custom serialization by implementing IXmlSerializable. It works fine. I have added a property ...
0
votes
1answer
108 views
wcf service calling an ASMX web service which returns IPropertyChangedEventHandler
Ok this is kind of a complicated situation so let me start by laying out what I'm trying to do.
I have a WCF web service that is using DataContractFormat to serialize requests as JSON. One of the ...
0
votes
1answer
204 views
Data Serialization on Custom DataSourceControl
I am writing a custom DataSourceControl that will basically have the Select capability working just as a normal ObjectDataSource, with a TypeName and SelectMethod properties.
The Data coming from ...



