Tagged Questions
The netdatacontractserializer tag has no wiki summary.
9
votes
5answers
4k views
Transferring large payloads of data (Serialized Objects) using wsHttp in WCF with message security
I have a case where I need to transfer large amounts of serialized object graphs (via NetDataContractSerializer) using WCF using wsHttp. I'm using message security and would like to continue to do so. ...
4
votes
3answers
5k views
C# DataContract Serialization, how to deserialize to already existing instance
I have a class, which holds a static dictionary of all existing instances, which are defined at compile time.
Basically it looks like this:
[DataContract]
class Foo
{
private static ...
3
votes
1answer
167 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
1answer
264 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
1answer
1k views
NetDataContractSerializer and WCF
I have a scenario where I need to use the NetDataContractSerializer instead of the DataContractSerializer.
Up until now I have been using this method - ...
2
votes
1answer
165 views
NetDataContractSerializer and assembly versions mismatch
I'm using NetDataContractSerializer to exchange data among applications. I would like the ReadObject method throw an exception when assembly versions don't match.
Now, for example, when I serialized ...
1
vote
1answer
99 views
MVC Deserialization Error
Okay. This is my company's customer portal, it's an MVC 2 project. We have a back end SAP system that the portal draws data from. But it does not directly hit SAP, it sends an xml request to a VB app ...
1
vote
2answers
98 views
What are all these null collection entries in my DataContract XML?
Does anybody know why the NetDataContractSerializer might add "nil" entries in a serialized collection?
For example,
<Jobs z:Id="17">
<_items z:Id="18" z:Size="4">
...
0
votes
0answers
23 views
Is list ordering always preserved with NetDataContractSerializer Deserialization
When deserializing xml data that was originally serialized from a List with the NetDataContractSerializer, it appears that the List members are in the reverse order from what they were originally, and ...
0
votes
1answer
98 views
NetDataContractSerializer vs DataContractSerializer
We have an application with objects that we'd like to keep serialized in the database.
Currently we're using NetDataContractSerializer, but recently found out that due to the .Net types information ...
0
votes
1answer
118 views
Problem deserializing with NetDataContractSerializer after refactoring code
I have a situation where I'm serializing some .NET objects using NetDataContractSerializer and storing the XML in a database as a way to remember the state of these objects within an application. ...
0
votes
1answer
99 views
wcf netdatacontractserializer exception serialising idictionary with enumeration as key
I am using the NetDataContractSerialiser with WCF. This is working well with all our types being serialised. However, a service I am calling is generating the following exception
The formatter threw ...
0
votes
1answer
217 views
Dispose or not Dispose.. the writer created from XmlDocument thru navigator?
Do I really need to dispose the writer below?
DataContractSerializer _serialier...
var actual = new XmlDocument();
using (var writer = actual.CreateNavigator().AppendChild())
...
0
votes
0answers
14 views
Internet Media (aka MIME) type for XML created by System.Runtime.Serialization.NetDataContractSerializer
Is there an appropriate Internet Media type for XML created by the NetDataContractSerializer?
I have looked for one, but the closest I have found are the following, used in .RESX files:
...
0
votes
0answers
83 views
Silverlight: Override the behavior of the DataContractSerializer?
Is there a way to override the behavior of the DataContractSerializer? I'm thinking of some sort of interface you can implement just like we do for original serializer.
0
votes
1answer
635 views
AppFabric cache and serializing IQueryable objects
I am experimenting with AppFabric caching and have run into an issue with saving retrieved data in the cache. The root of the problem is that it seems that AppFabric Caching requires the data to have ...
0
votes
1answer
17 views
Is there a way to signalize an object its successful deserialization?
I'm using NetDataContractSerializer. After successfully deserializing an object, is there a way to tell the object to finish its construction? I'm thinking along the lines of:
[DataContract]
class ...
0
votes
1answer
185 views
Selective serialization with NetDataContractSerializer
Serializing this class works fine. However, sometimes I'd like to exclude the field. Is this possible?
[DataContract]
class Foo
{
[DataMember]
Foo _Foo;
}
Setting the field to null ...
0
votes
1answer
465 views
Custom attribute to switch property serialization to NetDataContractSerializer
In .NET 3.5, I would like to create a custom attribute (say [NetDataMember]) that would switch the serialization behavior from DataContractSerializer to NetDataContractSerializer.
Basically, for a ...