Tagged Questions
The wcf-faults tag has no wiki summary.
5
votes
2answers
935 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) ...
4
votes
3answers
884 views
Unit testing WCF Faults
What's the best way to unit test expected faults from WCF services?
I am attempting to unit test a WCF service which is (correctly) throwing FaultExceptions for a certain reproducible error. The unit ...
3
votes
4answers
251 views
WCF fault handling
Q How can I get the original exception (occurred on the server) on the client side?
I am working with a self-hosted WCF service and C# 4 and trying to set up proper exception handling.
I have a ...
2
votes
0answers
168 views
Does anybody actually use FaultReasonText to localize faults from WCF services?
There is a localization mechanism in WCF that enables one to localize faults returned to client, via a FaultReasonText object that's a part of the fault.
The way this is done is that you pass all ...
1
vote
1answer
32 views
Why Enterprise Library does not throw FaultException in WCF
I use WCF service hosted on IIS.
Also, I use fault contracts to send errors to the client (FaultException<'T>)
On the client side I catch FaultException<'T> to show some error to user.
If some ...
1
vote
1answer
1k views
WCF Getting “The primary signature must be encrypted.” from FaultContract with ProtectionLevel.None
I have an existing asp.net application that talks to load balanced wcf services (iis hosted, in app pool running under account configured as servicePrincipalName, etc.). The wcf services return a few ...
1
vote
3answers
1k views
WCF ValidationFault
I'm using Validation Application Block - Enterprise Library to validate parameters sent to my WCF Service operations. For instance, a certain operation requires the parameter to either be a 1 or 6, ...
0
votes
1answer
270 views
Exception in a WCF Data service when transfering a byte[]
I'm testing a recent WCF Data Service that I've set.
Most of things are working good, there is only one collection, when I add an object and save change, I got this exception:
...