.NET Framework class, Serializing and deserializing an instance of a type into an XML stream or document using a supplied data contract.
0
votes
0answers
17 views
Data Contract Single Value Structure
I have a structure somewhat like an enum, except it has a bunch of methods:
public struct ComponentIdentifier : IComparable
{
private long identifier;
...
}
I want this to serialize such ...
0
votes
1answer
36 views
WPF and Json Deserializer with multiple items
I'm trying to deserialize a give json string that has multiple device names and Ip addresses. The code that I am trying to work out is below.
var rawData = "[{\"Name\" : \"xbox\", \"IP\" : ...
0
votes
1answer
47 views
What serializer to use?
I was using DataContractSerializer and so far it provided everything I need.
Now I need two more features and I already know that they are not possible with DataContractSerializer.
I need to be able ...
0
votes
0answers
27 views
DataContract serialization not always producing the same set of object references in xml (ie ref and id tags)
Problem:
I am serializing a very large, complex object using DataContract serialization. There are a number of string properties scattered throughout the object structure, many of which are the same ...
1
vote
1answer
32 views
Include Exceptions as DataMember for DataContractSerializer WCF C#
I want to return an array of exceptions in the DataContract from the WCF but it is not working.
[DataContract]
public class ProcessResult
{
[DataMember]
public ...
0
votes
1answer
18 views
Array as Parameter to WCF Service
I want to pass Parameter to WCF service using XML and there is array as one of the parameter
<name>Abc</name>
<cities>
<city>A</city>
<city>B</city>
...
1
vote
2answers
48 views
How can I serialize a tuple containing a basic type and an array of a basic type?
In C# 4.0, I'm trying to serialize and deserialize a Tuple<Guid, int[]> using DataContractSerializer. I've successfully serialized and deserialized type Guid, type int[] and type Tuple<Guid, ...
0
votes
0answers
23 views
De-Serializing Derived objects using XMLIncludeAttribute
I have a requirement to create mappers for record elements. I have a parent class and a bunch of child classes. To the parent class, I added the XmlIncludeAttribute so that whenever a list of the type ...
0
votes
1answer
20 views
WCF - Inbound polymorphic array (a property of a datacontract) not getting properly deserialized
Here is a simplification of the issue.
I have DataContracts of Type Bar, Bar1, and Bar2.
[DataContract]
[Serializable]
[KnownType(typeof(Bar1))]
[KnownType(typeof(Bar2))]
public class Bar
{
...
2
votes
1answer
52 views
Controlling collection serialization
I am working a project where I need to serialize a collection of enums using datacontract serialization.
The expected result should look like the following
<Filters>
...
0
votes
1answer
36 views
Mapping Input fields to new output fields for serialization in c#
I mention C# in my title but this is a generic programming question.
I am just looking to find the best approach to do the following:
I have tableA which contains the following fields
ID : 1
...
0
votes
0answers
26 views
A nice way of getting the DataContractSerialiser up to speed with the classes it will need
I have a bunch of classes that all have an internal class which represents themselves serialised. The owning classes have an inherited method to return an instance of this object when they need to be ...
6
votes
2answers
118 views
Serialization internals in .Net
The architecture in my application is somewhat like this
MainUI------->WCF------->BLL------->DAL
I am using Entity Framework 4.0 and .Net Framework 4.0.
My data access layer returns PoCo ...
0
votes
1answer
54 views
WCF data contract serialization with custom XML attribute
Is there a possibility to get the response as the following since in my experience using data contracts does not allow to add an id inside an element (e.g. ). Is there a way to achieve the following ...
0
votes
0answers
45 views
ASP.NET 4 JSON DataContractJsonSerializer Lower Case
I have a class with several properties all defined in sentence case:
Public Class Provider
Public Property ProviderName As String
End Class
I need to be able to pass instances of this through ...
0
votes
1answer
30 views
IXmlSerializable Namespace of Wrapper Collection
I am doing some custom serialization with the DataContractSerializer through use of the IXmlSerializable interface.
For example:
public class CustomPartOfAContract : IXmlSerializable
{
public ...
1
vote
0answers
30 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
1answer
29 views
Serializing Dictionary via DataContractSerializer in Silverlight
When I try to serialize IDictionary implementation I get NotImplementedException (in .NET is OK)
[DataMember]
public Dictionary<string, string> CustomAttributes;
I can not find information ...
0
votes
0answers
51 views
Serialize Observable Collection
I am trying to serialize an observable collection in C# using data contracts. However, I keep getting an error. I think there is something wrong with the way I use it, but I'm not sure. Here is an ...
0
votes
0answers
46 views
Cant deserialize a list from DataContractSerializer
Im on C# and Im having trouble deserializing a List from an XML file I created used DataContractSerializer wich has a List of entities from Entity Framework in it, the code I used is this:
...
0
votes
0answers
74 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
2answers
85 views
SerializationException serializing newtonsoft jobject with DataContractSerializer
Update - The problem I had here was user error. See my answer below.
I have an class which I want to add to the DataContract of a WCF API which should be "binding agnostic"; i.e., it should be able ...
2
votes
1answer
124 views
C# StackOverFlowException when serializing large object graph with DataContractSerializer
When I try to serialize a huge object graph with DataContractSerializer, I get a StackOverFlowException. Increasing stack size to 10 MB fixes the problem in my current scenario, but of course this is ...
1
vote
1answer
13 views
Serializing Xml from Stream by Setting XmlRoot still throws Exception
I have a class defined like the following:
[XmlRoot(ElementName="state_territories")]
public class Location
{
...
}
The XML that I'm retrieving (pulled from the stream and written to the ...
1
vote
1answer
89 views
ServiceStack.Text: Forcing serialization of a property not decorated with DataMember attribute
I have the following class (simplified).
[DataContract]
public class ServiceResponse
{
public int Sequence { get; set; }
[DataMember]
public ServiceResponseStatus Status { get; set; }
}
...
1
vote
1answer
95 views
wcf Serialization issue with complex types
possibly a duplicate of this question
I'm trying to serialize a set of objects using the standard DataSerializer which is used with wcf.
object structure:
...
0
votes
1answer
59 views
Basics of DataContractAttribute
I'm looking at Microsoft's How to: Create a Basic Data Contract for a Class or Structure, but it leaves me with lots of questions.
They provide this very simplistic example:
using System;
using ...
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 ...
0
votes
2answers
49 views
After deserialisation object references seem to be different
I have a strange problem when serialising custom data objects via DataContracts and restoring them. I have the following class in which the problem occurs:
[DataContract]
public class ProjectManager
...
9
votes
1answer
131 views
Deserialize derived types in WCF service as base types but retain type information
I want my service to be able to accept and return types derived from BaseType without actually knowing what those types will be. I have almost got a solution using a custom DataContractResolver based ...
1
vote
1answer
122 views
Serialize via DataContract to an XML Writer
I am fairly new to .NET, but have been working on this project for sometime now with very little progress and with the amount of classes it's becoming a bit overwhelming.
OBJECTIVE:
Generate data ...
0
votes
0answers
64 views
DataContract serialization fails to serialize Dynamic Proxy
I'm having troubles with WCF service serialization of a dynamic proxy (via Castle.Core) using
Data Contract Serialization.
Everything works fine when regular DataContract object is returned in ...
0
votes
0answers
151 views
JSON Serialization not working in asp.net
Hi iam very new to JSON in Asp.net
First i have tested using [WebMethod] instead of Service, It is working fine,
I have created Ajax-WCF Service and when coding its giving me following error,
My ...
0
votes
1answer
216 views
Partial deserialization of JSON object by using DataContractJsonSerializer in C#
As a response from a Bitbucket REST API I'm getting the following JSON object (simplified version):
{
"repositories": [
{
"scm": "hg",
"has_wiki": false, ...
2
votes
2answers
141 views
Deserializing XML with DataContractSerializer
I have a web service that returns the following data:
<?xml version=""1.0"" encoding=""UTF-8""?>
<RESPONSE>
<KEY>12345</KEY>
<PROPERTY>
...
2
votes
1answer
134 views
MS JSON date serialization and daylight saving time
We have an Ajax web service hosted in an ASP.NET application. This service accepts a DateTime parameter which, for the purposes of this question, should receive the DateTime equivalent of ...
0
votes
1answer
56 views
Would it be useful to create a generic subclass of DataContractSerializer that takes a type parameter?
I have used the XmlSerializer class in the past and found that it seems quite common to create generic versions of the Serilize and Deserialize methods. I didn't have any previous code to hand ...
0
votes
1answer
93 views
In Visual Studio 2010, How do I remove XmlSerializer to use DataContractSerializer?
I created a .NET 4.0 WCF web service and put it up on our internal server.
Now, I am testing this with a simple project that queries the web service.
However, I have found that all of my property ...
0
votes
0answers
96 views
wcf data service deserialize
i have a windows 8 app, that gets information form a wcf data service. when there is internet available the app get the info from webservice and serialize using a datacrontract serializer.
if there ...
2
votes
2answers
70 views
Is it possible to deserialize an encrypted file via DataContractSerializer?
I'm serializing an object via DataContractSerializer without any problems.
But if I now try to serialize this object into a encrypted file I get an exception when deserializing.
Here is my code:
...
0
votes
0answers
66 views
odata to localstorage xml file windows apps
Greeting,
I have a window 8 app that is connectiong to a wcf data service.
I'm getting all the data with no problems. my problem is when i want to save the data by datacontractserializer to the app ...
3
votes
1answer
83 views
Serializing a jagged byte array efficiently
I have a jagged array DataMember that returns byte[800][10000][1] which translates to ~8MB of data. When serialized using DataContractSerializer it turns into a file size 120MB for Binary and 300MB ...
0
votes
1answer
208 views
WCF XmlSerialization somehow mis-interpreted as DataContract Serialization - post VS 2012 Update1
We've a WCF / ASP.NET hosted web service. The data types in the service contract use XSD.exe generated types, and hence are decorated with XmlSerialization attributes. We created a client for it ...
1
vote
0answers
75 views
Howto ignore unknown types with DataContractSerializer
I try to use DataContractSerializer in my application in order to be backward and forward compatible and to support round trip (if possible).
Is it possible to support round trip, or if not, is it ...
0
votes
0answers
50 views
Best method for SOAP Serialization of IMAGE data
I have data stored in a db including a SQL Image column. The query returns the data from that column as a byte array. In my service I am converting that byte array to a memory stream and then an ...
0
votes
0answers
47 views
Suppressing of serialization with DataContract serialization
I have a question regarding serialization of classes. In my scenario (paraphrased below) I have a class (Item) that is already widely used in (de)serialization so I cannot alter or abstract any of it ...
0
votes
1answer
105 views
wcf service returning derived type
I have a following sample wcf service (using webHttpBinding):
[ServiceContract]
public class Animals {
[OperationContract]
[WebGet(UriTemplate = "/{id}")]
...
0
votes
0answers
85 views
SerializationException when deserializing a list containing two objects of different types
I have an error deserializing a list of two diferent object, this is my code:
[KnownType(typeof(objectA))]
[DataContract]
public class objectA
{
[DataMember]
public string PropertyA { get; ...
0
votes
1answer
106 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
0answers
93 views
WCF Contract namespace not being recognized
I am running into an issue when I am trying to specify a custom namespace for my contract objects for my WCF services.
I have the following two contracts:
...

