Tagged Questions
5
votes
1answer
555 views
WCF FaultException Without Sending StackTrace
I have some WCF services with predefined FaultContract attributes. When the FaultException<TDetail> exceptions are thrown, they're sending StackTrace, Source and other potentially unsave ...
2
votes
2answers
282 views
WCF Message.IsFault
I am trying to write a test and need to create a Message object with the IsFault property set to true. However, this property only has a getter. Does anyone know the best way to create a message where ...
1
vote
1answer
235 views
How to create a WCF MessageFault
I see two ways to create a MessageFault:
FaultException fe = new FaultException("error");
MessageFault f = fe.CreateMessageFault();
Or
FaultCode fc = new FaultCode("error");
...
1
vote
1answer
217 views
Should constructors for WCF Services use faults for error handling?
I have a wcf service. The service itself (class that inherits the ServiceContract) has a constructor that sometimes throws exceptions. I want to present the user a message if the service fails. Should ...
1
vote
1answer
615 views
WCF UserName authentication and fault contracts
I have a WCF service configured to use custom UserName validation via the overriden Validate() method of the System.IdentityModel.Selectors.UserNamePasswordValidator class.
All methods of the ...
0
votes
2answers
1k views
WCF Web Service, Java Web Client, MustUnderstand headers not understood?
I'm hosting a WCF Web Service with the following WSDL (a simple service using wsHttpBinding and SSL for transport security):
<wsdl:definitions xmlns:wsdl="http://schemas.xmlsoap.org/wsdl/" ...
0
votes
1answer
51 views
WCF - ClientMessageInspector error reporting
I'm writing a web service at the moment, with a custom behaviour for validating input messages against an XML schema. However, I don't understand how I can report any of those errors back to the ...
0
votes
2answers
1k views
WCF EntLib Validation - change default SOAP Fault Reason text
I'm using the Enterprise Library Validation Application Block for my WCF service. All is fine, and .Net consumers can catch the FaultException<ValidationFault> exception to get a collection of ...