WCF Debugging Tip

Tags: Vista, Silverlight

WCF Debugging from Silverlight client-side:

WebRequest.RegisterPrefix("http://", WebRequestCreator.ClientHttp);

Also, turn on debugging in the WCF service Web.config. You'll get detailed inner exception information. In the <serviceBehaviors> region:
 
<serviceDebug includeExceptionDetailInFaults="true" /> 
 
Add a Comment