I’ve built SOAP based client using wsdl file and it works really good. One issue that I am having now is – I need to see original SOAP format messages (requests and responses) that are being sent and received.
It there any way how I can obtain XML requests/responses?
SomeClient Client = new SomeClient();
var response = Client.SomeMethod();
If this is for debugging purposes you could configure tracing: http://msdn.microsoft.com/en-us/library/ty48b824.aspx. Or use Fiddler to capture HTTP traffic.