1
vote
0answers
188 views

WCF Service Interface, when I had a DataSet all my Generic types break

If I have a Service Interface that has this method: [OperationContract] Dictionary<string, string> getDictionary(); and my client is configured to use Generic Dictionaries, everything is all ...
0
votes
1answer
1k views

Binary serialization in WCF NetTCPBinding

I have currently several WCF Services in .Net 3.5 which communicates with clients through a NetTCP Binding. We switched from WsHTTP bindings to NetTCP to reduce data traffic between client and server ...
0
votes
1answer
347 views

Serializing strongly typed dataset with extra column

I have a strongly typed dataset with a strongly typed datatable which i pass to my wcf service. I have added an extra column runtime on this table which is not in the xsd. When i debug on the server ...
2
votes
0answers
463 views

Typed DataSet + WCF. Service is receiving empty DataTable

I am using Typed DataSet and WCF Service. When I call Update method on WCF proxy method by adding new row in DataTable, I get DataTable with one row in Service method. This is working as expected. ...