Set IncludeExceptionDetailInFaults to true to enable exception information to flow to clients for debugging purposes. This property requires a binding that supports either request-response or duplex messaging.
In all managed applications, processing errors are represented by Exception objects. In SOAP-based applications such as WCF applications, methods that implement service operations communicate error information using SOAP fault messages. Because WCF applications execute under both types of error systems, any managed exception information that needs to be sent to the client must be converted from exceptions into SOAP faults. For more information, see Specifying and Handling Faults in Contracts and Services.
During development, you may want your service to also send other exceptions back to the client to assist you in debugging. This is a development-only feature and should not be employed in deployed services.
To facilitate debugging development, set the IncludeExceptionDetailInFaults to true either in code or using an application configuration file.
When enabled, the service automatically returns safer exception information to the caller. These faults appear to the client as FaultException<(Of <(TDetail>)>) objects of type ExceptionDetail.
Important Note: |
|---|
Setting IncludeExceptionDetailInFaultsto true enables clients to obtain information about internal service method exceptions; it is only recommended as a way of temporarily debugging a service application. In addition, the WSDL for a method that returns unhandled managed exceptions in this way does not contain the contract for the FaultException<(Of <(TDetail>)>) of type ExceptionDetail. Clients must expect the possibility of an unknown SOAP fault to obtain the debugging information properly. |
Setting this property to true can also be done using an application configuration file and the <serviceDebug> element, as the following code example shows.
<behaviors>
<serviceBehaviors>
<behavior name="mex">
<serviceMetadata httpGetEnabled="true"/>
</behavior>
</serviceBehaviors>
</behaviors>