Tagged Questions
.NET Framework class, Serializing and deserializing an instance of a type into an XML stream or document using a supplied data contract.
21
votes
1answer
2k views
DataContractSerializer doesn't call my constructor?
I just realized something crazy, which I assumed to be completely impossible : when deserializing an object, the DataContractSerializer doesn't call the constructor !
Take this class, for instance :
...
17
votes
5answers
6k views
Formatting of XML created by DataContractSerializer
Is there an easy way to get DataContractSerializer to spit out formatted XML rather then one long string? I don't want to change the tags or content in any way, just have it add line breaks and ...
13
votes
2answers
4k views
Serializing object with no namespaces using DataContractSerializer
How do I remove XML namespaces from an object's XML representation serialized using DataContractSerializer?
That object needs to be serialized to a very simple output XML.
Latest & greatest - ...
11
votes
4answers
215 views
Dynamic Assembly Resolution/Management
Short Version
I have an application which utilizes a plug-in infrastructure. The plug-ins have configurable properties that help them know how to do their job. The plug-ins are grouped into profiles ...
11
votes
5answers
2k views
WCF chokes on properties with no “set ”. Any workaround?
I have some class that I'm passing as a result of a service method, and that class has a get-only property:
[DataContract]
public class ErrorBase
{
[DataMember]
public virtual string Message { ...
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:
...
9
votes
5answers
2k views
Passing an instance of anonymous type over WCF
I have a WCF service method that expects an object and then retrieves its properties using reflection.
On the client side I create an anonymous type object
var obj = new {FirstName="John", ...
8
votes
5answers
3k views
Generic WCF JSON Deserialization
I am a bit new to WCF and will try to clearly describe what I am trying to do.
I have a WCF webservice that uses JSON requests. I am doing fine sending/receiving JSON for the most part. For ...
6
votes
2answers
547 views
WCF Service Reference - Getting “XmlException: Name cannot begin with the '<' character, hexadecimal value 0x3C” on Client Side
I have a smart client application communicating with its server via WCF. Data is created on the client and then sent over the service to be persisted. The server and client use the same domain classes ...
6
votes
2answers
546 views
WCF DataContract
I am very confused about the DataContract attribute in WCF. As per my knowledge it is used for serialization user defined type like classes. I write a one class which is expose at client side.
...
6
votes
1answer
593 views
Does Order Matter in the XML Read by the DataContractSerializer?
I have the following code:
[DataContract(Namespace = "")]
public class User
{
[DataMember]
public string UserName { get; set; }
[DataMember]
public string FullName { get; set; }
}
...
6
votes
4answers
2k views
wcf deserialize enum as string
I'm trying to consume a RESTful web service using WCF. I have no control over the format of the web service, so I have to make a few workarounds here and there. One major problem I cannot seem to get ...
6
votes
1answer
1k views
Ignore field order in DataContractSerializer
When deserializing, DataContractSerializer requires not only that an element name matches, but also that it is in a certain order with respect to the other elements.
My application is such that every ...
6
votes
1answer
3k views
DataContractSerializer, KnownType and inheritance
I've read many articles about known types and i belive my example should work. But it doesn't. I'm getting the following exception on deserialization and don't understand why:
Error in line 1 ...
6
votes
1answer
1k views
Can I configure the DataContractSerializer to not create optional (i.e. Nullable<> and List<>) elements in output XML?
I am using the new .NET 3.0 DataContractSerializer. I have both Nullable<> and List<> objects I am going to serialize. Example:
[DataContract(Namespace = "")]
class Test
{
public static ...
5
votes
4answers
9k views
DataContractSerializer: How to serialize classes/members without DataContract/DataMember attributes
DataContractSerializer requires classes and members to be marked with the DataContract and DataMember attributes. However, in my case the classes are auto-generated with the EFPocoAdapater framework ...
5
votes
3answers
770 views
Why doesn't the XmlSerializer need the type to be marked [Serializable]?
In C#, if I want to serialize an instance with XmlSerializer, the object's type doesn't have to be marked with [Serializable] attribute. However, for other serialization approaches, such as ...
4
votes
3answers
128 views
C# Serializing datacontracts from file
I have a list of Xml messages specifically DataContract messages that i record to a file. And i am trying to deserialize them from file one by one. I do not want to read the whole file into memory at ...
4
votes
1answer
251 views
DataContractSerializer not deserializing references
I am using the DataContractSerializer in .NET 3.5 to deserialize xml. The xml was previously serialized from a group of related entities in an entity model, backed by the entity framework 3.5. There ...
4
votes
4answers
502 views
How to serialize class type but not the namespace to a Json string using DataContractJsonSerializer
I'm trying to serialize a class hierarchy to a Json string using DataContractJsonSerializer, in a WCF service.
the default behaviour for serializing a derived class is to add the following key value ...
4
votes
1answer
264 views
.NET binary XML with pre-shared dictionary
I'm using XmlDictionaryWriter to serialize objects to a database with data contract serializer.
It works great, both size and speed are 2 times better then using text/xml.
However, I'll have to deal ...
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
158 views
How to define which class is taken if an interface property is deserialized within a class?
Just imagine you have the following class
[DataContract]
public class NamedList
{
[DataMember]
public string Name { get; set; }
[DataMember]
public IList<string> Items { get; ...
4
votes
1answer
787 views
WCF Datacontract, some fields do not deserialize
Problem:
I have a WCF service setup to be an endpoint for a call from an external system. The call is sending plain xml. I am testing the system by sending calls into the service from Fiddler using ...
4
votes
2answers
2k views
XSLT Transform XML with Namespaces
I have some XML that I am trying to transform to HTML using XSLT, but I can't get it to work for the life of me. Can someone tell me what I am doing wrong?
XML
<ArrayOfBrokerage ...
4
votes
2answers
2k views
DataContractSerializer does not properly deserialize, values for methods in object are missing
My SomeClass
[Serializable]
[DataContract(Namespace = "")]
public class SomeClass
{
[DataMember]
public string FirstName
{
get; set;
}
[DataMember]
public string ...
4
votes
2answers
1k views
DataContractSerializer XML double the size of XML serializer output - Is this really faster and more scalable?
I'm upgrading a restful service, and am now using the DataContractSerializer to output the response. The previous version just used custom serialization w/ XmlSerializer. Because that version used ...
4
votes
1answer
601 views
DataContractSerializer serialzing the same object more than once per request
I'm in the process of writing a WCF application which will be consumed by a Silverlight application. I have done most of the design work and I am now doing the implementation, which has made me come ...
4
votes
1answer
730 views
DataContractSerializer: Handling objects whose type you don't know and don't have access to
I have a class (call it Container) which is serialized and deserialized using the DataContractSerializer. The class contains a collection of other classes, all of which inherit the same base class ...
3
votes
1answer
58 views
XML DataContractDeserialization HELP needed
I have the following XML:
<?xml version="1.0" ?>
<Responses>
<ResponseList>
<Response type="XXX">
<Foo>YYYY</Foo>
...
3
votes
1answer
76 views
Deserialize Inherited class with DataContractSerializer(typeof(BaseClass))
in my Silverlight 4 application, I Serialize/Deserialize data with DataContractSerializer. I can have two different types of data: The EditorModel and the ConfiguratorModel. Both models inherit from a ...
3
votes
1answer
123 views
Serializing cyclic object references using DataContractSerializer not working
I'm building an XNA game and I'm trying to save game/map etc. state completely, and then be able to load and resume from exactly the same state.
My game logic consists of fairly complex elements (for ...
3
votes
1answer
98 views
Alternative to protobuf-net - size and time efficient serializer to work with objects graph
Google protobuf is great protocol to serialize objects efficient, but it only supports serialization of trees, not graphs (lack of full Object Reference Tracking).
There are few implementation of ...
3
votes
2answers
203 views
Deserialize google geocoding XML using Datacontract in C#
I have the following Google geocoding XML
<GeocodeResponse>
<status>OK</status>
<result>
<type>street_address</type>
<formatted_address>1600 ...
3
votes
1answer
477 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
2answers
143 views
DataContracts and DataMembers
Are there any ways to tell WCF to serialize the whole class when it returns? Do I literally have to add DataMember to every property?
3
votes
2answers
1k views
DataContract model binding to JSON in ASP.NET MVC Action Method Arguments
MVC3 comes out of the box with JsonValueProviderFactory() which is very handy for binding incoming JSON to a model. Unfortunately, I can't figure out how to setup model contracts with names that ...
3
votes
2answers
141 views
How can I deserialize an XML, when I only know the type of an ancestor class?
Let's assume I want to deserialize this (I've removed the namespaces to make things simpler):
<TextField>
<Caption>Location</Caption>
<Name>Location</Name>
...
3
votes
2answers
365 views
DataContract serialization of an inherited type into a base type
I'm trying to serialize class B as an instance of ita base class A. The DataContractSerializer won't allow me to do that.
An example failing the serialization is as follows:
class Program
{
...
3
votes
3answers
565 views
Do WCF and DataContractSerializer serialize CollectionDataContract-decorated collection types differently?
I have a really simple customized collection type that inherits from List<> and uses a CollectionDataContract.
When I use DataContractSerializer.WriteObject to serialize it, it respects the ...
3
votes
1answer
166 views
Control object creation during deserialization
I would like to control object creation of a type that is not usually serializable during deserialization using a NetDataContractSerializer (or any serializer I guess). Using a custom ...
3
votes
2answers
223 views
Slightly non-trivial data structure: is XmlSerializer right for me?
I'm currently using XmlSerializer to, surprisingly enough :), handle de/serialization of my data structures - I find it wonderfully simple to use, but at the cost of flexibility. At the moment, I'm ...
3
votes
3answers
769 views
How to support both DataContractSerializer and XMLSerializer for the same contract on the same host?
In our production environment, our WCF services are serialized with the XMLSerializer. To do so our service interfaces have the [XMLSerializerFormat] attribute. Now, we need to change to ...
3
votes
1answer
262 views
F# DataContractJsonSerializer StackOverflowException
dataElementsList : TypesAndData.DataElement list
is a list of 50,000 records (actually many more but let's start small). I am trying to serialize to a JSON file:
let ser = ...
3
votes
2answers
299 views
Setting the initial value of a property when using DataContractSerializer
If I am serializing and later deserializing a class using DataContractSerializer how can I control the initial values of properties that were not serialized?
Consider the Person class below. Its data ...
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 ...
3
votes
2answers
520 views
Simple data file versioning with DataContractSerializer
Having read Data Contract Versioning we concluded that it's not really the whole story. For example, what happens if you used to have ValueA, and in the new version it's now called ValueB and is of a ...
3
votes
2answers
366 views
WCF: return only necessary properties on json
Because of performance tuning I would like to return only necessary properties. Is there a possibility/workaround? Pseudo / sample code to understand:
[DataContract]
public interface IMemberOverview
...
3
votes
1answer
436 views
Is it a good idea to cache DataContractSerializer instances?
I'm writing a windows service application that needs to serialize and deserialize XML documents repeatedly during its execution. As I need to serialize and deserialize generic types that are not known ...
3
votes
2answers
269 views
DataContractSerializer: why not remove members?
I was reading Microsoft's Best Practices: Data Contract Versioning, and they state:
Do not remove data members in later versions, even if the IsRequired property was left at its default property ...