2
votes
4answers
1k 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 EFPoc …
0
votes
3answers
49 views
Error using WCF and DataContractSerializer
I have a fairly complex object model that I'm trying to serialize using WCF. I'm running into a problem where I can create a new instance on the server and return it to the client …
1
vote
1answer
27 views
DataContractSerializer with Multiple Namespaces
I am using a DataContractSerializer to serialize an object to XML. The main object is SecurityHolding with the namespace "http://personaltrading.test.com/" and contains a property …
3
votes
4answers
473 views
Formating of XML created by DataContractSerializer
This isn't a big deal for me, but 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 conte …
0
votes
2answers
68 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
<ArrayOfBrokera …
0
votes
1answer
59 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]
…
0
votes
0answers
17 views
DataContractSerializer sensitive to order of XML??
I have the following serialized XML:
DataDescriptor
<d5p1:TimePastToInitializeData >
<d5p1:Hours>2</d5p1:Hours>
<d5p1 …
0
votes
1answer
110 views
DataContractSerializer C# Can serialize, cannot deserialize, why?
Hi,
I have application created using WCF and C#, it's architecture requires to add KnownTypes through App.config. I have services going like this:
Client -> CentralServer -> DataSe …
1
vote
2answers
30 views
Analysing an XML serialized object graph to find out what takes up most space
We have a some objects that are exposed by WCF services (using wsHttpBinding) and serialized into XML. Here is an extract of one of them:
[DataContract]
public class Person
{
…
0
votes
1answer
34 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 …
0
votes
1answer
58 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 applicatio …
1
vote
2answers
109 views
Can you get conditional control over serialization with DataContractSerializer?
I'm converting some of my classes to use DataContractSerialization so that I can include Linq Entities in the output. A sort of theoretical question popped into my head while I wa …
2
votes
2answers
68 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 interf …
0
votes
1answer
62 views
DataContractSerializer, EmitDefaultValue and empty tags
I'm working on getting some objects serialized through an mvc site and returning things via xml, json, etc and I'm looking for the best way to not send the empty elements.
In a pe …
0
votes
1answer
49 views
Silverlight serialisation/deserialisation problem
I'm looking for a way to persist Silverlight objects to a user's PC, then re-hydrate them so the user can finish editing them.
Serialising with DataContractSerializer and persisti …
