The wcf-serialization tag has no wiki summary.
5
votes
2answers
974 views
How to trace WCF serialization issues / exceptions
I occasionally run into the problem that an application exception is thrown during the WCF-serialization (after returning a DataContract from my OperationContract). The only (and less meaningfull) ...
1
vote
1answer
53 views
MVCContrib CustomPagination WCF Serialization
All the parameters for CustomPagination<T> (datasource, page number, page size, and total items count) I retrieve in the WCF Service. It would be awesome if I could instantiate CustomPagination ...
0
votes
0answers
16 views
Remove “d1p1” namespace prefix in DataContractSerializer XML output
I'm using DatacontractSerializer to serialize my domainModel into a xml file.
I'm getting output like below.
<z:anyType xmlns:i="http://www.w3.org/2001/XMLSchema-instance" z:Id="1" ...
0
votes
1answer
94 views
Serializing WCF message using “generic” XML namespace instead of that of data contract
I am writing a tool (MyTool) that works in conjunction with another programmer's tool (HisTool). Both of our tools deal with a WCF service that is not under our control. HisTool generates a mock ...
0
votes
0answers
37 views
passing an object from a WCF service to client
I'm running into a stumbling block on getting my object passed down to my client.
I have added [DataContract] and [KnownType] attributes to my class on the service, and created a property with {get; ...
0
votes
0answers
39 views
Data Serialization for Custom Types in DLL
I Had one custom defined type in the dll file, when i tried to send that object to the wcf service i got this error message.
Type 'Ult.DataCollection.Parameter' with data contract name ...
0
votes
0answers
88 views
How to get control over the response object in case of ServiceContract inheritance in WCF?
Here is the scenario while converting existing WSE3 services to WCF services keeping them compatible with existing WSE3 clients:
I have a ServiceContract
[ServiceContract(Namespace = ...
0
votes
1answer
433 views
WCF with XmlSerializer: namespace collision when returning generic contracts
The background
I'm developing a REST API for a C#.NET web application using WCF. I configured it to use the XmlSerializer rather than its default DataContractSerializer, for greater control over the ...