Tagged Questions
The xmlserializer tag has no wiki summary.
16
votes
4answers
963 views
XmlSerializer startup HUGE performance loss on 64bit systems
I am experiencing a really HUGE performance loss while calling a simple XmlSerializer.Deserizlize() on a class with lots of fields.
NOTE: I'm writing the code without Visual Studio, at home, so it ...
13
votes
3answers
3k views
Why doesn't XmlSerializer support Dictionary?
Just curious as to why Dictionary is not supported by XmlSerializer?
You can get around it easily enough by using DataContractSerializer and writing the object to a XmlTextWriter, but what are the ...
9
votes
1answer
3k views
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 define the prefix which that namespace will use.
Ultimately I'm trying to generate the following XML:
...
8
votes
4answers
1k views
OutOfMemoryError calling XmlSerializer.Deserialize() - not related to XML size!
This is a really crazy bug. The following is throwing an OutOfMemoryException, for XML snippits that are very short and simple (e.g., <ABC def='123'/>):
public static T ...
7
votes
2answers
143 views
How to cause XmlSerializer to generate attributes instead of elements by default
Is there a way to cause XmlSerializer to serialize primitive class members (e.g. string properties) as XML attributes, not as XML elements, without having to write [XmlAttribute] in front of each ...
7
votes
6answers
787 views
Serializable dictionary, how to set key name?
Question: I use a serializable dictionary class, found at
http://weblogs.asp.net/pwelter34/archive/2006/05/03/444961.aspx
, to serialize a dictionary.
Which works fine, but I run into an annoying ...
7
votes
3answers
830 views
XmlSerializer is throwing InvalidOperationException when using the generic type constraint where
When I try to run the following code (two separated assemblies)
ClassLibrary.cs
public interface ITest
{
}
Program.cs
using System;
public class TestClass
{
public void Test<T>(T x) ...
6
votes
3answers
873 views
Can VS.NET 2010/MSBUILD produce XmlSerializers for .NET 3.5 SP1?
I just upgraded a VS 2008 solution containing WinForms, general use libraries, and a web app to VS 2010, but all projects still target .NET 3.5 SP 1. I use this technique to generate XmlSerializers ...
6
votes
3answers
1k views
C# Xml Serializing List<T> descendant with Xml Attribute
Morning Guys,
I have a collection that descends from List and has a public property. The Xml serializer does not pick up my proeprty. The list items serialize fine. I have tried the XmlAttribute ...
6
votes
3answers
303 views
XmlSerializer and nullable attributes
I have a class with numerous Nullable<T> properties which I want to be serializable to XML as attributes. This is apparently a no-no as they are considered 'complex types'. So, instead I ...
6
votes
2answers
527 views
How can I stop XmlSerializer transforming ê to &#234; in an attribute?
I have the following DOM
<row>
<link href="Büro.txt" target="_blank">
my link
</link>
</row>
When I serialize it to a file using ...
6
votes
2answers
441 views
XmlSerializer constructor error with class derived from a base class
the following code specifies a type "MyBase64Binary" which is derived from a base class "TestBase"
using System;
using System.Xml.Serialization;
using System.Collections;
using System.Xml.Schema;
...
6
votes
5answers
513 views
Why is XmlSerializer so hard to use?
I imagine to use XML serialization like this:
class Foo {
public Foo (string name) {
Name1 = name;
Name2 = name;
}
[XmlInclude]
public string Name1 { get; private ...
6
votes
1answer
1k views
C# XmlSerializer BindingFailure
I get a BindingFailure on a line of code using the XmlSerializer:
XmlSerializer s = new XmlSerializer(typeof(CustomXMLSerializeObject));
The assembly with display name ...
5
votes
4answers
169 views
error: Could not load the file or assembly 'ExcelAddIn1.XmlSerializers' or one of it's dependencies. The system cannot find the file specified
I have an Add-in project for excel. It works fine on my computer. But when I install it on a client machine it gives me the error message i mentioned.
I have Published it using project-> ...
5
votes
1answer
300 views
C# Serialize object to element with attributes and children
I wish to define classes that will produce the following xml using System.Xml.Serialization.XmlSerializer. I am struggling to get the items list, with attributes that does not contain a child ...
5
votes
2answers
252 views
xml serialization and encoding
i want the xml encoding to be:
<?xml version="1.0" encoding="windows-1252"?>
To generate encoding like encoding="windows-1252" I wrote this code.
var myns = OS.xmlns;
using (var stringWriter ...
5
votes
2answers
766 views
“The type or namespace name 'XmlSerializer' could not be found” error when System.Xml.dll is referenced
I've already wasted a few hours on this one:
XmlSerializer serializer;
YES, the using is there, the reference is there, I made the entire solution in VS2010 using .NET 4.0 so it's not any of those ...
5
votes
3answers
279 views
How can I “include” one XML file into another XML file?
I have a XML schema like:
<?xml version="1.0" encoding="utf-8"?>
<xs:schema id="MySchema"
targetNamespace="http://tempuri.org/MySchema.xsd"
elementFormDefault="qualified"
...
5
votes
5answers
3k views
XmlSerializer List Item Element Name
HI
Hope someone can help me on this.
Say, I have an object of class
[XmlRoot("Persons")]
PersonList : List<Human>
, when serialize this object to xml, by defualt it will produce something ...
4
votes
1answer
58 views
XmlSerializer and factory-created elements
I am trying to serialize/deserialize objects that have factory-created members. For example, lets say there are a member of type Foo, which is instantiated using FooFactory.CreateFoo(int bar).
My ...
4
votes
2answers
127 views
Deserialize random/unknown types with XmlSerializer
I am using XmlSerializer to communicate with a service. This is not a regular SOAP service, it has its own XML object types. For example, I may ask for a <Capabilities> object, but it may return ...
4
votes
2answers
96 views
In JavaScript, how can serializer part of the DOM to XHTML?
I would like to serialize part of the DOM to XHTML (valid XML). Let's assume I have just one element inside <body>, and that this is the element I want to serialize:
<div>
<hr>
...
4
votes
1answer
206 views
System.InvalidOperationException : XmlSerializer attribute System.Xml.Serialization.XmlChoiceIdentifierAttribute is not valid in Item
I have been trying to connect to some web services using WCF but I keep getting an error when I try to call the function I need.
This is the error I'm getting:
System.InvalidOperationException : ...
4
votes
1answer
140 views
.NET XmlSerializer bug when two classes have properties with the same name
Have your flaming torches ready people! Someone on the Internet is suggesting there is a bug in the .NET framework! :-)
Consider this contrived model:
public class Barn
{
public Horse Horse { ...
4
votes
5answers
290 views
How can I override the serialized name of each list item in a List<SomeStruct>() in c#?
I have a struct more or less like this:
[Serializable]
[XmlRoot("Customer")]
public struct TCustomer
{
string CustomerNo;
string Name;
}
I sometimes serialize this this struct to XML as a ...
4
votes
1answer
99 views
What XML serialization method should I use for a public API?
I'm writing a program that builds up a tree structure made up of classes that inherit from an abstract Node class. There are a number of different type of nodes built into my program. However, I also ...
4
votes
2answers
339 views
Ignoring specified encoding when deserializing XML
I am trying to read some XML received from an external interface over a socket.
The problem is that the encoding is specified wrong in the XML-header (it says iso-8859-1, but it is utf-16BE). It is ...
4
votes
3answers
1k views
Performance: BinaryFormatter vs. XmlSerializer
I read very often that the BinaryFormatter has better performance then XmlSerializer.
Out of curiosity, I wrote a test-app.
a wtf moment... why is Xml so much faster than Bin (especially the ...
4
votes
3answers
163 views
How do I stop and empty tag in XML serializer?
I have an object like this,
public class UserObj
{
public string First {get; set;}
public string Last {get; set;}
public addr Address {get; set;}
}
public class addr
{
public ...
4
votes
1answer
611 views
XmlSerializer.Deserialize on a List<> item
I've tried all the solutions I could find on SO and elsewhere, but can't seem to figure out why this is not working.
Straightforward deserialization of an XML string into an object, the object has ...
3
votes
2answers
61 views
C# how to prevent changes in serialized class after serialization
I have this class:
[Serializable]
public sealed class Broker
{
public int Id;
public string Name;
public string Hosts;
public string DefaultValidatorsNameSpace;
public string ...
3
votes
2answers
55 views
How to make a class deserialize as a different name
for instance something like:
<apple />
will serialize just fine to a class called "apple". however, if I want to call that class "Dragon" it will not serialize (which makes sense). I want to ...
3
votes
1answer
44 views
XmlSerializer and unknown elements
I'm using the XmlSerializer to parse XML documents. Instead using the reflection features, I preferred the use of IXmlSerializable interface.
As I can understand, by implementing this interface block ...
3
votes
1answer
78 views
c# xml serialization custom elementName
I am trying to serialize an class object into xml that looks like this:
<Colors>
<Blue>
<R>0,000</R>
<G>0,000</G>
<B>1,000</B>
...
3
votes
1answer
52 views
Order fields when serializing - c#
I am xml serializing an object and I cannot seem to change the order in which the fields are serialized.
I.e.
public class foo{
string a {get;set;}
string b {get;set;}
}
Comes out as (pseudocode)
...
3
votes
3answers
164 views
XmlSerializer throws an exception on deserialization
I stumbled upon a problem with the .NET XmlSerializer.
Whenever I try to deserialize some of my projects classes I get an FileNotFound-Exception with the following message:
Could not load file or ...
3
votes
1answer
213 views
How to programatically generate a serialization assembly or cs file like XmlSerializer would when using XmlAttributeOverrides?
I want to generate a serialization assembly or .cs file to serialize my types using XmlAttributeOverrides, and then reference this assembly/.cs file in my project directly rather than use ...
3
votes
1answer
480 views
Extension method to serialize generic objects as a SOAP formatted stream
I'm having a hard time trying to figure out a generic extension method that would serialize a given object as SOAP formatted. The actual implementation looks somewhat like this:
Foobar.cs
...
3
votes
1answer
104 views
XML serialization in .net
I'm trying to serialize an object to meet another systems requirements.
It need to look like this:
<custom-attribute name="Colour" dt:dt="string">blue</custom-attribute>
but instead ...
3
votes
2answers
280 views
Why doesn't XmlSerializer serialize my array?
I'm new to the XmlSerializer. I've written a small class to hold entries from a database:
[Serializable]
public struct Entry
{
public string artkey, lid, request, status, requestdate;
}
Simple ...
3
votes
6answers
137 views
c# XML serialization
I'd like to serialize something like this, where there is a header and a body.
The first part "galleryData" is the header
The 2nd part is "imageData" - repeated for each image in gallery
...
3
votes
1answer
289 views
Troubles wtih comments in XmlSerialzier
I try to load a XML file with this code:
XmlSerializer xmlSerializer = new XmlSerializer(typeof(MyObject));
StreamReader reader = new StreamReader(fileName);
object myobject = ...
3
votes
7answers
263 views
How to serialize the class which contains dictionary?
I have the following class:
[Serializable]
public class Person
{
public string FirstName { get; set; }
public string LastName { get; set; }
public Dictionary<string, string> ...
3
votes
2answers
658 views
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> Records
{
get
{
...
3
votes
1answer
331 views
XmlSerializer throws InvalidOperationException when having a namespace prefix in the attribute
I try to read an XML file that contains the following element:
<ho:CODED-TYPE ho:BASE-DATA-TYPE="A_UINT16" CATEGORY="STANDARD-LENGTH-TYPE" ENCODING="UNSIGNED">
My class to describe this node ...
3
votes
2answers
692 views
WCF Data Contract / Serialization
I created a simple WCF application which expose one operation. This operation takes a composite data type as parameter.
I have not decorated this composite data type with [DataContract] attribute. ...
3
votes
2answers
7k views
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 the correct pom.xml
<build>
<plugins>
<plugin>
...
3
votes
2answers
797 views
C# System.Xml.Serialization Self-nested elements
I am trying to deserialize
<graph>
<node>
<node>
<node></node>
</node>
</node>
<node>
<node>
<node></node>
...
3
votes
2answers
374 views
How does DataContractSerializer write to private fields?
I understand how XMLSerializer could work by using reflection to figure out what public read/write fields or properties it should be using to serialize or de-serialize XML. Yet XMLSerializer requires ...