I\'ve built a windows forms client application which makes a WCF call. I\'d like to be able to display the actual request and response, includeing SOAP header, and informat
Try creating a message inspector. On the client side you'd have to implement IClientMessageInspector which will allow you to intercept the message before it is being sent as well as the response which is received prior to passing it further into the application. You'll find more information on MSDN