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 information.

Is it possible to return only:

  • Detail (from the generic TDetail)
  • FaultMessage
  • FaultCode
  • (and possibly) FaultReason
link|improve this question
feedback

1 Answer

up vote 1 down vote accepted

Have you tried rolling your own fault exception using IErrorHandler? Also make sure in your app config file, the IncludeExceptionDetailInFaults attribute is set to false and, this might be helpful for best pratices.

link|improve this answer
1  
IncludeExceptionDetailInFaults is already false. As I understand it, IncludeExceptionDetailInFaults only applies to unhandled exceptions that are not already of type FaultException<TDetail>. I already implemented an IErrorHandler in order to enforce a policy that all operations have a base FaultContract assigned and that automatically logs and rethrows unhandled exceptions in that base fault type.What I don't know is why WCF is passing more information than is defined in the FaultContract. I'm currently experiencing this behavior with wsHttpBinding and a SOAP client. – reifnir Oct 28 '10 at 21:58
2  
It turns out that there wasn't a problem with StackTrace being sent back to the client. (The problem was in front of the keyboard.) I was misinterpreting the response received from WCFStorm in the Response pane. The stacktrace and source were only information about the client and not the server. IncludeExceptionDetailInFaults definitely only applied to exceptions that are not "well known" though. Thanks for the help Terrance. – reifnir Nov 4 '10 at 21:00
Well sorry I couldnt help more... but your welcome. – Terrance Nov 4 '10 at 21:05
Thanks for following up on this @reifnir, you saved me from potentially a lot of wasted time trying to figure out how to prevent this! – Toby J Jan 23 at 21:24
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.